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
54cf1cae
Unverified
Commit
54cf1cae
authored
Jul 17, 2025
by
Woosuk Kwon
Committed by
GitHub
Jul 17, 2025
Browse files
[Misc] Do not print async output warning for v1 (#21151)
Signed-off-by:
Woosuk Kwon
<
woosuk.kwon@berkeley.edu
>
parent
5780121c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vllm/platforms/cuda.py
vllm/platforms/cuda.py
+1
-1
vllm/platforms/rocm.py
vllm/platforms/rocm.py
+1
-1
No files found.
vllm/platforms/cuda.py
View file @
54cf1cae
...
@@ -99,7 +99,7 @@ class CudaPlatformBase(Platform):
...
@@ -99,7 +99,7 @@ class CudaPlatformBase(Platform):
@
classmethod
@
classmethod
def
is_async_output_supported
(
cls
,
enforce_eager
:
Optional
[
bool
])
->
bool
:
def
is_async_output_supported
(
cls
,
enforce_eager
:
Optional
[
bool
])
->
bool
:
if
enforce_eager
:
if
enforce_eager
and
not
envs
.
VLLM_USE_V1
:
logger
.
warning
(
logger
.
warning
(
"To see benefits of async output processing, enable CUDA "
"To see benefits of async output processing, enable CUDA "
"graph. Since, enforce-eager is enabled, async output "
"graph. Since, enforce-eager is enabled, async output "
...
...
vllm/platforms/rocm.py
View file @
54cf1cae
...
@@ -299,7 +299,7 @@ class RocmPlatform(Platform):
...
@@ -299,7 +299,7 @@ class RocmPlatform(Platform):
@
classmethod
@
classmethod
def
is_async_output_supported
(
cls
,
enforce_eager
:
Optional
[
bool
])
->
bool
:
def
is_async_output_supported
(
cls
,
enforce_eager
:
Optional
[
bool
])
->
bool
:
if
enforce_eager
:
if
enforce_eager
and
not
envs
.
VLLM_USE_V1
:
logger
.
warning
(
logger
.
warning
(
"To see benefits of async output processing, enable CUDA "
"To see benefits of async output processing, enable CUDA "
"graph. Since, enforce-eager is enabled, async output "
"graph. Since, enforce-eager is enabled, async output "
...
...
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