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
4b3803d1
Unverified
Commit
4b3803d1
authored
Feb 02, 2026
by
Dezhan
Committed by
GitHub
Feb 03, 2026
Browse files
[BugFix] DPMetadata raises assert error for dense model (#32739)
Co-authored-by:
Dezhan Tu
<
dztu@meta.com
>
parent
5019c59d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
vllm/forward_context.py
vllm/forward_context.py
+5
-3
No files found.
vllm/forward_context.py
View file @
4b3803d1
...
@@ -339,8 +339,10 @@ def set_forward_context(
...
@@ -339,8 +339,10 @@ def set_forward_context(
forward_start_time
=
time
.
perf_counter
()
forward_start_time
=
time
.
perf_counter
()
dp_metadata
:
DPMetadata
|
None
=
None
dp_metadata
:
DPMetadata
|
None
=
None
if
vllm_config
.
parallel_config
.
data_parallel_size
>
1
and
(
if
(
attn_metadata
is
not
None
or
num_tokens
is
not
None
vllm_config
.
parallel_config
.
data_parallel_size
>
1
and
vllm_config
.
parallel_config
.
is_moe_model
is
not
False
and
(
attn_metadata
is
not
None
or
num_tokens
is
not
None
)
):
):
# If num_tokens_across_dp hasn't already been initialized, then
# If num_tokens_across_dp hasn't already been initialized, then
# initialize it here. Both DP padding and Microbatching will be
# initialize it here. Both DP padding and Microbatching will be
...
...
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