mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
fix wp gemm bug when permuteN is false (#2935)
* fix wp gemm bug when permuteN is false * code clean --------- Co-authored-by: valarLip <340077269@qq.com>
This commit is contained in:
@@ -72,6 +72,7 @@ struct GemmConfigBase
|
||||
static constexpr ck_tile::index_t Pipeline = CK_TILE_PIPELINE_COMPUTE_V3;
|
||||
static constexpr ck_tile::index_t NumWaveGroups = 1;
|
||||
static constexpr bool Preshuffle = false;
|
||||
static constexpr bool TiledMMAPermuteN = false;
|
||||
};
|
||||
|
||||
template <typename PrecType>
|
||||
|
||||
@@ -109,7 +109,7 @@ struct WeightPreshuffleInvoker
|
||||
GemmConfig::NumWaveGroups,
|
||||
false,
|
||||
1,
|
||||
true>>;
|
||||
GemmConfig::TiledMMAPermuteN>>;
|
||||
using Kernel = ck_tile::GemmKernel<TilePartitioner, GemmPipeline, GemmEpilogue>;
|
||||
auto kargs = Kernel::MakeKernelArgs(args);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user