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
4 changes: 2 additions & 2 deletions vllm/model_executor/layers/fused_moe/layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1899,11 +1899,11 @@ def forward_impl(
)

post_quant_allgather = (
has_flashinfer_trtllm_fused_moe()
and self.quant_method is not None
self.quant_method is not None
and self.dp_size > 1
and self.use_ep
and isinstance(self.quant_method, ModelOptNvFp4FusedMoE)
and has_flashinfer_trtllm_fused_moe()
)
if post_quant_allgather:
hidden_states_to_dispatch, extra_tensors = (
Expand Down