-
Notifications
You must be signed in to change notification settings - Fork 76
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
Can't get attribute for CU_DEVICE_ATTRIBUTE_D3D12_CIG_SUPPORTED #184
Comments
What's your CUDA Python version and driver version?
|
CUDA Python: 12.6.0 |
This happens because the driver support for I am not sure why this is not mentioned in the CUDA Release Notes, but the way I checked this is to search btw what's your use case of CIG? Do you have some graphics rendering pipeline written in Python? |
Use case was iterating all the enums to print out all the device capabilities to the screen. Thanks for the help. |
When I call
cuDeviceGetAttribute
withcuda.CUdevice_attribute.CU_DEVICE_ATTRIBUTE_D3D12_CIG_SUPPORTED
I get the error<CUresult.CUDA_ERROR_INVALID_VALUE: 1>
.Seems like it might be an off-by-one error since it's the last value in the Enum
CUdevice_attribute
?Here is some code to reproduce the problem.
The text was updated successfully, but these errors were encountered: