X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=44aa68835f892a56113f58de9a2a4f1d6ba6d2bd;hp=c9152b229243620bb00b451f85f91e4c7e9b85e6;hb=918c29f83ab8a013d3946916887e1d1d7b9cfb9a;hpb=41641e3b1eea0038ab6984766d2b3bca869be7fa diff --git a/src/thread.h b/src/thread.h index c9152b22..44aa6883 100644 --- a/src/thread.h +++ b/src/thread.h @@ -20,6 +20,7 @@ #ifndef THREAD_H_INCLUDED #define THREAD_H_INCLUDED +#include #include #include "material.h" @@ -28,7 +29,7 @@ #include "position.h" #include "search.h" -const int MAX_THREADS = 64; // Because SplitPoint::slavesMask is a uint64_t +const int MAX_THREADS = 128; const int MAX_SPLITPOINTS_PER_THREAD = 8; struct Mutex { @@ -75,7 +76,7 @@ struct SplitPoint { // Shared data Mutex mutex; - volatile uint64_t slavesMask; + std::bitset slavesMask; volatile uint64_t nodes; volatile Value alpha; volatile Value bestValue; @@ -90,7 +91,7 @@ struct SplitPoint { struct ThreadBase { - ThreadBase() : exit(false) {} + ThreadBase() : handle(NativeHandle()), exit(false) {} virtual ~ThreadBase() {} virtual void idle_loop() = 0; void notify_one(); @@ -166,7 +167,6 @@ struct ThreadPool : public std::vector { bool sleepWhileIdle; Depth minimumSplitDepth; - size_t maxThreadsPerSplitPoint; Mutex mutex; ConditionVariable sleepCondition; TimerThread* timer;