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
ee3c0c83
Unverified
Commit
ee3c0c83
authored
Apr 12, 2026
by
Nick Hill
Committed by
GitHub
Apr 12, 2026
Browse files
[Pooling] Disable async scheduling by default for pooling models (#39592)
Signed-off-by:
Nick Hill
<
nickhill123@gmail.com
>
parent
cc07dad7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
vllm/config/vllm.py
vllm/config/vllm.py
+10
-0
No files found.
vllm/config/vllm.py
View file @
ee3c0c83
...
@@ -764,6 +764,16 @@ class VllmConfig:
...
@@ -764,6 +764,16 @@ class VllmConfig:
elif
self
.
scheduler_config
.
async_scheduling
is
None
:
elif
self
.
scheduler_config
.
async_scheduling
is
None
:
# Enable async scheduling unless there is an incompatible option.
# Enable async scheduling unless there is an incompatible option.
if
(
if
(
self
.
model_config
is
not
None
and
self
.
model_config
.
runner_type
==
"pooling"
):
# The current implementation of asynchronous scheduling negatively
# impacts performance of pooling models, so we disable by default.
logger
.
debug
(
"Disabling asynchronous scheduling by default for pooling model."
)
self
.
scheduler_config
.
async_scheduling
=
False
elif
(
self
.
speculative_config
is
not
None
self
.
speculative_config
is
not
None
and
self
.
speculative_config
.
method
not
in
get_args
(
EagleModelTypes
)
and
self
.
speculative_config
.
method
not
in
get_args
(
EagleModelTypes
)
and
self
.
speculative_config
.
method
not
in
get_args
(
NgramGPUTypes
)
and
self
.
speculative_config
.
method
not
in
get_args
(
NgramGPUTypes
)
...
...
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