-
-
Notifications
You must be signed in to change notification settings - Fork 16.6k
[Hardware] DeepGEMM MoE: extend device gates to SM 12.x consumer Blackwell #41062
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -545,8 +545,11 @@ def support_static_graph_mode(cls) -> bool: | |
|
|
||
| @classmethod | ||
| def support_deep_gemm(cls) -> bool: | ||
| """Currently, only Hopper and Blackwell GPUs are supported.""" | ||
| return cls.is_device_capability(90) or cls.is_device_capability_family(100) | ||
| """Currently, Hopper, datacenter Blackwell (SM 100+) and consumer | ||
| Blackwell (SM 12x — RTX 50-series, GB10/DGX Spark) are supported.""" | ||
| return (cls.is_device_capability(90) | ||
| or cls.is_device_capability_family(100) | ||
| or cls.is_device_capability_family(120)) | ||
|
Comment on lines
+550
to
+552
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The logic for checking Blackwell support can be simplified using Important: Please ensure that return cls.is_device_capability(90) or cls.has_device_capability(100) |
||
|
|
||
| @classmethod | ||
| def is_integrated_gpu(cls, device_id: int = 0) -> bool: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This check can be simplified by using
has_device_capability(100), which correctly identifies all Blackwell-family GPUs (including both SM 10.x and 12.x) while excluding Hopper (SM 9.0). This is more idiomatic in vLLM for checking minimum architecture requirements.