amdgpu-syfs-rs

Crates.io Docs.rs

This library allows you to interact with the Linux Kernel SysFS interface for GPUs (mainly targeted at the AMDGPU driver).

Basic usage:

```rust let sysfspath = PathBuf::fromstr("/sys/class/drm/card0/device").unwrap();

let gpucontroller = GpuController::newfrompath(sysfspath).unwrap();

let gpuusage = gpucontroller.getbusypercent().unwrap();

let totalvram = gpucontroller.gettotalvram().unwrap(); ```