Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
c143f416
Unverified
Commit
c143f416
authored
Oct 28, 2025
by
b8zhong
Committed by
GitHub
Oct 28, 2025
Browse files
fix: Llama 4 BF16 load on Blackwell (#12308)
parent
b48354c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
python/sglang/srt/server_args.py
python/sglang/srt/server_args.py
+5
-4
No files found.
python/sglang/srt/server_args.py
View file @
c143f416
...
...
@@ -972,10 +972,11 @@ class ServerArgs:
"Use trtllm_mha as attention backend on sm100 for Llama4 model"
)
if
is_sm100_supported
()
and
self
.
moe_runner_backend
==
"auto"
:
self
.
moe_runner_backend
=
"flashinfer_trtllm"
logger
.
info
(
"Use flashinfer_trtllm as MoE runner backend on SM100 for Llama4"
)
if
self
.
quantization
in
{
"fp8"
,
"modelopt_fp8"
}:
self
.
moe_runner_backend
=
"flashinfer_trtllm"
logger
.
info
(
"Use flashinfer_trtllm as MoE runner backend on SM100 for Llama4"
)
elif
model_arch
in
[
"Gemma2ForCausalLM"
,
"Gemma3ForCausalLM"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment