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:
lalala-sh
2025-09-27 04:28:54 +08:00
committed by GitHub
parent a44bea45b2
commit ee9769616a
2 changed files with 2 additions and 1 deletions

View File

@@ -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>

View File

@@ -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);