[CK TILE GEMM] set correct value to TiledMMAPermuteN_ (#2839)

- TiledMMAPermuteN_ should be set to true when config if GemmConfigPreshufflePrefill
This commit is contained in:
Cong Ma
2025-09-13 21:54:08 -06:00
committed by GitHub
parent 3a51dbba85
commit e5d73da2da
2 changed files with 22 additions and 5 deletions

View File

@@ -106,7 +106,10 @@ struct WeightPreshuffleInvoker
GemmConfig::K_Warp_Tile,
UniversalGemmProblem::TransposeC,
memory_operation,
GemmConfig::NumWaveGroups>>;
GemmConfig::NumWaveGroups,
false,
1,
true>>;
using Kernel = ck_tile::GemmKernel<TilePartitioner, GemmPipeline, GemmEpilogue>;
auto kargs = Kernel::MakeKernelArgs(args);