You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When working on upgrading CUDA to 11.4, i found a new NVML error type is added NVML_ERROR_FREQ_NOT_SUPPORTED in here. When I was trying to figure out what does that error type mean, i found the comments in code is not right, since it just copy the comment of NVML_ERROR_INSUFFICIENT_RESOURCES .
NVML_ERROR_VGPU_ECC_NOT_SUPPORTED = 22, //!< The requested vgpu operation is not available on target device, becasue ECC is enabled
NVML_ERROR_INSUFFICIENT_RESOURCES = 23, //!< Ran out of critical resources, other than memory
NVML_ERROR_FREQ_NOT_SUPPORTED = 24, //!< Ran out of critical resources, other than memory
NVML_ERROR_UNKNOWN = 999 //!< An internal driver error occurred
The text was updated successfully, but these errors were encountered:
When working on upgrading CUDA to 11.4, i found a new NVML error type is added
NVML_ERROR_FREQ_NOT_SUPPORTED
in here. When I was trying to figure out what does that error type mean, i found the comments in code is not right, since it just copy the comment ofNVML_ERROR_INSUFFICIENT_RESOURCES
.The text was updated successfully, but these errors were encountered: