mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 09:47:46 +00:00
Call TT.new_search() earlier.
TT.new_search() was being called by mainThread in Thread::search(). However, mainThread is the last to start searching, and helper threads could reach a measured rootDepth 10 (on 64 cores) before mainThread increments the TT generation. Fixed by moving the call to MaintThread::search() before helper threads start searching. No functional change. Closes #1134
This commit is contained in:
committed by
Joona Kiiski
parent
659990b43f
commit
ebc563059c
+1
-1
@@ -244,6 +244,7 @@ void MainThread::search() {
|
||||
|
||||
Color us = rootPos.side_to_move();
|
||||
Time.init(Limits, us, rootPos.game_ply());
|
||||
TT.new_search();
|
||||
|
||||
int contempt = Options["Contempt"] * PawnValueEg / 100; // From centipawns
|
||||
DrawValue[ us] = VALUE_DRAW - Value(contempt);
|
||||
@@ -347,7 +348,6 @@ void Thread::search() {
|
||||
EasyMove.clear();
|
||||
mainThread->easyMovePlayed = mainThread->failedLow = false;
|
||||
mainThread->bestMoveChanges = 0;
|
||||
TT.new_search();
|
||||
}
|
||||
|
||||
size_t multiPV = Options["MultiPV"];
|
||||
|
||||
Reference in New Issue
Block a user