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
f61528d4
Unverified
Commit
f61528d4
authored
Feb 24, 2025
by
Robert Shaw
Committed by
GitHub
Feb 24, 2025
Browse files
[Misc][Chore] Clean Up `AsyncOutputProcessing` Logs (#13780)
parent
1f0ae3ed
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
11 deletions
+0
-11
vllm/config.py
vllm/config.py
+0
-11
No files found.
vllm/config.py
View file @
f61528d4
...
@@ -710,8 +710,6 @@ class ModelConfig:
...
@@ -710,8 +710,6 @@ class ModelConfig:
return
return
if
parallel_config
.
pipeline_parallel_size
>
1
:
if
parallel_config
.
pipeline_parallel_size
>
1
:
logger
.
warning
(
"Async output processing can not be enabled "
"with pipeline parallel"
)
self
.
use_async_output_proc
=
False
self
.
use_async_output_proc
=
False
return
return
...
@@ -719,15 +717,10 @@ class ModelConfig:
...
@@ -719,15 +717,10 @@ class ModelConfig:
# If the feature combo become valid
# If the feature combo become valid
from
vllm.platforms
import
current_platform
from
vllm.platforms
import
current_platform
if
not
current_platform
.
is_async_output_supported
(
self
.
enforce_eager
):
if
not
current_platform
.
is_async_output_supported
(
self
.
enforce_eager
):
logger
.
warning
(
"Async output processing is not supported on the "
"current platform type %s."
,
current_platform
.
device_type
)
self
.
use_async_output_proc
=
False
self
.
use_async_output_proc
=
False
return
return
if
envs
.
VLLM_USE_RAY_SPMD_WORKER
:
if
envs
.
VLLM_USE_RAY_SPMD_WORKER
:
logger
.
warning
(
"Async output processing can not be enabled with ray spmd"
)
self
.
use_async_output_proc
=
False
self
.
use_async_output_proc
=
False
return
return
...
@@ -739,8 +732,6 @@ class ModelConfig:
...
@@ -739,8 +732,6 @@ class ModelConfig:
# Reminder: Please update docs/source/features/compatibility_matrix.md
# Reminder: Please update docs/source/features/compatibility_matrix.md
# If the feature combo become valid
# If the feature combo become valid
if
speculative_config
:
if
speculative_config
:
logger
.
warning
(
"Async output processing is not supported with"
" speculative decoding currently."
)
self
.
use_async_output_proc
=
False
self
.
use_async_output_proc
=
False
def
verify_with_parallel_config
(
def
verify_with_parallel_config
(
...
@@ -768,8 +759,6 @@ class ModelConfig:
...
@@ -768,8 +759,6 @@ class ModelConfig:
"Supported models implement the `SupportsPP` interface."
)
"Supported models implement the `SupportsPP` interface."
)
if
self
.
use_async_output_proc
:
if
self
.
use_async_output_proc
:
logger
.
warning
(
"Async output processor is not supported with "
"pipeline parallelism currently. Disabling it."
)
self
.
use_async_output_proc
=
False
self
.
use_async_output_proc
=
False
def
get_hf_config_sliding_window
(
def
get_hf_config_sliding_window
(
...
...
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