mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Increase maximum number of threads
a single Xeon Phi can present itself as a single numa node with up to 288 threads (4 threads per hardware core). Tested to work as expected with a Xeon Phi CPU 7230 up to 256 threads. No functional change Closes #1045
This commit is contained in:
parent
afe75571d8
commit
3b7c1a17e4
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ void init(OptionsMap& o) {
|
|||
|
||||
o["Debug Log File"] << Option("", on_logger);
|
||||
o["Contempt"] << Option(0, -100, 100);
|
||||
o["Threads"] << Option(1, 1, 128, on_threads);
|
||||
o["Threads"] << Option(1, 1, 512, on_threads);
|
||||
o["Hash"] << Option(16, 1, MaxHashMB, on_hash_size);
|
||||
o["Clear Hash"] << Option(on_clear_hash);
|
||||
o["Ponder"] << Option(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue