Unverified Commit 1e0806f3 authored by fzyzcjy's avatar fzyzcjy Committed by GitHub
Browse files

Fix DeepGEMM masked cannot be run on groups not being multiple or 4 (#5340)

parent 2c11f9c2
......@@ -972,9 +972,6 @@ class DeepEPMoE(EPMoE):
):
assert self.quant_method is not None
assert self.activation == "silu"
assert (
hidden_states_fp8[0].size(0) % 4 == 0
), f"TMA alignment error: {hidden_states_fp8[0].size(0)}"
# GroupGemm-0
num_groups, m, k = hidden_states_fp8[0].size()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment