]> git.sesse.net Git - stockfish/blob - src/thread.cpp
More readable space mask
[stockfish] / src / thread.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2013 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <algorithm> // For std::count
21 #include <cassert>
22
23 #include "movegen.h"
24 #include "search.h"
25 #include "thread.h"
26 #include "ucioption.h"
27
28 using namespace Search;
29
30 ThreadPool Threads; // Global object
31
32 namespace {
33
34  // start_routine() is the C function which is called when a new thread
35  // is launched. It is a wrapper to the virtual function idle_loop().
36
37  extern "C" { long start_routine(ThreadBase* th) { th->idle_loop(); return 0; } }
38
39
40  // Helpers to launch a thread after creation and joining before delete. Must be
41  // outside Thread c'tor and d'tor because object shall be fully initialized
42  // when start_routine (and hence virtual idle_loop) is called and when joining.
43
44  template<typename T> T* new_thread() {
45    T* th = new T();
46    thread_create(th->handle, start_routine, th); // Will go to sleep
47    return th;
48  }
49
50  void delete_thread(ThreadBase* th) {
51    th->exit = true; // Search must be already finished
52    th->notify_one();
53    thread_join(th->handle); // Wait for thread termination
54    delete th;
55  }
56
57 }
58
59
60 // ThreadBase::notify_one() wakes up the thread when there is some work to do
61
62 void ThreadBase::notify_one() {
63
64   mutex.lock();
65   sleepCondition.notify_one();
66   mutex.unlock();
67 }
68
69
70 // ThreadBase::wait_for() set the thread to sleep until condition 'b' turns true
71
72 void ThreadBase::wait_for(volatile const bool& b) {
73
74   mutex.lock();
75   while (!b) sleepCondition.wait(mutex);
76   mutex.unlock();
77 }
78
79
80 // Thread c'tor just inits data but does not launch any thread of execution that
81 // instead will be started only upon c'tor returns.
82
83 Thread::Thread() /* : splitPoints() */ { // Value-initialization bug in MSVC
84
85   searching = false;
86   maxPly = splitPointsSize = 0;
87   activeSplitPoint = NULL;
88   activePosition = NULL;
89   idx = Threads.size();
90 }
91
92
93 // TimerThread::idle_loop() is where the timer thread waits msec milliseconds
94 // and then calls check_time(). If msec is 0 thread sleeps until is woken up.
95 extern void check_time();
96
97 void TimerThread::idle_loop() {
98
99   while (!exit)
100   {
101       mutex.lock();
102
103       if (!exit)
104           sleepCondition.wait_for(mutex, msec ? msec : INT_MAX);
105
106       mutex.unlock();
107
108       if (msec)
109           check_time();
110   }
111 }
112
113
114 // MainThread::idle_loop() is where the main thread is parked waiting to be started
115 // when there is a new search. Main thread will launch all the slave threads.
116
117 void MainThread::idle_loop() {
118
119   while (true)
120   {
121       mutex.lock();
122
123       thinking = false;
124
125       while (!thinking && !exit)
126       {
127           Threads.sleepCondition.notify_one(); // Wake up UI thread if needed
128           sleepCondition.wait(mutex);
129       }
130
131       mutex.unlock();
132
133       if (exit)
134           return;
135
136       searching = true;
137
138       Search::think();
139
140       assert(searching);
141
142       searching = false;
143   }
144 }
145
146
147 // Thread::cutoff_occurred() checks whether a beta cutoff has occurred in the
148 // current active split point, or in some ancestor of the split point.
149
150 bool Thread::cutoff_occurred() const {
151
152   for (SplitPoint* sp = activeSplitPoint; sp; sp = sp->parentSplitPoint)
153       if (sp->cutoff)
154           return true;
155
156   return false;
157 }
158
159
160 // Thread::is_available_to() checks whether the thread is available to help the
161 // thread 'master' at a split point. An obvious requirement is that thread must
162 // be idle. With more than two threads, this is not sufficient: If the thread is
163 // the master of some split point, it is only available as a slave to the slaves
164 // which are busy searching the split point at the top of slaves split point
165 // stack (the "helpful master concept" in YBWC terminology).
166
167 bool Thread::is_available_to(const Thread* master) const {
168
169   if (searching)
170       return false;
171
172   // Make a local copy to be sure doesn't become zero under our feet while
173   // testing next condition and so leading to an out of bound access.
174   int size = splitPointsSize;
175
176   // No split points means that the thread is available as a slave for any
177   // other thread otherwise apply the "helpful master" concept if possible.
178   return !size || (splitPoints[size - 1].slavesMask & (1ULL << master->idx));
179 }
180
181
182 // init() is called at startup to create and launch requested threads, that will
183 // go immediately to sleep due to 'sleepWhileIdle' set to true. We cannot use
184 // a c'tor becuase Threads is a static object and we need a fully initialized
185 // engine at this point due to allocation of Endgames in Thread c'tor.
186
187 void ThreadPool::init() {
188
189   sleepWhileIdle = true;
190   timer = new_thread<TimerThread>();
191   push_back(new_thread<MainThread>());
192   read_uci_options();
193 }
194
195
196 // exit() cleanly terminates the threads before the program exits
197
198 void ThreadPool::exit() {
199
200   delete_thread(timer); // As first because check_time() accesses threads data
201
202   for (iterator it = begin(); it != end(); ++it)
203       delete_thread(*it);
204 }
205
206
207 // read_uci_options() updates internal threads parameters from the corresponding
208 // UCI options and creates/destroys threads to match the requested number. Thread
209 // objects are dynamically allocated to avoid creating in advance all possible
210 // threads, with included pawns and material tables, if only few are used.
211
212 void ThreadPool::read_uci_options() {
213
214   maxThreadsPerSplitPoint = Options["Max Threads per Split Point"];
215   minimumSplitDepth       = Options["Min Split Depth"] * ONE_PLY;
216   size_t requested        = Options["Threads"];
217
218   assert(requested > 0);
219
220   // Value 0 has a special meaning: We determine the optimal minimum split depth
221   // automatically. Anyhow the minimumSplitDepth should never be under 4 plies.
222   if (!minimumSplitDepth)
223       minimumSplitDepth = (requested < 8 ? 4 : 7) * ONE_PLY;
224   else
225       minimumSplitDepth = std::max(4 * ONE_PLY, minimumSplitDepth);
226
227   while (size() < requested)
228       push_back(new_thread<Thread>());
229
230   while (size() > requested)
231   {
232       delete_thread(back());
233       pop_back();
234   }
235 }
236
237
238 // slave_available() tries to find an idle thread which is available as a slave
239 // for the thread 'master'.
240
241 Thread* ThreadPool::available_slave(const Thread* master) const {
242
243   for (const_iterator it = begin(); it != end(); ++it)
244       if ((*it)->is_available_to(master))
245           return *it;
246
247   return NULL;
248 }
249
250
251 // split() does the actual work of distributing the work at a node between
252 // several available threads. If it does not succeed in splitting the node
253 // (because no idle threads are available), the function immediately returns.
254 // If splitting is possible, a SplitPoint object is initialized with all the
255 // data that must be copied to the helper threads and then helper threads are
256 // told that they have been assigned work. This will cause them to instantly
257 // leave their idle loops and call search(). When all threads have returned from
258 // search() then split() returns.
259
260 template <bool Fake>
261 void Thread::split(Position& pos, const Stack* ss, Value alpha, Value beta, Value* bestValue,
262                    Move* bestMove, Depth depth, Move threatMove, int moveCount,
263                    MovePicker* movePicker, int nodeType, bool cutNode) {
264
265   assert(pos.pos_is_ok());
266   assert(*bestValue <= alpha && alpha < beta && beta <= VALUE_INFINITE);
267   assert(*bestValue > -VALUE_INFINITE);
268   assert(depth >= Threads.minimumSplitDepth);
269   assert(searching);
270   assert(splitPointsSize < MAX_SPLITPOINTS_PER_THREAD);
271
272   // Pick the next available split point from the split point stack
273   SplitPoint& sp = splitPoints[splitPointsSize];
274
275   sp.masterThread = this;
276   sp.parentSplitPoint = activeSplitPoint;
277   sp.slavesMask = 1ULL << idx;
278   sp.depth = depth;
279   sp.bestValue = *bestValue;
280   sp.bestMove = *bestMove;
281   sp.threatMove = threatMove;
282   sp.alpha = alpha;
283   sp.beta = beta;
284   sp.nodeType = nodeType;
285   sp.cutNode = cutNode;
286   sp.movePicker = movePicker;
287   sp.moveCount = moveCount;
288   sp.pos = &pos;
289   sp.nodes = 0;
290   sp.cutoff = false;
291   sp.ss = ss;
292
293   // Try to allocate available threads and ask them to start searching setting
294   // 'searching' flag. This must be done under lock protection to avoid concurrent
295   // allocation of the same slave by another master.
296   Threads.mutex.lock();
297   sp.mutex.lock();
298
299   splitPointsSize++;
300   activeSplitPoint = &sp;
301   activePosition = NULL;
302
303   size_t slavesCnt = 1; // This thread is always included
304   Thread* slave;
305
306   while (    (slave = Threads.available_slave(this)) != NULL
307          && ++slavesCnt <= Threads.maxThreadsPerSplitPoint && !Fake)
308   {
309       sp.slavesMask |= 1ULL << slave->idx;
310       slave->activeSplitPoint = &sp;
311       slave->searching = true; // Slave leaves idle_loop()
312       slave->notify_one(); // Could be sleeping
313   }
314
315   // Everything is set up. The master thread enters the idle loop, from which
316   // it will instantly launch a search, because its 'searching' flag is set.
317   // The thread will return from the idle loop when all slaves have finished
318   // their work at this split point.
319   if (slavesCnt > 1 || Fake)
320   {
321       sp.mutex.unlock();
322       Threads.mutex.unlock();
323
324       Thread::idle_loop(); // Force a call to base class idle_loop()
325
326       // In helpful master concept a master can help only a sub-tree of its split
327       // point, and because here is all finished is not possible master is booked.
328       assert(!searching);
329       assert(!activePosition);
330
331       // We have returned from the idle loop, which means that all threads are
332       // finished. Note that setting 'searching' and decreasing splitPointsSize is
333       // done under lock protection to avoid a race with Thread::is_available_to().
334       Threads.mutex.lock();
335       sp.mutex.lock();
336   }
337
338   searching = true;
339   splitPointsSize--;
340   activeSplitPoint = sp.parentSplitPoint;
341   activePosition = &pos;
342   pos.set_nodes_searched(pos.nodes_searched() + sp.nodes);
343   *bestMove = sp.bestMove;
344   *bestValue = sp.bestValue;
345
346   sp.mutex.unlock();
347   Threads.mutex.unlock();
348 }
349
350 // Explicit template instantiations
351 template void Thread::split<false>(Position&, const Stack*, Value, Value, Value*, Move*, Depth, Move, int, MovePicker*, int, bool);
352 template void Thread::split< true>(Position&, const Stack*, Value, Value, Value*, Move*, Depth, Move, int, MovePicker*, int, bool);
353
354
355 // wait_for_think_finished() waits for main thread to go to sleep then returns
356
357 void ThreadPool::wait_for_think_finished() {
358
359   MainThread* t = main();
360   t->mutex.lock();
361   while (t->thinking) sleepCondition.wait(t->mutex);
362   t->mutex.unlock();
363 }
364
365
366 // start_thinking() wakes up the main thread sleeping in MainThread::idle_loop()
367 // so to start a new search, then returns immediately.
368
369 void ThreadPool::start_thinking(const Position& pos, const LimitsType& limits,
370                                 const std::vector<Move>& searchMoves, StateStackPtr& states) {
371   wait_for_think_finished();
372
373   SearchTime = Time::now(); // As early as possible
374
375   Signals.stopOnPonderhit = Signals.firstRootMove = false;
376   Signals.stop = Signals.failedLowAtRoot = false;
377
378   RootMoves.clear();
379   RootPos = pos;
380   Limits = limits;
381   if (states.get()) // If we don't set a new position, preserve current state
382   {
383       SetupStates = states; // Ownership transfer here
384       assert(!states.get());
385   }
386
387   for (MoveList<LEGAL> it(pos); *it; ++it)
388       if (   searchMoves.empty()
389           || std::count(searchMoves.begin(), searchMoves.end(), *it))
390           RootMoves.push_back(RootMove(*it));
391
392   main()->thinking = true;
393   main()->notify_one(); // Starts main thread
394 }