-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Add RTX Pro 6000 #61388
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: master
Are you sure you want to change the base?
Add RTX Pro 6000 #61388
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 |
|---|---|---|
|
|
@@ -12,6 +12,7 @@ | |
| NVIDIA_H20 = "H20" | ||
| NVIDIA_B200 = "B200" | ||
| NVIDIA_B300 = "B300" | ||
| NVIDIA_RTX_PRO_6000 = "RTX" | ||
|
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. Accelerator type value "RTX" is ambiguous across GPUsMedium Severity The value
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. I think that's a valid feedback. If other RTX type GPU also generate the same string, we will update function to get the device type to make the string unique. |
||
| INTEL_MAX_1550 = "Intel-GPU-Max-1550" | ||
| INTEL_MAX_1100 = "Intel-GPU-Max-1100" | ||
| INTEL_GAUDI = "Intel-GAUDI" | ||
|
|
||


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.
The value assigned to
NVIDIA_RTX_PRO_6000is currently"RTX". This value is quite generic and could lead to ambiguity if other RTX series GPUs are added in the future (e.g., RTX 3090, RTX 4090). For consistency with other specific NVIDIA GPU constants likeNVIDIA_A100_40G = "A100-40G", it would be more precise to use a value that reflects the full model name, such as"RTX_PRO_6000"or"RTX6000".