Merge commit 'ee9769616a51ed85edd8860fe5b976cec0cde037' into develop

This commit is contained in:
assistant-librarian[bot]
2025-09-26 21:11:12 +00:00
parent dd38b01ac5
commit 088b4670ae
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);