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
d419aa5d
Unverified
Commit
d419aa5d
authored
May 06, 2025
by
Michael Goin
Committed by
GitHub
May 06, 2025
Browse files
[V1] Enable TPU V1 backend by default (#17673)
Signed-off-by:
mgoin
<
mgoin64@gmail.com
>
parent
f9bc5a06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
vllm/engine/arg_utils.py
vllm/engine/arg_utils.py
+4
-3
No files found.
vllm/engine/arg_utils.py
View file @
d419aa5d
...
@@ -1354,9 +1354,10 @@ class EngineArgs:
...
@@ -1354,9 +1354,10 @@ class EngineArgs:
if
is_eagle_enabled
and
_warn_or_fallback
(
"Eagle"
):
if
is_eagle_enabled
and
_warn_or_fallback
(
"Eagle"
):
return
False
return
False
# Non-CUDA is supported on V1, but off by default for now.
# Non-[CUDA, TPU] may be supported on V1, but off by default for now.
not_cuda
=
not
current_platform
.
is_cuda
()
v0_hardware
=
not
any
(
if
not_cuda
and
_warn_or_fallback
(
# noqa: SIM103
(
current_platform
.
is_cuda
(),
current_platform
.
is_tpu
()))
if
v0_hardware
and
_warn_or_fallback
(
# noqa: SIM103
current_platform
.
device_name
):
current_platform
.
device_name
):
return
False
return
False
#############################################################
#############################################################
...
...
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