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
4 changes: 2 additions & 2 deletions python/sglang/srt/server_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ def _handle_model_specific_adjustments(self):
f"Overlap scheduler is disabled when using sparse head for embedding model."
)

# TRTLLM AllReduce Fusion supports SM90/100/120, enable it by default
# TRTLLM AllReduce Fusion supports SM90/100, enable it by default
# for models with explicit support (DeepseekV3, GptOss, Glm4Moe, Qwen3Moe)
# TODO: currently, it is only supported in the single node scenario. https://github.com/flashinfer-ai/flashinfer/issues/2006
# TODO: there is currently a bug on H20 device specifically, https://github.com/flashinfer-ai/flashinfer/issues/2204
Expand All @@ -1518,7 +1518,7 @@ def _handle_model_specific_adjustments(self):
"Glm4MoeForCausalLM",
"Qwen3MoeForCausalLM",
]
and (is_sm90_supported() or is_blackwell_supported())
and (is_sm90_supported() or is_sm100_supported())
and not self.enable_dp_attention
and self.nnodes == 1
and not is_h20_device
Expand Down
Loading