-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings_aida64.py
33 lines (25 loc) · 1.03 KB
/
settings_aida64.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from datetime import timedelta
# ##################### MUST SET THESE CORRECTLY ###########################
necessary = {
"process_to_switch": "aida_bench64.dll",
# name of process (could also be "cinebench")
"core_num": 6,
# number of cores
"hyper_threading": True,
# True or False, whether your CPU has 2 threads per core (SMT is AMD word)
}
##############################################################################
# The below are optional
other_options = {
"switch_every": timedelta(minutes=15),
# time between switching threads
# Changed aida64 per-core duration from 5 minutes to 15 minutes due to
# the recommendation here:
# https://www.reddit.com/r/Amd/comments/krjnc4/advanced_guide_curve_optimizer_stability_test_and/
"sync_on_clock_minute": True,
# synchronize with wall time because prime95 only logs time in hh:mm
"starting_core": 1
# 1-indexed (1 is first, total number of cores is last index)
# core number to start testing from
}
cfg = other_options | necessary