mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
* [CK TILE] Add gemm compute pipeline v3 * Enable universal gemm compute pipeline. * Rename example and add compute pipeline. * Introduce ag bg cr pipeline impl base. * Refactor to reuse code. * Cleaning * Formatting. --------- Co-authored-by: Adam Osewski <19374865+aosewski@users.noreply.github.com> Co-authored-by: Adam Osewski <Adam.Osewski@amd.com>
222 lines
8.5 KiB
C++
222 lines
8.5 KiB
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#include <hip/hip_runtime.h>
|
|
|
|
#include <cstring>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <tuple>
|
|
|
|
#include "ck_tile/ops/epilogue.hpp"
|
|
#include "ck_tile/ops/gemm.hpp"
|
|
#include "ck_tile/host.hpp"
|
|
#include "gemm_basic.hpp"
|
|
|
|
#define CK_TILE_PIPELINE_COMPUTE 1
|
|
#define CK_TILE_PIPELINE_MEMORY 2
|
|
|
|
#ifndef CK_TILE_PIPELINE_DEFAULT
|
|
#define CK_TILE_PIPELINE_DEFAULT CK_TILE_PIPELINE_COMPUTE
|
|
#endif
|
|
|
|
template <typename ALayout, typename BLayout, typename CLayout>
|
|
float gemm_calc(const gemm_basic_args& args, const ck_tile::stream_config& s)
|
|
{
|
|
#if(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_MEMORY)
|
|
// Memory friendly for Interwave scheduler
|
|
constexpr ck_tile::index_t M_Tile = 128;
|
|
constexpr ck_tile::index_t N_Tile = 32;
|
|
constexpr ck_tile::index_t K_Tile = 64;
|
|
|
|
constexpr ck_tile::index_t M_Warp = 4;
|
|
constexpr ck_tile::index_t N_Warp = 1;
|
|
constexpr ck_tile::index_t K_Warp = 1;
|
|
|
|
constexpr ck_tile::index_t M_Warp_Tile = 32;
|
|
constexpr ck_tile::index_t N_Warp_Tile = 32;
|
|
constexpr ck_tile::index_t K_Warp_Tile = 8;
|
|
|
|
#elif(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_COMPUTE)
|
|
// Compute friendly for Intrawave scheduler
|
|
constexpr ck_tile::index_t M_Tile = 256;
|
|
constexpr ck_tile::index_t N_Tile = 256;
|
|
constexpr ck_tile::index_t K_Tile = 32;
|
|
|
|
constexpr ck_tile::index_t M_Warp = 2;
|
|
constexpr ck_tile::index_t N_Warp = 2;
|
|
constexpr ck_tile::index_t K_Warp = 1;
|
|
|
|
constexpr ck_tile::index_t M_Warp_Tile = 32;
|
|
constexpr ck_tile::index_t N_Warp_Tile = 32;
|
|
constexpr ck_tile::index_t K_Warp_Tile = 16;
|
|
#endif
|
|
|
|
constexpr bool kPadM = false;
|
|
constexpr bool kPadN = false;
|
|
constexpr bool kPadK = false;
|
|
|
|
constexpr int kBlockPerCu = 1;
|
|
|
|
// ===============================================
|
|
|
|
using GemmShape =
|
|
ck_tile::TileGemmShape<ck_tile::sequence<M_Tile, N_Tile, K_Tile>,
|
|
ck_tile::sequence<M_Warp, N_Warp, K_Warp>,
|
|
ck_tile::sequence<M_Warp_Tile, N_Warp_Tile, K_Warp_Tile>>;
|
|
using TilePartitioner = ck_tile::GemmTilePartitioner<GemmShape>;
|
|
|
|
using GemmEpilogue = ck_tile::Default2DEpilogue<
|
|
ck_tile::Default2DEpilogueProblem<AccDataType, CDataType, kPadM, kPadN>>;
|
|
|
|
using Traits = ck_tile::TileGemmTraits<kPadM, kPadN, kPadK, ALayout, BLayout, CLayout>;
|
|
#if(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_MEMORY)
|
|
using BaseGemmPipeline = ck_tile::BaseGemmPipelineAgBgCrMem<
|
|
#elif(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_COMPUTE)
|
|
using BaseGemmPipeline = ck_tile::BaseGemmPipelineAgBgCrCompV3<
|
|
#endif
|
|
ck_tile::GemmPipelineProblem<ADataType, BDataType, AccDataType, GemmShape, Traits>>;
|
|
|
|
const ck_tile::index_t num_loop = TilePartitioner::GetLoopNum(args.K);
|
|
const bool has_hot_loop = BaseGemmPipeline::BlockHasHotloop(num_loop);
|
|
const ck_tile::TailNumber tail_num = BaseGemmPipeline::GetBlockLoopTailNum(num_loop);
|
|
|
|
float ave_time{0};
|
|
|
|
const auto Run = [&](const auto has_hot_loop_, const auto tail_number_) {
|
|
constexpr bool has_hot_loop_v = has_hot_loop_.value;
|
|
constexpr auto tail_number_v = tail_number_.value;
|
|
|
|
#if(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_MEMORY)
|
|
using GemmPipeline = ck_tile::GemmPipelineAgBgCrMem<
|
|
#elif(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_COMPUTE)
|
|
using GemmPipeline = ck_tile::GemmPipelineAgBgCrCompV3<
|
|
#endif
|
|
ck_tile::UniversalGemmPipelineProblem<ADataType,
|
|
BDataType,
|
|
AccDataType,
|
|
GemmShape,
|
|
Traits,
|
|
#if(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_MEMORY)
|
|
ck_tile::GemmPipelineScheduler::Interwave,
|
|
#elif(CK_TILE_PIPELINE_DEFAULT == CK_TILE_PIPELINE_COMPUTE)
|
|
ck_tile::GemmPipelineScheduler::Intrawave,
|
|
#endif
|
|
has_hot_loop_v,
|
|
tail_number_v>>;
|
|
using Kernel = ck_tile::GemmKernel<TilePartitioner, GemmPipeline, GemmEpilogue>;
|
|
auto kargs = Kernel::MakeKargs(args.p_a,
|
|
args.p_b,
|
|
args.p_c,
|
|
args.M,
|
|
args.N,
|
|
args.K,
|
|
args.stride_A,
|
|
args.stride_B,
|
|
args.stride_C);
|
|
|
|
const dim3 grids = Kernel::GridSize(args.M, args.N, args.kbatch);
|
|
constexpr dim3 blocks = Kernel::BlockSize();
|
|
|
|
if(s.log_level_ > 0)
|
|
{
|
|
std::cout << "Launching kernel with args:"
|
|
<< " grid: {" << grids.x << ", " << grids.y << ", " << grids.z << "}"
|
|
<< ", blocks: {" << blocks.x << ", " << blocks.y << ", " << blocks.z << "}"
|
|
<< std::endl;
|
|
}
|
|
|
|
ave_time = ck_tile::launch_kernel(
|
|
s, ck_tile::make_kernel<blocks.x, kBlockPerCu>(Kernel{}, grids, blocks, 0, kargs));
|
|
return ave_time;
|
|
};
|
|
|
|
if(has_hot_loop)
|
|
{
|
|
// Tail pipeline One to Seven
|
|
if(tail_num == ck_tile::TailNumber::One)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::One>{});
|
|
}
|
|
else if(tail_num == ck_tile::TailNumber::Full)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Full>{});
|
|
}
|
|
|
|
if constexpr(BaseGemmPipeline::PrefetchStages > 2)
|
|
{
|
|
if(tail_num == ck_tile::TailNumber::Two)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Two>{});
|
|
}
|
|
}
|
|
if constexpr(BaseGemmPipeline::PrefetchStages > 3)
|
|
{
|
|
if(tail_num == ck_tile::TailNumber::Three)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Three>{});
|
|
}
|
|
}
|
|
if constexpr(BaseGemmPipeline::PrefetchStages > 4)
|
|
{
|
|
if(tail_num == ck_tile::TailNumber::Four)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Four>{});
|
|
}
|
|
}
|
|
if constexpr(BaseGemmPipeline::PrefetchStages > 5)
|
|
{
|
|
if(tail_num == ck_tile::TailNumber::Five)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Five>{});
|
|
}
|
|
}
|
|
if constexpr(BaseGemmPipeline::PrefetchStages > 6)
|
|
{
|
|
if(tail_num == ck_tile::TailNumber::Six)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Six>{});
|
|
}
|
|
}
|
|
if constexpr(BaseGemmPipeline::PrefetchStages > 7)
|
|
{
|
|
if(tail_num == ck_tile::TailNumber::Seven)
|
|
{
|
|
Run(ck_tile::bool_constant<true>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Seven>{});
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Tail number always Full - #PrefetchStages
|
|
if(tail_num == ck_tile::TailNumber::Full)
|
|
{
|
|
Run(ck_tile::bool_constant<false>{},
|
|
ck_tile::integral_constant<ck_tile::TailNumber, ck_tile::TailNumber::Full>{});
|
|
}
|
|
else
|
|
{
|
|
std::ostringstream err;
|
|
err << "When there's no hot loop, this tail number \"" << tail_num
|
|
<< "\" is not supported! PrefetchStages: " << BaseGemmPipeline::PrefetchStages
|
|
<< "\n File: " << __FILE__ << ":" << __LINE__ << ", in function: " << __func__;
|
|
throw std::runtime_error(err.str());
|
|
}
|
|
}
|
|
|
|
return ave_time;
|
|
}
|
|
|
|
#include "run_gemm_example.inc"
|
|
|
|
int main(int argc, char* argv[]) { return !run_gemm_example(argc, argv); }
|