Skip to content
4 changes: 2 additions & 2 deletions csrc/ck_gemm_moe_2stages_codegen/gemm_moe_ck2stages_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def get_gemm1_kernels_list(
QuantType: str,
ActOP: str,
MulRoutedWeight: bool,
preshuffle: bool,
preshuffle: bool = False,
) -> list:
arch = get_gfx()
if Adtype in bit16_list and Bdtype in bit16_list and Adtype == Adtype:
Expand Down Expand Up @@ -393,7 +393,7 @@ def get_gemm2_kernels_list(
Nswizzle: bool,
QuantType: str,
MulRoutedWeight: bool,
preshuffle: bool,
preshuffle: bool = False,
) -> list:
arch = get_gfx()

Expand Down
Loading