Battery Discharge reader

This commit is contained in:
Serge
2024-01-18 15:08:13 +01:00
parent 6479079212
commit dedb2123f0
3 changed files with 37 additions and 10 deletions

View File

@@ -180,10 +180,10 @@ public class NvidiaGpuControl : IGpuControl
if (core < MinCoreOffset || core > MaxCoreOffset) return 0;
if (memory < MinMemoryOffset || memory > MaxMemoryOffset) return 0;
if (GetClocks(out int currentCore, out int currentMemory))
{
if (Math.Abs(core - currentCore) < 5 && Math.Abs(memory - currentMemory) < 5) return 0;
}
GetClocks(out int currentCore, out int currentMemory);
// Nothing to set
if (Math.Abs(core - currentCore) < 5 && Math.Abs(memory - currentMemory) < 5) return 0;
PhysicalGPU internalGpu = _internalGpu!;