We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d9f3b commit 02037ddCopy full SHA for 02037dd
lact-daemon/src/server/gpu_controller/nvidia.rs
@@ -921,11 +921,9 @@ impl GpuController for NvidiaGpuController {
921
.is_some_and(|offset| *offset != 0))
922
{
923
debug!("resetting clock offset for {clock_type:?} pstate {pstate:?}");
924
- device
925
- .set_clock_offset(clock_type, pstate, 0)
926
- .with_context(|| {
927
- format!("Could not reset {clock_type:?} pstate {pstate:?}")
928
- })?;
+ if let Err(err) = device.set_clock_offset(clock_type, pstate, 0) {
+ warn!("could not reset {clock_type:?} pstate {pstate:?}: {err:#}");
+ }
929
}
930
931
if let Some(applied_offsets) =
0 commit comments