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
73ff872d
Unverified
Commit
73ff872d
authored
Nov 19, 2025
by
Gleb Kurchanov
Committed by
GitHub
Nov 19, 2025
Browse files
[Bugfix] Fix typo in Qwen3 Next model executor (#28960)
Signed-off-by:
Gleb Kurchanov
<
nepherpitou@gmail.com
>
parent
468a8d72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/model_executor/models/qwen3_next.py
vllm/model_executor/models/qwen3_next.py
+2
-2
No files found.
vllm/model_executor/models/qwen3_next.py
View file @
73ff872d
...
@@ -1154,8 +1154,8 @@ class QwenNextMixtureOfExperts(MixtureOfExperts):
...
@@ -1154,8 +1154,8 @@ class QwenNextMixtureOfExperts(MixtureOfExperts):
example_moe
=
layer
.
mlp
example_moe
=
layer
.
mlp
self
.
moe_layers
.
append
(
layer
.
mlp
.
experts
)
self
.
moe_layers
.
append
(
layer
.
mlp
.
experts
)
if
example_moe
is
None
:
if
example_moe
is
None
:
raise
RuntimeError
(
"No Qwen3Next layer found in the model.layers."
)
raise
RuntimeError
(
"No Qwen3Next layer found in the model.layers."
)
# Set MoE hyperparameters
# Set MoE hyperparameters
self
.
num_moe_layers
=
len
(
self
.
moe_layers
)
self
.
num_moe_layers
=
len
(
self
.
moe_layers
)
...
...
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