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
5cc29cfb
Unverified
Commit
5cc29cfb
authored
Feb 25, 2026
by
Zhengxu Chen
Committed by
GitHub
Feb 24, 2026
Browse files
[compile] Improve error message during artifacts load failure. (#35115)
Signed-off-by:
zhxchen17
<
zhxchen17@fb.com
>
parent
8fae54fa
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
vllm/compilation/decorators.py
vllm/compilation/decorators.py
+7
-2
No files found.
vllm/compilation/decorators.py
View file @
5cc29cfb
...
...
@@ -449,10 +449,15 @@ def _support_torch_compile(
self
.
was_aot_compile_fn_loaded_from_disk
=
True
except
Exception
as
e
:
if
os
.
path
.
exists
(
aot_compilation_path
):
if
isinstance
(
e
,
EOFError
):
message
=
"Compile cache file corrupted."
else
:
message
=
str
(
e
)
logger
.
warning
(
"Cannot load aot compilation from path %s, error: %s"
,
"Compiling model again due to a load failure from %s, "
"reason: %s"
,
aot_compilation_path
,
str
(
e
)
,
message
,
)
if
envs
.
VLLM_FORCE_AOT_LOAD
:
raise
e
...
...
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