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
0044c403
Unverified
Commit
0044c403
authored
Dec 07, 2025
by
Lucas Wilkinson
Committed by
GitHub
Dec 07, 2025
Browse files
[BugFix][DeepSeek-V3.2] Fix backend selection logic for Blackwell (#30195)
parent
b952f4d3
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 @
0044c403
...
...
@@ -182,8 +182,8 @@ class CudaPlatformBase(Platform):
if
vllm_config
.
attention_config
.
backend
is
None
:
# Default case
if
cls
.
is_device_capability
(
100
):
# Blackwell => Force CutlassMLA.
if
cls
.
is_device_capability
(
100
)
and
not
use_sparse
:
# Blackwell => Force CutlassMLA
(unless sparse, i.e. DSv3.2)
.
use_cutlass_mla
=
True
# Set the backend in AttentionConfig so it's used during
# backend selection
...
...
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