mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-17 17:19:12 +00:00
fix warning and use default epilog and one out
This commit is contained in:
@@ -48,14 +48,15 @@ float gemm_calc(const gemm_basic_args& args, const ck_tile::stream_config& s)
|
||||
ck_tile::sequence<M_Warp_Tile, N_Warp_Tile, K_Warp_Tile>>;
|
||||
|
||||
using TilePartitioner = ck_tile::GemmTilePartitioner<CodegenGemmShape>;
|
||||
using GemmEpilogue = ck_tile::CShuffleEpilogueV2<ck_tile::CShuffleEpilogueV2Problem<AccDataType,
|
||||
CDataType,
|
||||
M_Warp * N_Warp * K_Warp * Warp_Size,
|
||||
TilePartitioner::kM,
|
||||
TilePartitioner::kN,
|
||||
kPadM,
|
||||
kPadN>>;
|
||||
|
||||
// using GemmEpilogue = ck_tile::CShuffleEpilogueV2<ck_tile::CShuffleEpilogueV2Problem<AccDataType,
|
||||
// CDataType,
|
||||
// M_Warp * N_Warp * K_Warp * Warp_Size,
|
||||
// 64,
|
||||
// TilePartitioner::kN,
|
||||
// kPadM,
|
||||
// kPadN>>;
|
||||
using GemmEpilogue = ck_tile::Default2DEpilogue<
|
||||
ck_tile::Default2DEpilogueProblem<AccDataType, CDataType, kPadM, kPadN>>;
|
||||
using CodegenGemmTraits =
|
||||
ck_tile::TileGemmTraits<kPadM, kPadN, kPadK, ALayout, BLayout, CLayout>;
|
||||
using CodegenPipelineProblem = ck_tile::
|
||||
|
||||
Reference in New Issue
Block a user