本帖最后由 相思风雨中 于 2023-6-12 10:02 编辑
# The number of threads to use for testing
# You can only choose between 1 and 2
# If Hyperthreading / SMT is disabled, this will automatically be set to 1
# Currently there's no automatic way to determine which core has thrown an error
# Setting this to 1 causes higher boost clock speed (due to less heat)
# Default: 1
# Maximum: 2
numberOfThreads = 1
# The test modes for Prime95
# SSE: lightest load on the processor, lowest temperatures, highest boost clock
# AVX: medium load on the processor, medium temperatures, medium boost clock
# AVX2: heavy load on the processor, highest temperatures, lowest boost clock
# AVX512: only available for certain CPUs (Ryzen 7000, some Intel Alder Lake, etc)
# CUSTOM: you can define your own settings for Prime. See the "customs" section further below
# Default: SSE
mode = SSE
这是corecycler的config里部分选项的注释。
PBO在低负载&低温时会boost到更高的频率,但如果电压不足会重启。所以重点是低负载。
所以我觉得应该这样跑corecycler:首先BIOS关闭SMT。在关闭SMT情况下测试。
config设置: stressTestProgram = PRIME95,mode = SSE,FFTSize = ALL,runtimePerCore = auto,maxIterations = 10(单核至少跑10轮) |