-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Closed
Labels
Description
In v2.6.0-beta3 added advanced threads mode and extended low power modes.
Advanced threads mode
Now threads field in config can accept object with individual threads configuration:
"threads": [
{"low_power_mode": true, "affine_to_cpu": 0 },
{"low_power_mode": false, "affine_to_cpu": 1 },
{"low_power_mode": 1, "affine_to_cpu": 2 },
{"low_power_mode": 3, "affine_to_cpu": false }
],low_power_mode number between 1 and 5 or boolean, false equal to 1 and true equal to 2. When set to a number N greater than 1, this mode will increase the cache usage and single thread performance by N times.
affine_to_cpu This can be either false (no affinity), or the CPU core number.
Changed huge pages allocation strategy, now each thread allocate huge pages by self.
Backward compatibility
- Miner can work with config from previous versions, where is threads set as number or
null. - Options
avandcpu-affinityhas no effect in advanced mode. - New option
hw-aesworks only in advanced mode. - Threads array compatible with xmr-stak.
New --av modes
--av=5Triple hash mode--av=6Quard hash mode--av=7Penta hash mode--av=8Triple hash mode (Software AES)--av=9Quard hash mode (Software AES)--av=10Penta hash mode (Software AES)
Reactions are currently unavailable