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
71a4a2fb
Unverified
Commit
71a4a2fb
authored
Mar 24, 2026
by
Richard Zou
Committed by
GitHub
Mar 24, 2026
Browse files
[BugFix] Fix order of compile logging (#38012)
Signed-off-by:
Richard Zou
<
zou3519@gmail.com
>
parent
935c46dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
vllm/compilation/decorators.py
vllm/compilation/decorators.py
+4
-2
No files found.
vllm/compilation/decorators.py
View file @
71a4a2fb
...
...
@@ -299,8 +299,10 @@ def _try_load_aot_compiled_fn(
# is populated by _verify_source_unchanged.
with
maybe_use_cudagraph_partition_wrapper
(
model
.
vllm_config
):
loaded_fn
.
_artifacts
.
compiled_fn
.
finalize_loading
(
model
.
vllm_config
)
compilation_counter
.
num_aot_artifacts_loaded
+=
1
logger
.
info
(
"Directly load AOT compilation from path %s"
,
aot_compilation_path
)
compilation_counter
.
num_aot_artifacts_loaded
+=
1
logger
.
info
(
"Directly load AOT compilation from path %s"
,
aot_compilation_path
)
return
loaded_fn
except
Exception
as
e
:
if
os
.
path
.
exists
(
aot_compilation_path
):
...
...
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