Skip to content
Open
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
2 changes: 1 addition & 1 deletion aiter/fused_moe.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def fused_moe_(
q_dtype_a = dtypes.bf16
elif quant_type == QuantType.per_1x32:
if activation == ActivationType.Swiglu and gate_mode == GateMode.SEPARATED:
q_dtype_a = dtypes.bf16 if M < _SWIGLU_MXFP4_BF16_BOUND else dtypes.fp4x2
q_dtype_a = dtypes.fp4x2
elif activation == ActivationType.Swiglu or gate_mode == GateMode.INTERLEAVE:
if get_gfx() != "gfx950" or M < bf16_fp8_bound:
q_dtype_a = dtypes.bf16
Expand Down
Loading