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
684f2545
Unverified
Commit
684f2545
authored
Nov 11, 2025
by
Matthew Bonanni
Committed by
GitHub
Nov 11, 2025
Browse files
Prefer FlashAttention MLA as default over FlashMLA (#27363)
Signed-off-by:
Matthew Bonanni
<
mbonanni@redhat.com
>
parent
e5534249
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/platforms/cuda.py
vllm/platforms/cuda.py
+2
-2
No files found.
vllm/platforms/cuda.py
View file @
684f2545
...
...
@@ -55,15 +55,15 @@ def _get_backend_priorities(
return
[
AttentionBackendEnum
.
CUTLASS_MLA
,
AttentionBackendEnum
.
FLASHINFER_MLA
,
AttentionBackendEnum
.
FLASHMLA
,
AttentionBackendEnum
.
FLASH_ATTN_MLA
,
AttentionBackendEnum
.
FLASHMLA
,
AttentionBackendEnum
.
TRITON_MLA
,
AttentionBackendEnum
.
FLASHMLA_SPARSE
,
]
else
:
return
[
AttentionBackendEnum
.
FLASHMLA
,
AttentionBackendEnum
.
FLASH_ATTN_MLA
,
AttentionBackendEnum
.
FLASHMLA
,
AttentionBackendEnum
.
FLASHINFER_MLA
,
AttentionBackendEnum
.
TRITON_MLA
,
AttentionBackendEnum
.
FLASHMLA_SPARSE
,
...
...
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