Updated default config and docs.
This commit is contained in:
parent
d3b137c817
commit
58c81be1f1
3 changed files with 5 additions and 0 deletions
|
@ -97,3 +97,6 @@ Allow override automatically detected Argon2 implementation, this option added m
|
||||||
|
|
||||||
#### `max-threads-hint` (since v4.2.0)
|
#### `max-threads-hint` (since v4.2.0)
|
||||||
Maximum CPU threads count (in percentage) hint for autoconfig. [CPU_MAX_USAGE.md](CPU_MAX_USAGE.md)
|
Maximum CPU threads count (in percentage) hint for autoconfig. [CPU_MAX_USAGE.md](CPU_MAX_USAGE.md)
|
||||||
|
|
||||||
|
#### `memory-pool` (since v4.3.0)
|
||||||
|
Use continuous, persistent memory block for mining threads, useful for preserve huge pages allocation while algorithm swithing. Default value `false` (feature disabled) or `true` or specific count of 2 MB huge pages.
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"huge-pages": true,
|
"huge-pages": true,
|
||||||
"hw-aes": null,
|
"hw-aes": null,
|
||||||
"priority": null,
|
"priority": null,
|
||||||
|
"memory-pool": false,
|
||||||
"max-threads-hint": 100,
|
"max-threads-hint": 100,
|
||||||
"asm": true,
|
"asm": true,
|
||||||
"argon2-impl": null,
|
"argon2-impl": null,
|
||||||
|
|
|
@ -57,6 +57,7 @@ R"===(
|
||||||
"huge-pages": true,
|
"huge-pages": true,
|
||||||
"hw-aes": null,
|
"hw-aes": null,
|
||||||
"priority": null,
|
"priority": null,
|
||||||
|
"memory-pool": false,
|
||||||
"max-threads-hint": 100,
|
"max-threads-hint": 100,
|
||||||
"asm": true,
|
"asm": true,
|
||||||
"argon2-impl": null,
|
"argon2-impl": null,
|
||||||
|
|
Loading…
Reference in a new issue