mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Increase MAX_THREADS to 64
And document why this is an hard limit. It seems for some (lucky) people 32 threads are not enough. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
4502917665
commit
ce248e7920
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
#include "position.h"
|
||||
#include "search.h"
|
||||
|
||||
const int MAX_THREADS = 32;
|
||||
const int MAX_THREADS = 64; // Because SplitPoint::slavesMask is a uint64_t
|
||||
const int MAX_SPLITPOINTS_PER_THREAD = 8;
|
||||
|
||||
struct Mutex {
|
||||
|
|
Loading…
Add table
Reference in a new issue