]> git.sesse.net Git - stockfish/blob - src/thread.cpp
81a718df8a0ff8e691cc7431736c2fd34378cb0d
[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-2012 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 <cassert>
21 #include <iostream>
22
23 #include "movegen.h"
24 #include "search.h"
25 #include "thread.h"
26 #include "ucioption.h"
27
28 using namespace Search;
29
30 ThreadsManager Threads; // Global object
31
32 namespace { extern "C" {
33
34  // start_routine() is the C function which is called when a new thread
35  // is launched. It simply calls idle_loop() of the supplied thread. The first
36  // and last thread are special. First one is the main search thread while the
37  // last one mimics a timer, they run in main_loop() and timer_loop().
38
39 #if defined(_WIN32) || defined(_WIN64)
40   DWORD WINAPI start_routine(LPVOID thread) {
41 #else
42   void* start_routine(void* thread) {
43 #endif
44
45     Thread* th = (Thread*)thread;
46
47     if (th->threadID == 0)
48         th->main_loop();
49
50     else if (th->threadID == MAX_THREADS)
51         th->timer_loop();
52
53     else
54         th->idle_loop(NULL);
55
56     return 0;
57   }
58
59 } }
60
61
62 // wake_up() wakes up the thread, normally at the beginning of the search or,
63 // if "sleeping threads" is used, when there is some work to do.
64
65 void Thread::wake_up() {
66
67   lock_grab(sleepLock);
68   cond_signal(sleepCond);
69   lock_release(sleepLock);
70 }
71
72
73 // cutoff_occurred() checks whether a beta cutoff has occurred in the current
74 // active split point, or in some ancestor of the split point.
75
76 bool Thread::cutoff_occurred() const {
77
78   for (SplitPoint* sp = splitPoint; sp; sp = sp->parent)
79       if (sp->is_betaCutoff)
80           return true;
81
82   return false;
83 }
84
85
86 // is_available_to() checks whether the thread is available to help the thread with
87 // threadID "master" at a split point. An obvious requirement is that thread must be
88 // idle. With more than two threads, this is not by itself sufficient: If the thread
89 // is the master of some active split point, it is only available as a slave to the
90 // threads which are busy searching the split point at the top of "slave"'s split
91 // point stack (the "helpful master concept" in YBWC terminology).
92
93 bool Thread::is_available_to(int master) const {
94
95   if (is_searching)
96       return false;
97
98   // Make a local copy to be sure doesn't become zero under our feet while
99   // testing next condition and so leading to an out of bound access.
100   int localActiveSplitPoints = activeSplitPoints;
101
102   // No active split points means that the thread is available as a slave for any
103   // other thread otherwise apply the "helpful master" concept if possible.
104   if (   !localActiveSplitPoints
105       || splitPoints[localActiveSplitPoints - 1].is_slave[master])
106       return true;
107
108   return false;
109 }
110
111
112 // read_uci_options() updates number of active threads and other parameters
113 // according to the UCI options values. It is called before to start a new search.
114
115 void ThreadsManager::read_uci_options() {
116
117   maxThreadsPerSplitPoint = Options["Max Threads per Split Point"];
118   minimumSplitDepth       = Options["Min Split Depth"] * ONE_PLY;
119   useSleepingThreads      = Options["Use Sleeping Threads"];
120
121   set_size(Options["Threads"]);
122 }
123
124
125 // set_size() changes the number of active threads and raises do_sleep flag for
126 // all the unused threads that will go immediately to sleep.
127
128 void ThreadsManager::set_size(int cnt) {
129
130   assert(cnt > 0 && cnt <= MAX_THREADS);
131
132   activeThreads = cnt;
133
134   for (int i = 1; i < MAX_THREADS; i++) // Ignore main thread
135       if (i < activeThreads)
136       {
137           // Dynamically allocate pawn and material hash tables according to the
138           // number of active threads. This avoids preallocating memory for all
139           // possible threads if only few are used.
140           threads[i].pawnTable.init();
141           threads[i].materialTable.init();
142
143           threads[i].do_sleep = false;
144       }
145       else
146           threads[i].do_sleep = true;
147 }
148
149
150 // init() is called during startup. Initializes locks and condition variables
151 // and launches all threads sending them immediately to sleep.
152
153 void ThreadsManager::init() {
154
155   // Initialize sleep condition and lock used by thread manager
156   cond_init(sleepCond);
157   lock_init(threadsLock);
158
159   // Initialize thread's sleep conditions and split point locks
160   for (int i = 0; i <= MAX_THREADS; i++)
161   {
162       lock_init(threads[i].sleepLock);
163       cond_init(threads[i].sleepCond);
164
165       for (int j = 0; j < MAX_ACTIVE_SPLIT_POINTS; j++)
166           lock_init(threads[i].splitPoints[j].lock);
167   }
168
169   // Allocate main thread tables to call evaluate() also when not searching
170   threads[0].pawnTable.init();
171   threads[0].materialTable.init();
172
173   // Create and launch all the threads, threads will go immediately to sleep
174   for (int i = 0; i <= MAX_THREADS; i++)
175   {
176       threads[i].is_searching = false;
177       threads[i].do_sleep = (i != 0); // Avoid a race with start_thinking()
178       threads[i].threadID = i;
179
180       if (!thread_create(threads[i].handle, start_routine, threads[i]))
181       {
182           std::cerr << "Failed to create thread number " << i << std::endl;
183           ::exit(EXIT_FAILURE);
184       }
185   }
186 }
187
188
189 // exit() is called to cleanly terminate the threads when the program finishes
190
191 void ThreadsManager::exit() {
192
193   for (int i = 0; i <= MAX_THREADS; i++)
194   {
195       threads[i].do_terminate = true; // Search must be already finished
196       threads[i].wake_up();
197
198       thread_join(threads[i].handle); // Wait for thread termination
199
200       // Now we can safely destroy associated locks and wait conditions
201       lock_destroy(threads[i].sleepLock);
202       cond_destroy(threads[i].sleepCond);
203
204       for (int j = 0; j < MAX_ACTIVE_SPLIT_POINTS; j++)
205           lock_destroy(threads[i].splitPoints[j].lock);
206   }
207
208   lock_destroy(threadsLock);
209   cond_destroy(sleepCond);
210 }
211
212
213 // available_slave_exists() tries to find an idle thread which is available as
214 // a slave for the thread with threadID 'master'.
215
216 bool ThreadsManager::available_slave_exists(int master) const {
217
218   assert(master >= 0 && master < activeThreads);
219
220   for (int i = 0; i < activeThreads; i++)
221       if (threads[i].is_available_to(master))
222           return true;
223
224   return false;
225 }
226
227
228 // split_point_finished() checks if all the slave threads of a given split
229 // point have finished searching.
230
231 bool ThreadsManager::split_point_finished(SplitPoint* sp) const {
232
233   for (int i = 0; i < activeThreads; i++)
234       if (sp->is_slave[i])
235           return false;
236
237   return true;
238 }
239
240
241 // split() does the actual work of distributing the work at a node between
242 // several available threads. If it does not succeed in splitting the node
243 // (because no idle threads are available, or because we have no unused split
244 // point objects), the function immediately returns. If splitting is possible, a
245 // SplitPoint object is initialized with all the data that must be copied to the
246 // helper threads and then helper threads are told that they have been assigned
247 // work. This will cause them to instantly leave their idle loops and call
248 // search(). When all threads have returned from search() then split() returns.
249
250 template <bool Fake>
251 Value ThreadsManager::split(Position& pos, Stack* ss, Value alpha, Value beta,
252                             Value bestValue, Depth depth, Move threatMove,
253                             int moveCount, MovePicker* mp, int nodeType) {
254   assert(pos.pos_is_ok());
255   assert(bestValue > -VALUE_INFINITE);
256   assert(bestValue <= alpha);
257   assert(alpha < beta);
258   assert(beta <= VALUE_INFINITE);
259   assert(depth > DEPTH_ZERO);
260   assert(pos.thread() >= 0 && pos.thread() < activeThreads);
261   assert(activeThreads > 1);
262
263   int i, master = pos.thread();
264   Thread& masterThread = threads[master];
265
266   // If we already have too many active split points, don't split
267   if (masterThread.activeSplitPoints >= MAX_ACTIVE_SPLIT_POINTS)
268       return bestValue;
269
270   // Pick the next available split point from the split point stack
271   SplitPoint* sp = &masterThread.splitPoints[masterThread.activeSplitPoints];
272
273   // Initialize the split point
274   sp->parent = masterThread.splitPoint;
275   sp->master = master;
276   sp->is_betaCutoff = false;
277   sp->depth = depth;
278   sp->threatMove = threatMove;
279   sp->alpha = alpha;
280   sp->beta = beta;
281   sp->nodeType = nodeType;
282   sp->bestValue = bestValue;
283   sp->mp = mp;
284   sp->moveCount = moveCount;
285   sp->pos = &pos;
286   sp->nodes = 0;
287   sp->ss = ss;
288
289   for (i = 0; i < activeThreads; i++)
290       sp->is_slave[i] = false;
291
292   // If we are here it means we are not available
293   assert(masterThread.is_searching);
294
295   int workersCnt = 1; // At least the master is included
296
297   // Try to allocate available threads and ask them to start searching setting
298   // is_searching flag. This must be done under lock protection to avoid concurrent
299   // allocation of the same slave by another master.
300   lock_grab(threadsLock);
301
302   for (i = 0; !Fake && i < activeThreads && workersCnt < maxThreadsPerSplitPoint; i++)
303       if (threads[i].is_available_to(master))
304       {
305           workersCnt++;
306           sp->is_slave[i] = true;
307           threads[i].splitPoint = sp;
308
309           // This makes the slave to exit from idle_loop()
310           threads[i].is_searching = true;
311
312           if (useSleepingThreads)
313               threads[i].wake_up();
314       }
315
316   lock_release(threadsLock);
317
318   // We failed to allocate even one slave, return
319   if (!Fake && workersCnt == 1)
320       return bestValue;
321
322   masterThread.splitPoint = sp;
323   masterThread.activeSplitPoints++;
324
325   // Everything is set up. The master thread enters the idle loop, from which
326   // it will instantly launch a search, because its is_searching flag is set.
327   // We pass the split point as a parameter to the idle loop, which means that
328   // the thread will return from the idle loop when all slaves have finished
329   // their work at this split point.
330   masterThread.idle_loop(sp);
331
332   // In helpful master concept a master can help only a sub-tree of its split
333   // point, and because here is all finished is not possible master is booked.
334   assert(!masterThread.is_searching);
335
336   // We have returned from the idle loop, which means that all threads are
337   // finished. Note that changing state and decreasing activeSplitPoints is done
338   // under lock protection to avoid a race with Thread::is_available_to().
339   lock_grab(threadsLock);
340
341   masterThread.is_searching = true;
342   masterThread.activeSplitPoints--;
343
344   lock_release(threadsLock);
345
346   masterThread.splitPoint = sp->parent;
347   pos.set_nodes_searched(pos.nodes_searched() + sp->nodes);
348
349   return sp->bestValue;
350 }
351
352 // Explicit template instantiations
353 template Value ThreadsManager::split<false>(Position&, Stack*, Value, Value, Value, Depth, Move, int, MovePicker*, int);
354 template Value ThreadsManager::split<true>(Position&, Stack*, Value, Value, Value, Depth, Move, int, MovePicker*, int);
355
356
357 // Thread::timer_loop() is where the timer thread waits maxPly milliseconds and
358 // then calls do_timer_event(). If maxPly is 0 thread sleeps until is woken up.
359 extern void check_time();
360
361 void Thread::timer_loop() {
362
363   while (!do_terminate)
364   {
365       lock_grab(sleepLock);
366       timed_wait(sleepCond, sleepLock, maxPly ? maxPly : INT_MAX);
367       lock_release(sleepLock);
368       check_time();
369   }
370 }
371
372
373 // ThreadsManager::set_timer() is used to set the timer to trigger after msec
374 // milliseconds. If msec is 0 then timer is stopped.
375
376 void ThreadsManager::set_timer(int msec) {
377
378   Thread& timer = threads[MAX_THREADS];
379
380   lock_grab(timer.sleepLock);
381   timer.maxPly = msec;
382   cond_signal(timer.sleepCond); // Wake up and restart the timer
383   lock_release(timer.sleepLock);
384 }
385
386
387 // Thread::main_loop() is where the main thread is parked waiting to be started
388 // when there is a new search. Main thread will launch all the slave threads.
389
390 void Thread::main_loop() {
391
392   while (true)
393   {
394       lock_grab(sleepLock);
395
396       do_sleep = true; // Always return to sleep after a search
397       is_searching = false;
398
399       while (do_sleep && !do_terminate)
400       {
401           cond_signal(Threads.sleepCond); // Wake up UI thread if needed
402           cond_wait(sleepCond, sleepLock);
403       }
404
405       is_searching = true;
406
407       lock_release(sleepLock);
408
409       if (do_terminate)
410           return;
411
412       Search::think();
413   }
414 }
415
416
417 // ThreadsManager::start_thinking() is used by UI thread to wake up the main
418 // thread parked in main_loop() and starting a new search. If asyncMode is true
419 // then function returns immediately, otherwise caller is blocked waiting for
420 // the search to finish.
421
422 void ThreadsManager::start_thinking(const Position& pos, const LimitsType& limits,
423                                     const std::set<Move>& searchMoves, bool async) {
424   Thread& main = threads[0];
425
426   lock_grab(main.sleepLock);
427
428   // Wait main thread has finished before to launch a new search
429   while (!main.do_sleep)
430       cond_wait(sleepCond, main.sleepLock);
431
432   // Copy input arguments to initialize the search
433   RootPosition.copy(pos, 0);
434   Limits = limits;
435   RootMoves.clear();
436
437   // Populate RootMoves with all the legal moves (default) or, if a searchMoves
438   // set is given, with the subset of legal moves to search.
439   for (MoveList<MV_LEGAL> ml(pos); !ml.end(); ++ml)
440       if (searchMoves.empty() || searchMoves.count(ml.move()))
441           RootMoves.push_back(RootMove(ml.move()));
442
443   // Reset signals before to start the new search
444   Signals.stopOnPonderhit = Signals.firstRootMove = false;
445   Signals.stop = Signals.failedLowAtRoot = false;
446
447   main.do_sleep = false;
448   cond_signal(main.sleepCond); // Wake up main thread and start searching
449
450   if (!async)
451       while (!main.do_sleep)
452           cond_wait(sleepCond, main.sleepLock);
453
454   lock_release(main.sleepLock);
455 }
456
457
458 // ThreadsManager::stop_thinking() is used by UI thread to raise a stop request
459 // and to wait for the main thread finishing the search. Needed to wait exiting
460 // and terminate the threads after a 'quit' command.
461
462 void ThreadsManager::stop_thinking() {
463
464   Thread& main = threads[0];
465
466   Search::Signals.stop = true;
467
468   lock_grab(main.sleepLock);
469
470   cond_signal(main.sleepCond); // In case is waiting for stop or ponderhit
471
472   while (!main.do_sleep)
473       cond_wait(sleepCond, main.sleepLock);
474
475   lock_release(main.sleepLock);
476 }
477
478
479 // ThreadsManager::wait_for_stop_or_ponderhit() is called when the maximum depth
480 // is reached while the program is pondering. The point is to work around a wrinkle
481 // in the UCI protocol: When pondering, the engine is not allowed to give a
482 // "bestmove" before the GUI sends it a "stop" or "ponderhit" command. We simply
483 // wait here until one of these commands (that raise StopRequest) is sent and
484 // then return, after which the bestmove and pondermove will be printed.
485
486 void ThreadsManager::wait_for_stop_or_ponderhit() {
487
488   Signals.stopOnPonderhit = true;
489
490   Thread& main = threads[0];
491
492   lock_grab(main.sleepLock);
493
494   while (!Signals.stop)
495       cond_wait(main.sleepCond, main.sleepLock);
496
497   lock_release(main.sleepLock);
498 }