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
e2d8c27f
Unverified
Commit
e2d8c27f
authored
Sep 10, 2025
by
Nick Hill
Committed by
GitHub
Sep 10, 2025
Browse files
[BugFix] Fix pipeline parallel (#24621)
Signed-off-by:
Nick Hill
<
nhill@redhat.com
>
parent
29799dda
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
vllm/executor/uniproc_executor.py
vllm/executor/uniproc_executor.py
+4
-0
vllm/v1/worker/gpu_model_runner.py
vllm/v1/worker/gpu_model_runner.py
+0
-1
vllm/v1/worker/kv_connector_model_runner_mixin.py
vllm/v1/worker/kv_connector_model_runner_mixin.py
+2
-1
No files found.
vllm/executor/uniproc_executor.py
View file @
e2d8c27f
...
...
@@ -71,6 +71,10 @@ class UniProcExecutor(ExecutorBase):
self
.
shutdown
()
return
def
shutdown
(
self
)
->
None
:
if
worker
:
=
self
.
driver_worker
:
worker
.
shutdown
()
UniProcExecutorAsync
=
UniProcExecutor
...
...
vllm/v1/worker/gpu_model_runner.py
View file @
e2d8c27f
...
...
@@ -2070,7 +2070,6 @@ class GPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
sampler_output
=
self
.
_sample
(
logits
,
spec_decode_metadata
)
with
record_function_or_nullcontext
(
"Bookkeep"
):
assert
isinstance
(
hidden_states
,
torch
.
Tensor
)
(
num_nans_in_logits
,
logprobs_lists
,
...
...
vllm/v1/worker/kv_connector_model_runner_mixin.py
View file @
e2d8c27f
...
...
@@ -45,7 +45,8 @@ class KVConnectorModelRunnerMixin:
@
staticmethod
def
ensure_kv_transfer_shutdown
()
->
None
:
if
has_kv_transfer_group
():
# has_kv_transfer_group can be None during interpreter shutdown.
if
has_kv_transfer_group
and
has_kv_transfer_group
():
ensure_kv_transfer_shutdown
()
@
staticmethod
...
...
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