[Feat][NVFP4] Enable NVFP4 MoE for Qwen series models (eg. Qwen3-Next) #13761 (#13761)

Co-authored-by: Kaixi Hou <kaixih@nvidia.com>
This commit is contained in:
Sam
2025-11-27 08:53:45 +08:00
committed by GitHub
parent 231df4b0d4
commit 91e8dc371a
4 changed files with 77 additions and 5 deletions

View File

@@ -1118,7 +1118,16 @@ class FlashInferFP4MoE(FusedMoE):
hs_fp4, hs_scale_linear = self._quantize_hidden_states_fp4(hidden_states)
router_logits = router_logits.to(torch.float32)
routing_method_type = self.routing_method_type
assert (
routing_method_type is not None
), "flashinfer trtllm moe nvfp4 backend has not been adapted for the current moe layer, you can set routing_method_type (See definition of RoutingMethodType please) for the moe layer explicitly for a quick adaptation."
correction_bias = (
None
if topk_config.correction_bias is None
else topk_config.correction_bias.to(hidden_states.dtype)
)
with use_symmetric_memory(
get_tp_group(), disabled=not is_allocation_symmetric()
@@ -1132,9 +1141,10 @@ class FlashInferFP4MoE(FusedMoE):
symm_output = torch.empty(
num_tokens, hidden_size, dtype=torch.bfloat16, device=hs_fp4.device
)
result = trtllm_fp4_block_scale_moe(
routing_logits=router_logits,
routing_bias=topk_config.correction_bias.to(hidden_states.dtype),
routing_bias=correction_bias,
hidden_states=hs_fp4,
hidden_states_scale=hs_scale_linear.view(torch.float8_e4m3fn).flatten(),
gemm1_weights=self.gemm1_weights_fp4_shuffled.data,
@@ -1162,7 +1172,7 @@ class FlashInferFP4MoE(FusedMoE):
local_num_experts=self.num_local_experts,
routed_scaling_factor=self.moe_runner_config.routed_scaling_factor,
tile_tokens_dim=None,
routing_method_type=RoutingMethodType.DeepSeekV3,
routing_method_type=routing_method_type,
do_finalize=True,
output=symm_output,
)[0]

View File

@@ -1202,7 +1202,7 @@ class ServerArgs:
if self.quantization is None and quant_method is not None:
self.quantization = quant_method
if (
self.quantization == "fp8"
self.quantization in ("fp8", "modelopt_fp4")
and self.moe_a2a_backend == "none"
and self.moe_runner_backend == "auto"
):
@@ -1229,7 +1229,7 @@ class ServerArgs:
if self.quantization is None and quant_method is not None:
self.quantization = quant_method
if (
self.quantization == "fp8"
(self.quantization == "fp8" or self.quantization == "modelopt_fp4")
and self.moe_a2a_backend == "none"
and self.moe_runner_backend == "auto"
):