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
388c05d5
"torchvision/vscode:/vscode.git/clone" did not exist on "fec39cd5d2e09bd5eda2b4b97b426708bd10b26d"
Unverified
Commit
388c05d5
authored
Sep 19, 2025
by
yhyang201
Committed by
GitHub
Sep 18, 2025
Browse files
Fix bias handling in TritonMoeQuantInfo within quantization/mxfp4.py (#10579)
parent
fc809665
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
python/sglang/srt/layers/quantization/mxfp4.py
python/sglang/srt/layers/quantization/mxfp4.py
+2
-2
No files found.
python/sglang/srt/layers/quantization/mxfp4.py
View file @
388c05d5
...
@@ -731,8 +731,8 @@ class Mxfp4MoEMethod(FusedMoEMethodBase):
...
@@ -731,8 +731,8 @@ class Mxfp4MoEMethod(FusedMoEMethodBase):
quant_info
=
TritonMoeQuantInfo
(
quant_info
=
TritonMoeQuantInfo
(
w13_weight
=
layer
.
w13_weight
,
w13_weight
=
layer
.
w13_weight
,
w2_weight
=
layer
.
w2_weight
,
w2_weight
=
layer
.
w2_weight
,
w
13
_weight_bias
=
layer
.
w13_weight_bias
,
b
13
=
getattr
(
layer
,
"
w13_weight_bias
"
,
None
)
,
w2_weight_bias
=
layer
.
w2_weight_bias
,
b2
=
getattr
(
layer
,
"
w2_weight_bias
"
,
None
)
,
)
)
return
self
.
runner
.
run
(
dispatch_output
,
quant_info
)
return
self
.
runner
.
run
(
dispatch_output
,
quant_info
)
...
...
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