X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=66f74b997342c0db87304f29ab5eb1c58983119c;hp=a5523fc16ee3c00c01f861b679c2f199ffec57d5;hb=36a93d90f76d32e16a5f2acb09b7de2d67225021;hpb=d8f683760c9eb6d2c4714ec83e717dd2143de55c diff --git a/src/thread.cpp b/src/thread.cpp index a5523fc1..66f74b99 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -34,9 +34,9 @@ ThreadPool Threads; // Global object Thread::Thread() { - resetCalls = exit = false; - maxPly = callsCnt = 0; - tbHits = 0; + exit = false; + maxPly = 0; + nodes = tbHits = 0; idx = Threads.size(); // Start from 0 std::unique_lock lk(mutex); @@ -163,7 +163,7 @@ uint64_t ThreadPool::nodes_searched() const { uint64_t nodes = 0; for (Thread* th : *this) - nodes += th->rootPos.nodes_searched(); + nodes += th->nodes.load(std::memory_order_relaxed); return nodes; } @@ -174,7 +174,7 @@ uint64_t ThreadPool::tb_hits() const { uint64_t hits = 0; for (Thread* th : *this) - hits += th->tbHits; + hits += th->tbHits.load(std::memory_order_relaxed); return hits; } @@ -187,7 +187,7 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states, main()->wait_for_search_finished(); - Search::Signals.stopOnPonderhit = Search::Signals.stop = false; + stopOnPonderhit = stop = false; Search::Limits = limits; Search::RootMoves rootMoves; @@ -211,6 +211,7 @@ void ThreadPool::start_thinking(Position& pos, StateListPtr& states, for (Thread* th : Threads) { th->maxPly = 0; + th->nodes = 0; th->tbHits = 0; th->rootDepth = DEPTH_ZERO; th->rootMoves = rootMoves;