This library allows you to interact with the Linux Kernel SysFS interface for GPUs (mainly targeted at the AMDGPU driver).
Basic usage:
```rust,norun use amdgpusysfs::gpu_handle::GpuHandle;
let sysfs_path = PathBuf::from("/sys/class/drm/card0/device");
let gpuhandle = GpuHandle::newfrompath(sysfspath).unwrap();
let gpuusage = gpuhandle.getbusypercent().unwrap();
let totalvram = gpuhandle.gettotalvram().unwrap(); ```