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
917fdae5
Unverified
Commit
917fdae5
authored
Dec 14, 2025
by
Boyuan Feng
Committed by
GitHub
Dec 15, 2025
Browse files
[Log] Skip piecewise cudagraph warn when using full cudagraph (#30657)
Signed-off-by:
Boyuan Feng
<
boyuan@meta.com
>
parent
e2ed2388
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
vllm/config/compilation.py
vllm/config/compilation.py
+7
-3
No files found.
vllm/config/compilation.py
View file @
917fdae5
...
...
@@ -932,9 +932,13 @@ class CompilationConfig:
self
.
splitting_ops
=
list
(
self
.
_attention_ops
)
added_default_splitting_ops
=
True
elif
len
(
self
.
splitting_ops
)
==
0
:
logger
.
warning_once
(
"Using piecewise compilation with empty splitting_ops"
)
if
(
self
.
cudagraph_mode
==
CUDAGraphMode
.
PIECEWISE
or
self
.
cudagraph_mode
==
CUDAGraphMode
.
FULL_AND_PIECEWISE
):
logger
.
warning_once
(
"Using piecewise compilation with empty splitting_ops"
)
if
self
.
cudagraph_mode
==
CUDAGraphMode
.
PIECEWISE
:
logger
.
warning_once
(
"Piecewise compilation with empty splitting_ops do not"
...
...
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