Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void ck_moe_stage1_gemm(const hipStream_t& stream,
ck::is_same_v<B0DataType, I4> ? 1 : NXDLPerWave;
// Note: some fp8 instances didn't compile with AK1/BK1=16
static constexpr ck::index_t K1 =
(NPerBlock == 64 && sizeof(A0DataType) == 1 && sizeof(B0DataType) == 1) ? 8 : 16;
(PipelineVer == ck::BlockGemmPipelineVersion::v3 && NPerBlock == 64 && sizeof(A0DataType) == 1 && sizeof(B0DataType) == 1) ? 8 : 16;
static constexpr ck::index_t AK1 = K1 / sizeof(A0DataType);
static constexpr ck::index_t BK1 = ck::is_same_v<B0DataType, I4> ? 32 : K1 / sizeof(B0DataType);
static constexpr ck::index_t EVec = 16 / sizeof(EDataType);
Expand Down