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
Calling device.brand() for RTX cards (e.g. RTX A4000) causes the function to fail with:
unexpected enum variant value: 13
In device enums in the docs we see that 13 corresponds with NVML_BRAND_NVIDIA_RTX = 13, however the Brand struct only supports up to NVML_BRAND_TITAN (6).
I see that these bindings are already generated in nvml-wrapper-sys, so the Brand struct should be updated with all device types
The text was updated successfully, but these errors were encountered:
nemosupremo
added a commit
to nemosupremo/nvml-wrapper
that referenced
this issue
Sep 12, 2022
Calling
device.brand()
for RTX cards (e.g. RTX A4000) causes the function to fail with:In device enums in the docs we see that 13 corresponds with
NVML_BRAND_NVIDIA_RTX = 13
, however the Brand struct only supports up toNVML_BRAND_TITAN
(6).I see that these bindings are already generated in
nvml-wrapper-sys
, so the Brand struct should be updated with all device typesThe text was updated successfully, but these errors were encountered: