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
5e00b561
Unverified
Commit
5e00b561
authored
Jan 21, 2026
by
Woosuk Kwon
Committed by
GitHub
Jan 21, 2026
Browse files
[Model Runner V2] Do not error on attention backends (#32820)
Signed-off-by:
Woosuk Kwon
<
woosuk.kwon@berkeley.edu
>
parent
408195ec
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
vllm/v1/worker/gpu/model_runner.py
vllm/v1/worker/gpu/model_runner.py
+0
-10
No files found.
vllm/v1/worker/gpu/model_runner.py
View file @
5e00b561
...
...
@@ -247,16 +247,6 @@ class GPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
self
.
block_tables
,
)
# TODO(woosuk): Support other backends.
supported_backends
=
(
"FLASH_ATTN"
,
"FLASHINFER"
,
"FLASHINFER_MLA"
)
for
backend
in
self
.
attn_backends
.
values
():
backend_name
=
backend
.
get_name
()
if
backend_name
not
in
supported_backends
:
raise
NotImplementedError
(
f
"The
{
backend_name
}
attention backend is not supported yet. "
f
"Supported backends are:
{
supported_backends
}
."
)
self
.
kv_caches
:
list
[
torch
.
Tensor
]
=
[]
init_kv_cache
(
self
.
kv_caches
,
...
...
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