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
532a6cfc
Unverified
Commit
532a6cfc
authored
Sep 25, 2025
by
Russell Bryant
Committed by
GitHub
Sep 25, 2025
Browse files
[ux] Switch a warning to debug about a pytorch fallback (#23750)
Signed-off-by:
Russell Bryant
<
rbryant@redhat.com
>
parent
eb32335e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vllm/v1/sample/ops/topk_topp_sampler.py
vllm/v1/sample/ops/topk_topp_sampler.py
+3
-3
No files found.
vllm/v1/sample/ops/topk_topp_sampler.py
View file @
532a6cfc
...
...
@@ -109,9 +109,9 @@ class TopKTopPSampler(nn.Module):
# CPU-GPU synchronization while `flashinfer_sample` does.
if
(
k
is
None
and
p
is
None
)
or
generators
:
if
generators
:
logger
.
warnin
g_once
(
"FlashInfer 0.2.3+ does not support "
"per-request generators. Falling back to "
"PyTorch-native implementation."
)
logger
.
debu
g_once
(
"FlashInfer 0.2.3+ does not support "
"per-request generators. Falling back to "
"PyTorch-native implementation."
)
return
self
.
forward_native
(
logits
,
generators
,
k
,
p
)
assert
self
.
logprobs_mode
not
in
(
"processed_logits"
,
"processed_logprobs"
...
...
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