Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
e6d32c6d
Commit
e6d32c6d
authored
Jan 06, 2026
by
wanglong3
Browse files
bugfix: Fix the startup crash issue of the service when USE_FUSED_RMS_QUANT=1
parent
03ca39bd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/model_executor/layers/fused_moe/layer.py
vllm/model_executor/layers/fused_moe/layer.py
+2
-2
No files found.
vllm/model_executor/layers/fused_moe/layer.py
View file @
e6d32c6d
...
...
@@ -1832,9 +1832,9 @@ def moe_forward(hidden_states: torch.Tensor, router_logits: torch.Tensor,
self
=
forward_context
.
no_compile_layers
[
layer_name
]
assert
self
.
quant_method
is
not
None
if
envs
.
USE_FUSED_RMS_QUANT
:
return
self
.
forward_impl
(
hidden_states
,
router_logits
,
shared_output
,
i_q
,
i_s
)
return
self
.
forward_impl
(
hidden_states
,
router_logits
,
shared_output
=
shared_output
,
i_q
=
i_q
,
i_s
=
i_s
)
else
:
return
self
.
forward_impl
(
hidden_states
,
router_logits
,
shared_output
)
return
self
.
forward_impl
(
hidden_states
,
router_logits
,
shared_output
=
shared_output
)
...
...
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