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
2ed4722e
Unverified
Commit
2ed4722e
authored
Mar 04, 2026
by
Zhengxu Chen
Committed by
GitHub
Mar 05, 2026
Browse files
[compile] Reduce log spam from compile. (#36044)
Signed-off-by:
zhxchen17
<
zhxchen17@fb.com
>
parent
a3299c3d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
vllm/compilation/decorators.py
vllm/compilation/decorators.py
+5
-2
No files found.
vllm/compilation/decorators.py
View file @
2ed4722e
...
...
@@ -582,7 +582,6 @@ def _support_torch_compile(
self
.
aot_compiled_fn
and
self
.
_aot_compilation_path
and
self
.
_aot_cache_dir
)
logger
.
info
(
"saving AOT compiled function to %s"
,
self
.
_aot_compilation_path
)
try
:
os
.
makedirs
(
self
.
_aot_cache_dir
,
exist_ok
=
True
)
# File saving should be atomic, so we will save to a temporary location
...
...
@@ -590,7 +589,11 @@ def _support_torch_compile(
tmp_file
=
f
"
{
self
.
_aot_compilation_path
}
.
{
os
.
getpid
()
}
.tmp"
self
.
aot_compiled_fn
.
save_compiled_function
(
tmp_file
)
os
.
replace
(
tmp_file
,
self
.
_aot_compilation_path
)
logger
.
info
(
"saved AOT compiled function to %s"
,
self
.
_aot_compilation_path
)
logger
.
info_once
(
"saved AOT compiled function to %s"
,
self
.
_aot_compilation_path
,
scope
=
"local"
,
)
except
Exception
as
e
:
logger
.
warning
(
"unable to save AOT compiled function to %s: %s"
,
...
...
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