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
1e5ad9b7
Unverified
Commit
1e5ad9b7
authored
Feb 27, 2026
by
Jee Jee Li
Committed by
GitHub
Feb 26, 2026
Browse files
[Bugfix] Fix Qwen3NextForCausalLM packed_modules_mapping (#35413)
Signed-off-by:
Jee Jee Li
<
pandaleefree@gmail.com
>
parent
cabdaa76
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
vllm/model_executor/models/qwen3_next.py
vllm/model_executor/models/qwen3_next.py
+4
-0
No files found.
vllm/model_executor/models/qwen3_next.py
View file @
1e5ad9b7
...
...
@@ -412,6 +412,8 @@ class Qwen3NextGatedDeltaNet(nn.Module, MambaBase):
prefix
=
f
"
{
prefix
}
.in_proj_qkvz"
,
)
# ba_proj doesn't support blockwise fp8 quantization.
# # in_proj_ba is defined as MergedColumnParallelLinear for
# compatibility with Qwen3_5.
self
.
in_proj_ba
=
MergedColumnParallelLinear
(
input_size
=
self
.
hidden_size
,
output_sizes
=
[
self
.
num_v_heads
]
*
2
,
...
...
@@ -1326,6 +1328,8 @@ class Qwen3NextForCausalLM(
"v_proj"
,
],
"gate_up_proj"
:
[
"gate_proj"
,
"up_proj"
],
"in_proj_qkvz"
:
[
"in_proj_qkvz"
],
"in_proj_ba"
:
[
"in_proj_ba"
],
}
def
__init__
(
self
,
*
,
vllm_config
:
VllmConfig
,
prefix
:
str
=
""
):
...
...
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