Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Gpc and Mem clock offset methods #61

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions nvml-wrapper/src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1322,6 +1322,116 @@ impl<'nvml> Device<'nvml> {
}
}

/**
Gets the GPU clock frequency offset value.

# Errors

* `Uninitialized`, if the library has not been successfully initialized
* `InvalidArg`, if this `Device` is invalid
* `NotSupported`, if this `Device` does not support this feature
* `GpuLost`, if this `Device` has fallen off the bus or is otherwise inaccessible
* `UnexpectedVariant`, for which you can read the docs for
* `Unknown`, on any unexpected error

# Device Support

Supports all discrete products with unlocked overclocking capabilities.
*/
// Checked against local
// Tested (no-run)
#[doc(alias = "nvmlDeviceGetGpcClkVfOffset")]
pub fn gpc_clock_vf_offset(&self) -> Result<i32, NvmlError> {
let sym = nvml_sym(self.nvml.lib.nvmlDeviceGetGpcClkVfOffset.as_ref())?;

unsafe {
let mut offset: c_int = mem::zeroed();
nvml_try(sym(self.device, &mut offset))?;

Ok(offset)
}
}

/**
Sets the GPU clock frequency offset value.

# Errors

* `Uninitialized`, if the library has not been successfully initialized
* `InvalidArg`, if this `Device` is invalid
* `NotSupported`, if this `Device` does not support this feature
* `GpuLost`, if this `Device` has fallen off the bus or is otherwise inaccessible
* `UnexpectedVariant`, for which you can read the docs for
* `Unknown`, on any unexpected error

# Device Support

Supports all discrete products with unlocked overclocking capabilities.
*/
// Checked against local
// Tested (no-run)
#[doc(alias = "nvmlDeviceGetGpcClkVfOffset")]
pub fn set_gpc_clock_vf_offset(&self, offset: i32) -> Result<(), NvmlError> {
let sym = nvml_sym(self.nvml.lib.nvmlDeviceSetGpcClkVfOffset.as_ref())?;

unsafe { nvml_try(sym(self.device, offset)) }
}

/**
Gets the memory clock frequency offset value.

# Errors

* `Uninitialized`, if the library has not been successfully initialized
* `InvalidArg`, if this `Device` is invalid
* `NotSupported`, if this `Device` does not support this feature
* `GpuLost`, if this `Device` has fallen off the bus or is otherwise inaccessible
* `UnexpectedVariant`, for which you can read the docs for
* `Unknown`, on any unexpected error

# Device Support

Supports all discrete products with unlocked overclocking capabilities.
*/
// Checked against local
// Tested (no-run)
#[doc(alias = "nvmlDeviceGetGpcMemClkVfOffset")]
pub fn mem_clock_vf_offset(&self) -> Result<i32, NvmlError> {
let sym = nvml_sym(self.nvml.lib.nvmlDeviceGetMemClkVfOffset.as_ref())?;

unsafe {
let mut offset: c_int = mem::zeroed();
nvml_try(sym(self.device, &mut offset))?;

Ok(offset)
}
}

/**
Sets the memory clock frequency offset value.

# Errors

* `Uninitialized`, if the library has not been successfully initialized
* `InvalidArg`, if this `Device` is invalid
* `NotSupported`, if this `Device` does not support this feature
* `GpuLost`, if this `Device` has fallen off the bus or is otherwise inaccessible
* `UnexpectedVariant`, for which you can read the docs for
* `Unknown`, on any unexpected error

# Device Support

Supports all discrete products with unlocked overclocking capabilities.
*/
// Checked against local
// Tested (no-run)
#[doc(alias = "nvmlDeviceSetGpcMemClkVfOffset")]
pub fn set_mem_clock_vf_offset(&self, offset: i32) -> Result<(), NvmlError> {
let sym = nvml_sym(self.nvml.lib.nvmlDeviceSetMemClkVfOffset.as_ref())?;

unsafe { nvml_try(sym(self.device, offset)) }
}

/**
Gets the intended operating speed of the specified fan as a percentage of the
maximum fan speed (100%).
Expand Down