Struct amdgpu_sysfs::gpu_controller::GpuController[][src]

pub struct GpuController {
    pub hw_monitors: Vec<HwMon>,
    // some fields omitted
}
Expand description

A GpuController represents a handle over a single GPU device, as exposed in the Linux SysFS.

Fields

hw_monitors: Vec<HwMon>

A collection of all HwMons bound to this GPU. They are used to expose real-time data.

Implementations

Initializes a new GpuController from a given SysFS device path.

Normally, the path should look akin to /sys/class/drm/card0/device, and it needs to at least contain a uevent file.

Gets the kernel driver used.

Gets total VRAM size in bytes. May not be reported on some devices, such as integrated GPUs.

Gets how much VRAM is currently used, in bytes. May not be reported on some devices, such as integrated GPUs.

Returns the GPU busy percentage.

Returns the GPU VBIOS version. Empty if the GPU doesn’t report one.

Trait Implementations

Formats the value using the given formatter. Read more

Reads the content of a file in the SysFS.

Write to a file in the SysFS.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.