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
933f67ec
Unverified
Commit
933f67ec
authored
Nov 21, 2025
by
Yanan Cao
Committed by
GitHub
Nov 21, 2025
Browse files
[Bugfix]Fix a conditional to not check zero value (#28754)
Signed-off-by:
Yanan Cao
<
gmagogsfm@gmail.com
>
parent
fd65015a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/compilation/caching.py
vllm/compilation/caching.py
+2
-1
No files found.
vllm/compilation/caching.py
View file @
933f67ec
...
@@ -116,7 +116,8 @@ class VllmSerializableFunction(SerializableCallable):
...
@@ -116,7 +116,8 @@ class VllmSerializableFunction(SerializableCallable):
the AOT compiled path.
the AOT compiled path.
"""
"""
compile_inputs
=
[
compile_inputs
=
[
inp
or
example_inputs
[
i
]
for
i
,
inp
in
enumerate
(
fn
.
example_inputs
)
inp
if
inp
is
not
None
else
example_inputs
[
i
]
for
i
,
inp
in
enumerate
(
fn
.
example_inputs
)
]
]
with
tracing
(
TracingContext
(
fake_mode
)):
with
tracing
(
TracingContext
(
fake_mode
)):
fn
.
optimized_call
=
vllm_backend
(
fn
.
optimized_call
=
vllm_backend
(
...
...
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