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
7f51e938
Unverified
Commit
7f51e938
authored
Feb 19, 2026
by
Wei Zhao
Committed by
GitHub
Feb 18, 2026
Browse files
[Bug] Fix DeepSeek V3 weight loading caused by incorrect prefix (#34876)
Signed-off-by:
wzhao18
<
wzhao18.sz@gmail.com
>
parent
4611af16
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/model_executor/models/deepseek_v2.py
vllm/model_executor/models/deepseek_v2.py
+2
-2
No files found.
vllm/model_executor/models/deepseek_v2.py
View file @
7f51e938
...
@@ -716,7 +716,7 @@ class DeepSeekV2FusedQkvAProj(MergedColumnParallelLinear):
...
@@ -716,7 +716,7 @@ class DeepSeekV2FusedQkvAProj(MergedColumnParallelLinear):
def
__init__
(
def
__init__
(
self
,
self
,
input_size
:
int
,
input_size
:
int
,
output_size
:
int
,
output_size
:
list
[
int
]
,
quant_config
:
QuantizationConfig
|
None
=
None
,
quant_config
:
QuantizationConfig
|
None
=
None
,
prefix
:
str
=
""
,
prefix
:
str
=
""
,
):
):
...
@@ -726,7 +726,7 @@ class DeepSeekV2FusedQkvAProj(MergedColumnParallelLinear):
...
@@ -726,7 +726,7 @@ class DeepSeekV2FusedQkvAProj(MergedColumnParallelLinear):
bias
=
False
,
bias
=
False
,
quant_config
=
quant_config
,
quant_config
=
quant_config
,
disable_tp
=
True
,
disable_tp
=
True
,
prefix
=
f
"
{
prefix
}
.kv_a_proj_with_mqa"
,
prefix
=
prefix
,
)
)
# Check if the DeepSeek V3 fused A GEMM kernel can be used.
# Check if the DeepSeek V3 fused A GEMM kernel can be used.
...
...
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