This library allows you to interact with the Linux Kernel SysFS interface for GPUs (mainly targeted at the AMDGPU driver).
Crates.io: WIP
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(); ```