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
f22ff295
Unverified
Commit
f22ff295
authored
Mar 03, 2026
by
Jaewon
Committed by
GitHub
Mar 04, 2026
Browse files
[Bugfix] Fix coord_socket assertion in DPEngineCoreProc for offline DP mode (#35916)
Signed-off-by:
Jaewon Lee
<
jaewon@meta.com
>
parent
d15c3b90
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
vllm/v1/engine/core.py
vllm/v1/engine/core.py
+5
-1
No files found.
vllm/v1/engine/core.py
View file @
f22ff295
...
...
@@ -1571,7 +1571,11 @@ class DPEngineCoreProc(EngineCoreProc):
def
resume_scheduler
(
self
):
super
().
resume_scheduler
()
if
not
self
.
engines_running
and
self
.
scheduler
.
has_unfinished_requests
():
if
(
self
.
has_coordinator
and
not
self
.
engines_running
and
self
.
scheduler
.
has_unfinished_requests
()
):
# Wake up other DP engines.
self
.
output_queue
.
put_nowait
(
(
-
1
,
EngineCoreOutputs
(
start_wave
=
self
.
current_wave
))
...
...
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