mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
More flexible GPU clock limit settings https://github.com/seerge/g-helper/discussions/1555#discussioncomment-7454925
This commit is contained in:
@@ -15,10 +15,10 @@ public class NvidiaGpuControl : IGpuControl
|
|||||||
public static int MaxCoreOffset => AppConfig.Get("max_gpu_core", 250);
|
public static int MaxCoreOffset => AppConfig.Get("max_gpu_core", 250);
|
||||||
public static int MaxMemoryOffset => AppConfig.Get("max_gpu_memory", 250);
|
public static int MaxMemoryOffset => AppConfig.Get("max_gpu_memory", 250);
|
||||||
|
|
||||||
public const int MinCoreOffset = -250;
|
public static int MinCoreOffset = AppConfig.Get("min_gpu_core", -250);
|
||||||
public const int MinMemoryOffset = -250;
|
public static int MinMemoryOffset = AppConfig.Get("min_gpu_memory", -250);
|
||||||
|
|
||||||
public const int MinClockLimit = 1000;
|
public const int MinClockLimit = 400;
|
||||||
public const int MaxClockLimit = 3000;
|
public const int MaxClockLimit = 3000;
|
||||||
|
|
||||||
private static PhysicalGPU? _internalGpu;
|
private static PhysicalGPU? _internalGpu;
|
||||||
|
|||||||
Reference in New Issue
Block a user