Skip to content

Instantly share code, notes, and snippets.

@lazarmarkov
Created January 26, 2019 16:49
Show Gist options
  • Save lazarmarkov/bce71807ed7147fadf692378f80c405e to your computer and use it in GitHub Desktop.
Save lazarmarkov/bce71807ed7147fadf692378f80c405e to your computer and use it in GitHub Desktop.
System.Restart();
BIOS.XMP = true;
CPU.Multiplier = 39;
CPU.CoreVoltage = 1.000;
do {
CPU.Multiplier++;
try {
OS.Boot();
OS.PovRay.Test();
OS.OCCT.Test();
} catch {
CPU.CoreVoltage += 0.025;
continue; // exit do while loop
}
OS.Log(CPU.Multiplier, CPU.CoreVoltage);
} while { CPU.Temperature < 85; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment