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
24b65eff
Unverified
Commit
24b65eff
authored
Dec 18, 2025
by
Chen Zhang
Committed by
GitHub
Dec 18, 2025
Browse files
[BugFix] Spec decode with VLLM_ENABLE_V1_MULTIPROCESSING=0 (#30319)
Signed-off-by:
Chen Zhang
<
zhangch99@outlook.com
>
parent
41b6f920
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/v1/engine/core_client.py
vllm/v1/engine/core_client.py
+2
-1
No files found.
vllm/v1/engine/core_client.py
View file @
24b65eff
...
@@ -268,7 +268,8 @@ class InprocClient(EngineCoreClient):
...
@@ -268,7 +268,8 @@ class InprocClient(EngineCoreClient):
self
.
engine_core
=
EngineCore
(
*
args
,
**
kwargs
)
self
.
engine_core
=
EngineCore
(
*
args
,
**
kwargs
)
def
get_output
(
self
)
->
EngineCoreOutputs
:
def
get_output
(
self
)
->
EngineCoreOutputs
:
outputs
,
_
=
self
.
engine_core
.
step_fn
()
outputs
,
model_executed
=
self
.
engine_core
.
step_fn
()
self
.
engine_core
.
post_step
(
model_executed
=
model_executed
)
return
outputs
and
outputs
.
get
(
0
)
or
EngineCoreOutputs
()
return
outputs
and
outputs
.
get
(
0
)
or
EngineCoreOutputs
()
def
get_supported_tasks
(
self
)
->
tuple
[
SupportedTask
,
...]:
def
get_supported_tasks
(
self
)
->
tuple
[
SupportedTask
,
...]:
...
...
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