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).await.unwrap();
let gpuusage = gpucontroller.getbusypercent().await.unwrap();
let totalvram = gpucontroller.gettotalvram().await.unwrap(); ```