X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.cpp;h=71bf08d2da67e238590a93b8c23182f047d4e4a4;hp=3f901445ce1429f3fd6a00920459a66b78417ce0;hb=bae4679de2db252764610f8dc0dfce125fac461e;hpb=4b59347194f027e597040cb0c35835c688408e18 diff --git a/src/thread.cpp b/src/thread.cpp index 3f901445..71bf08d2 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -144,6 +144,8 @@ void Thread::split(Position& pos, Stack* ss, Value alpha, Value beta, Value* bes // Pick and init the next available split point SplitPoint& sp = splitPoints[splitPointsSize]; + sp.mutex.lock(); // No contention here until we don't increment splitPointsSize + sp.master = this; sp.parentSplitPoint = activeSplitPoint; sp.slavesMask = 0, sp.slavesMask.set(idx); @@ -160,27 +162,28 @@ void Thread::split(Position& pos, Stack* ss, Value alpha, Value beta, Value* bes sp.nodes = 0; sp.cutoff = false; sp.ss = ss; - - // Try to allocate available threads and ask them to start searching setting - // 'searching' flag. This must be done under lock protection to avoid concurrent - // allocation of the same slave by another master. - Threads.mutex.lock(); - sp.mutex.lock(); - sp.allSlavesSearching = true; // Must be set under lock protection + ++splitPointsSize; activeSplitPoint = &sp; activePosition = nullptr; + // Try to allocate available threads Thread* slave; while ( sp.slavesMask.count() < MAX_SLAVES_PER_SPLITPOINT - && (slave = Threads.available_slave(activeSplitPoint)) != nullptr) + && (slave = Threads.available_slave(&sp)) != nullptr) { - sp.slavesMask.set(slave->idx); - slave->activeSplitPoint = activeSplitPoint; - slave->searching = true; // Slave leaves idle_loop() - slave->notify_one(); // Could be sleeping + slave->allocMutex.lock(); + + if (slave->can_join(activeSplitPoint)) + { + activeSplitPoint->slavesMask.set(slave->idx); + slave->activeSplitPoint = activeSplitPoint; + slave->searching = true; + } + + slave->allocMutex.unlock(); } // Everything is set up. The master thread enters the idle loop, from which @@ -188,7 +191,6 @@ void Thread::split(Position& pos, Stack* ss, Value alpha, Value beta, Value* bes // The thread will return from the idle loop when all slaves have finished // their work at this split point. sp.mutex.unlock(); - Threads.mutex.unlock(); Thread::idle_loop(); // Force a call to base class idle_loop() @@ -198,13 +200,13 @@ void Thread::split(Position& pos, Stack* ss, Value alpha, Value beta, Value* bes assert(!searching); assert(!activePosition); + searching = true; + // We have returned from the idle loop, which means that all threads are - // finished. Note that setting 'searching' and decreasing splitPointsSize must - // be done under lock protection to avoid a race with Thread::available_to(). - Threads.mutex.lock(); + // finished. Note that decreasing splitPointsSize must be done under lock + // protection to avoid a race with Thread::can_join(). sp.mutex.lock(); - searching = true; --splitPointsSize; activeSplitPoint = sp.parentSplitPoint; activePosition = &pos; @@ -213,7 +215,6 @@ void Thread::split(Position& pos, Stack* ss, Value alpha, Value beta, Value* bes *bestValue = sp.bestValue; sp.mutex.unlock(); - Threads.mutex.unlock(); } @@ -372,5 +373,7 @@ void ThreadPool::start_thinking(const Position& pos, const LimitsType& limits, RootMoves.push_back(RootMove(m)); main()->thinking = true; - main()->notify_one(); // Starts main thread + + for (Thread* th : *this) + th->notify_one(); }