Push default SD min GPU clock higher to avoid conservative boosting behaviour

This commit is contained in:
NGnius (Graham) 2023-02-20 12:09:51 -05:00
parent b5a7cf5914
commit 6d88d6e44f
2 changed files with 4 additions and 4 deletions

View file

@ -116,8 +116,8 @@ impl Default for GpuLimits {
slow_ppt: MinMax { min: 1000000, max: 29_000_000 }, slow_ppt: MinMax { min: 1000000, max: 29_000_000 },
ppt_divisor: 1_000_000, ppt_divisor: 1_000_000,
ppt_step: 1, ppt_step: 1,
clock_min: MinMax { min: 200, max: 1600 }, clock_min: MinMax { min: 400, max: 1600 },
clock_max: MinMax { min: 200, max: 1600 }, clock_max: MinMax { min: 400, max: 1600 },
clock_step: 100, clock_step: 100,
skip_resume_reclock: false, skip_resume_reclock: false,
} }

View file

@ -118,11 +118,11 @@
"ppt_divisor": 1000000, "ppt_divisor": 1000000,
"ppt_step": 1, "ppt_step": 1,
"clock_min": { "clock_min": {
"min": 200, "min": 400,
"max": 1600 "max": 1600
}, },
"clock_max": { "clock_max": {
"min": 200, "min": 400,
"max": 1600 "max": 1600
}, },
"clock_step": 100, "clock_step": 100,