-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added config presets for Automatic Test Mode
- Fixed a bug where Linpack wouldn't start from a directory including a space (fixes #84) - Fixed a bug where resuming after a crash with a "default" coresToTest order would result in an index out of bounds error (fixes #85) - Also it didn't resume on the crashed core - the config file's content is now put into the log file for easier debugging - Fixed a bug where the log file for y-cruncher was actually using the naming scheme for Linpack (under unclear circumstances, but it happened at least once) - Fixed a bug when the update check doesn't return any output at all (fixes #83)
- Loading branch information
Showing
6 changed files
with
312 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This config uses the Automatic Test Mode to automatically adjust the voltage offset values | ||
# on an Intel processor after an error has occurred | ||
# Author: sp00n | ||
|
||
[General] | ||
stressTestProgram = YCRUNCHER | ||
runtimePerCore = auto | ||
coreTestOrder = Default | ||
numberOfThreads = 1 | ||
|
||
|
||
[yCruncher] | ||
mode = 14-BDW ~ Kurumi | ||
tests = BKT, BBP, SFT, SFTv4, SNT, SVT, FFT, FFTv4, N63, VT3 | ||
|
||
|
||
[AutomaticTestMode] | ||
enableAutomaticAdjustment = 1 | ||
startValues = -150 # Set the voltage offset to -150mv | ||
maxValue = 0 # Do not go above a voltage offset of 0mvv | ||
incrementBy = 10 # Adjust the voltage offset by 10mv after an error | ||
|
||
# Try to automatically resume after a crash / hard reboot | ||
# For this to work properly, Auto Logon should be activated | ||
# Otherwise the computer will just idle at the logon screen after a crash | ||
#enableResumeAfterUnexpectedExit = 1 | ||
enableResumeAfterUnexpectedExit = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This config uses the Automatic Test Mode to automatically adjust the Curve Optimizer values | ||
# on Ryzen processors after an error has occurred | ||
# Author: sp00n | ||
|
||
[General] | ||
stressTestProgram = YCRUNCHER | ||
runtimePerCore = auto | ||
coreTestOrder = Default | ||
numberOfThreads = 1 | ||
|
||
|
||
[yCruncher] | ||
mode = 19-ZN2 ~ Kagari | ||
tests = BKT, BBP, SFT, SFTv4, SNT, SVT, FFT, FFTv4, N63, VT3 | ||
|
||
|
||
[AutomaticTestMode] | ||
enableAutomaticAdjustment = 1 | ||
startValues = -25 # Set all cores to Curve Optimizer value of -25 on startup | ||
maxValue = 0 # Do not go above Curve Optimizer value of 0 | ||
incrementBy = 1 # Adjust the Curve Optimizer value by 1 after an error | ||
|
||
# Try to automatically resume after a crash / hard reboot | ||
# For this to work properly, Auto Logon should be activated | ||
# Otherwise the computer will just idle at the logon screen after a crash | ||
#enableResumeAfterUnexpectedExit = 1 | ||
enableResumeAfterUnexpectedExit = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.