nvml-wrapper icon indicating copy to clipboard operation
nvml-wrapper copied to clipboard

Safe Rust wrapper for the NVIDIA Management Library

Results 22 nvml-wrapper issues
Sort by recently updated
recently updated
newest added

Over in #20, it was noted that the use of compile-time lifetimes to represent the lifetime relationships between the various NVML data structures greatly complicates storing those structures alongside each...

enhancement

https://github.com/Cldfire/nvml-wrapper/blob/master/src/device.rs#L2945 https://github.com/Cldfire/nvml-wrapper/blob/master/src/device.rs#L3237 This may or may not be possible to do after https://github.com/brson/error-chain/issues/48 is resolved.

enhancement

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](https://docs.nvidia.com/deploy/nvml-api/group__nvmlDeviceEnumvs.html) we see that...

Hello! I'm one of the users, and found out that this crate does not support `nvmlDeviceGetGraphicsRunningProcesses_v2`. My personal computer runs on debian 11 (and there's managed package called [`nvidia-driver`](https://packages.debian.org/en/bullseye/nvidia-driver)), which...

backwards-compatibility

The slash syntax is deprecated, according to [The Cargo Book](https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields).

I was surprised by the `NotSupported` errors I got when calling `total_energy_consumption` on a Pascal GPU. It turns out that [Nvidia's documentation reads](https://docs.nvidia.com/deploy/nvml-api/group__nvmlDeviceQueries.html) "Supports Volta and newer" instead of "Pascal...

The current implementation of `Device::field_values_for` is too limiting. The caller can only pass in a slice of field IDs to populate `nvmlFieldValue_t::fieldId` while all other struct members are set to...

enhancement

I am just getting started in rust development so I may just need some guidance. I have developed a simple program which just dumps the details of the driver that...

question