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
1bd47d6e
Unverified
Commit
1bd47d6e
authored
Jan 28, 2026
by
Michael Goin
Committed by
GitHub
Jan 28, 2026
Browse files
[Bugfix] Register fp8 cutlass_group_gemm as supported for only SM90+SM100 (#33285)
Signed-off-by:
mgoin
<
mgoin64@gmail.com
>
parent
141cd439
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
vllm/_custom_ops.py
vllm/_custom_ops.py
+2
-0
No files found.
vllm/_custom_ops.py
View file @
1bd47d6e
...
...
@@ -789,6 +789,8 @@ def cutlass_sparse_scaled_mm_supported(cuda_device_capability: int) -> bool:
def
cutlass_group_gemm_supported
(
cuda_device_capability
:
int
)
->
bool
:
if
cuda_device_capability
<
90
or
cuda_device_capability
>=
110
:
return
False
try
:
return
torch
.
ops
.
_C
.
cutlass_group_gemm_supported
(
cuda_device_capability
)
except
AttributeError
:
...
...
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