]> git.sesse.net Git - stockfish/blob - src/thread.cpp
Fix startpos_ply_counter() regression
[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-2010 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 <iostream>
21
22 #include "thread.h"
23 #include "ucioption.h"
24
25 ThreadsManager Threads; // Global object definition
26
27 namespace { extern "C" {
28
29  // start_routine() is the C function which is called when a new thread
30  // is launched. It simply calls idle_loop() with the supplied threadID.
31  // There are two versions of this function; one for POSIX threads and
32  // one for Windows threads.
33
34 #if defined(_MSC_VER)
35
36   DWORD WINAPI start_routine(LPVOID threadID) {
37
38     Threads.idle_loop(*(int*)threadID, NULL);
39     return 0;
40   }
41
42 #else
43
44   void* start_routine(void* threadID) {
45
46     Threads.idle_loop(*(int*)threadID, NULL);
47     return NULL;
48   }
49
50 #endif
51
52 } }
53
54
55 // wake_up() wakes up the thread, normally at the beginning of the search or,
56 // if "sleeping threads" is used, when there is some work to do.
57
58 void Thread::wake_up() {
59
60   lock_grab(&sleepLock);
61   cond_signal(&sleepCond);
62   lock_release(&sleepLock);
63 }
64
65
66 // cutoff_occurred() checks whether a beta cutoff has occurred in
67 // the thread's currently active split point, or in some ancestor of
68 // the current split point.
69
70 bool Thread::cutoff_occurred() const {
71
72   for (SplitPoint* sp = splitPoint; sp; sp = sp->parent)
73       if (sp->is_betaCutoff)
74           return true;
75   return false;
76 }
77
78
79 // is_available_to() checks whether the thread is available to help the thread with
80 // threadID "master" at a split point. An obvious requirement is that thread must be
81 // idle. With more than two threads, this is not by itself sufficient: If the thread
82 // is the master of some active split point, it is only available as a slave to the
83 // threads which are busy searching the split point at the top of "slave"'s split
84 // point stack (the "helpful master concept" in YBWC terminology).
85
86 bool Thread::is_available_to(int master) const {
87
88   if (state != AVAILABLE)
89       return false;
90
91   // Make a local copy to be sure doesn't become zero under our feet while
92   // testing next condition and so leading to an out of bound access.
93   int localActiveSplitPoints = activeSplitPoints;
94
95   // No active split points means that the thread is available as a slave for any
96   // other thread otherwise apply the "helpful master" concept if possible.
97   if (   !localActiveSplitPoints
98       || splitPoints[localActiveSplitPoints - 1].is_slave[master])
99       return true;
100
101   return false;
102 }
103
104
105 // read_uci_options() updates number of active threads and other internal
106 // parameters according to the UCI options values. It is called before
107 // to start a new search.
108
109 void ThreadsManager::read_uci_options() {
110
111   maxThreadsPerSplitPoint = Options["Maximum Number of Threads per Split Point"].value<int>();
112   minimumSplitDepth       = Options["Minimum Split Depth"].value<int>() * ONE_PLY;
113   useSleepingThreads      = Options["Use Sleeping Threads"].value<bool>();
114   activeThreads           = Options["Threads"].value<int>();
115 }
116
117
118 // init() is called during startup. Initializes locks and condition variables
119 // and launches all threads sending them immediately to sleep.
120
121 void ThreadsManager::init() {
122
123   int threadID[MAX_THREADS];
124
125   // This flag is needed to properly end the threads when program exits
126   allThreadsShouldExit = false;
127
128   // Threads will sent to sleep as soon as created, only main thread is kept alive
129   activeThreads = 1;
130   threads[0].state = Thread::SEARCHING;
131
132   // Allocate pawn and material hash tables for main thread
133   init_hash_tables();
134
135   lock_init(&mpLock);
136
137   // Initialize thread and split point locks
138   for (int i = 0; i < MAX_THREADS; i++)
139   {
140       lock_init(&threads[i].sleepLock);
141       cond_init(&threads[i].sleepCond);
142
143       for (int j = 0; j < MAX_ACTIVE_SPLIT_POINTS; j++)
144           lock_init(&(threads[i].splitPoints[j].lock));
145   }
146
147   // Create and startup all the threads but the main that is already running
148   for (int i = 1; i < MAX_THREADS; i++)
149   {
150       threads[i].state = Thread::INITIALIZING;
151       threadID[i] = i;
152
153 #if defined(_MSC_VER)
154       bool ok = (CreateThread(NULL, 0, start_routine, (LPVOID)&threadID[i], 0, NULL) != NULL);
155 #else
156       pthread_t pthreadID;
157       bool ok = (pthread_create(&pthreadID, NULL, start_routine, (void*)&threadID[i]) == 0);
158       pthread_detach(pthreadID);
159 #endif
160       if (!ok)
161       {
162           std::cout << "Failed to create thread number " << i << std::endl;
163           ::exit(EXIT_FAILURE);
164       }
165
166       // Wait until the thread has finished launching and is gone to sleep
167       while (threads[i].state == Thread::INITIALIZING) {}
168   }
169 }
170
171
172 // exit() is called to cleanly exit the threads when the program finishes
173
174 void ThreadsManager::exit() {
175
176   // Force the woken up threads to exit idle_loop() and hence terminate
177   allThreadsShouldExit = true;
178
179   for (int i = 0; i < MAX_THREADS; i++)
180   {
181       // Wake up all the threads and waits for termination
182       if (i != 0)
183       {
184           threads[i].wake_up();
185           while (threads[i].state != Thread::TERMINATED) {}
186       }
187
188       // Now we can safely destroy the locks and wait conditions
189       lock_destroy(&threads[i].sleepLock);
190       cond_destroy(&threads[i].sleepCond);
191
192       for (int j = 0; j < MAX_ACTIVE_SPLIT_POINTS; j++)
193           lock_destroy(&(threads[i].splitPoints[j].lock));
194   }
195
196   lock_destroy(&mpLock);
197 }
198
199
200 // init_hash_tables() dynamically allocates pawn and material hash tables
201 // according to the number of active threads. This avoids preallocating
202 // memory for all possible threads if only few are used as, for instance,
203 // on mobile devices where memory is scarce and allocating for MAX_THREADS
204 // threads could even result in a crash.
205
206 void ThreadsManager::init_hash_tables() {
207
208   for (int i = 0; i < activeThreads; i++)
209   {
210       threads[i].pawnTable.init();
211       threads[i].materialTable.init();
212   }
213 }
214
215
216 // available_slave_exists() tries to find an idle thread which is available as
217 // a slave for the thread with threadID "master".
218
219 bool ThreadsManager::available_slave_exists(int master) const {
220
221   assert(master >= 0 && master < activeThreads);
222
223   for (int i = 0; i < activeThreads; i++)
224       if (i != master && threads[i].is_available_to(master))
225           return true;
226
227   return false;
228 }
229
230
231 // split() does the actual work of distributing the work at a node between
232 // several available threads. If it does not succeed in splitting the
233 // node (because no idle threads are available, or because we have no unused
234 // split point objects), the function immediately returns. If splitting is
235 // possible, a SplitPoint object is initialized with all the data that must be
236 // copied to the helper threads and we tell our helper threads that they have
237 // been assigned work. This will cause them to instantly leave their idle loops and
238 // call search().When all threads have returned from search() then split() returns.
239
240 template <bool Fake>
241 void ThreadsManager::split(Position& pos, SearchStack* ss, Value* alpha, const Value beta,
242                            Value* bestValue, Depth depth, Move threatMove,
243                            int moveCount, MovePicker* mp, bool pvNode) {
244   assert(pos.is_ok());
245   assert(*bestValue >= -VALUE_INFINITE);
246   assert(*bestValue <= *alpha);
247   assert(*alpha < beta);
248   assert(beta <= VALUE_INFINITE);
249   assert(depth > DEPTH_ZERO);
250   assert(pos.thread() >= 0 && pos.thread() < activeThreads);
251   assert(activeThreads > 1);
252
253   int i, master = pos.thread();
254   Thread& masterThread = threads[master];
255
256   lock_grab(&mpLock);
257
258   // If no other thread is available to help us, or if we have too many
259   // active split points, don't split.
260   if (   !available_slave_exists(master)
261       || masterThread.activeSplitPoints >= MAX_ACTIVE_SPLIT_POINTS)
262   {
263       lock_release(&mpLock);
264       return;
265   }
266
267   // Pick the next available split point object from the split point stack
268   SplitPoint& splitPoint = masterThread.splitPoints[masterThread.activeSplitPoints++];
269
270   // Initialize the split point object
271   splitPoint.parent = masterThread.splitPoint;
272   splitPoint.master = master;
273   splitPoint.is_betaCutoff = false;
274   splitPoint.depth = depth;
275   splitPoint.threatMove = threatMove;
276   splitPoint.alpha = *alpha;
277   splitPoint.beta = beta;
278   splitPoint.pvNode = pvNode;
279   splitPoint.bestValue = *bestValue;
280   splitPoint.mp = mp;
281   splitPoint.moveCount = moveCount;
282   splitPoint.pos = &pos;
283   splitPoint.nodes = 0;
284   splitPoint.ss = ss;
285   for (i = 0; i < activeThreads; i++)
286       splitPoint.is_slave[i] = false;
287
288   masterThread.splitPoint = &splitPoint;
289
290   // If we are here it means we are not available
291   assert(masterThread.state != Thread::AVAILABLE);
292
293   int workersCnt = 1; // At least the master is included
294
295   // Allocate available threads setting state to THREAD_BOOKED
296   for (i = 0; !Fake && i < activeThreads && workersCnt < maxThreadsPerSplitPoint; i++)
297       if (i != master && threads[i].is_available_to(master))
298       {
299           threads[i].state = Thread::BOOKED;
300           threads[i].splitPoint = &splitPoint;
301           splitPoint.is_slave[i] = true;
302           workersCnt++;
303       }
304
305   assert(Fake || workersCnt > 1);
306
307   // We can release the lock because slave threads are already booked and master is not available
308   lock_release(&mpLock);
309
310   // Tell the threads that they have work to do. This will make them leave
311   // their idle loop.
312   for (i = 0; i < activeThreads; i++)
313       if (i == master || splitPoint.is_slave[i])
314       {
315           assert(i == master || threads[i].state == Thread::BOOKED);
316
317           threads[i].state = Thread::WORKISWAITING; // This makes the slave to exit from idle_loop()
318
319           if (useSleepingThreads && i != master)
320               threads[i].wake_up();
321       }
322
323   // Everything is set up. The master thread enters the idle loop, from
324   // which it will instantly launch a search, because its state is
325   // THREAD_WORKISWAITING.  We send the split point as a second parameter to the
326   // idle loop, which means that the main thread will return from the idle
327   // loop when all threads have finished their work at this split point.
328   idle_loop(master, &splitPoint);
329
330   // We have returned from the idle loop, which means that all threads are
331   // finished. Update alpha and bestValue, and return.
332   lock_grab(&mpLock);
333
334   *alpha = splitPoint.alpha;
335   *bestValue = splitPoint.bestValue;
336   masterThread.activeSplitPoints--;
337   masterThread.splitPoint = splitPoint.parent;
338   pos.set_nodes_searched(pos.nodes_searched() + splitPoint.nodes);
339
340   lock_release(&mpLock);
341 }
342
343 // Explicit template instantiations
344 template void ThreadsManager::split<false>(Position&, SearchStack*, Value*, const Value, Value*, Depth, Move, int, MovePicker*, bool);
345 template void ThreadsManager::split<true>(Position&, SearchStack*, Value*, const Value, Value*, Depth, Move, int, MovePicker*, bool);