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 the GPU’s PCI vendor and ID. This is the ID of your GPU chip, e.g. AMD Radeon RX 580.

Gets the Card’s PCI vendor and ID. This is the ID of your card model, e.g. Sapphire RX 580 Pulse.

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.

Returns the currently forced performance level.

Forces a given performance level.

Retuns the list of power levels and index of the currently active level for a given kind of power state.

Sets the enabled power levels for a power state kind to a given list of levels. This means that only the given power levels will be allowed.

Can only be used if power_force_performance_level is set to manual.

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.