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
9ab4388c
Unverified
Commit
9ab4388c
authored
Jan 20, 2026
by
Woosuk Kwon
Committed by
GitHub
Jan 20, 2026
Browse files
[Model Runner V2] Support FLASHINFER_MLA backend (#32709)
Signed-off-by:
Woosuk Kwon
<
woosuk.kwon@berkeley.edu
>
parent
04a9e064
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vllm/v1/worker/gpu/attn_utils.py
vllm/v1/worker/gpu/attn_utils.py
+1
-1
vllm/v1/worker/gpu/model_runner.py
vllm/v1/worker/gpu/model_runner.py
+1
-1
No files found.
vllm/v1/worker/gpu/attn_utils.py
View file @
9ab4388c
...
...
@@ -57,7 +57,7 @@ def init_attn_backend(
)
attn_metadata_builders
.
append
(
attn_metadata_builder
)
# type: ignore
if
"FLASHINFER"
in
attn_backend
.
get_name
():
if
attn_backend
.
get_name
()
==
"FLASHINFER"
:
if
flashinfer_workspace
is
None
:
flashinfer_workspace
=
attn_metadata_builder
.
_get_workspace_buffer
()
else
:
...
...
vllm/v1/worker/gpu/model_runner.py
View file @
9ab4388c
...
...
@@ -248,7 +248,7 @@ class GPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
)
# TODO(woosuk): Support other backends.
supported_backends
=
(
"FLASH_ATTN"
,
"FLASHINFER"
)
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
:
...
...
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