Update VangoghGPU.cs

Updated this file with higher max values for a potential fix for overclocking
This commit is contained in:
nightfire37 2023-10-03 22:47:16 -04:00 committed by GitHub
parent 58a3d44d5c
commit f07c6a9c57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -182,7 +182,7 @@ namespace PowerControl.Helpers.AMD
}
const uint MIN_TDP = 3000;
const uint MAX_TDP = 21000;
const uint MAX_TDP = 45000;
public uint SlowTDP
{
@ -206,8 +206,8 @@ namespace PowerControl.Helpers.AMD
get { return getValue(Message.PPSMC_MSG_GetFclkFrequency); }
}
const uint MIN_CPU_CLOCK = 1400;
const uint MAX_CPU_CLOCK = 4000;
const uint MIN_CPU_CLOCK = 600;
const uint MAX_CPU_CLOCK = 4500;
public uint MinCPUClock
{
@ -220,7 +220,7 @@ namespace PowerControl.Helpers.AMD
}
const uint MIN_GFX_CLOCK = 200;
const uint MAX_GFX_CLOCK = 1900;
const uint MAX_GFX_CLOCK = 2500;
public uint HardMinGfxClock
{