]> git.sesse.net Git - stockfish/blob - src/thread.h
[cluster] fill sendbuffer better
[stockfish] / src / thread.h
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-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5   Copyright (C) 2015-2019 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
7   Stockfish is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   Stockfish is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef THREAD_H_INCLUDED
22 #define THREAD_H_INCLUDED
23
24 #include <atomic>
25 #include <condition_variable>
26 #include <mutex>
27 #include <thread>
28 #include <vector>
29
30 #include "cluster.h"
31 #include "material.h"
32 #include "movepick.h"
33 #include "pawns.h"
34 #include "position.h"
35 #include "search.h"
36 #include "thread_win32.h"
37
38
39 /// Thread class keeps together all the thread-related stuff. We use
40 /// per-thread pawn and material hash tables so that once we get a
41 /// pointer to an entry its life time is unlimited and we don't have
42 /// to care about someone changing the entry under our feet.
43
44 class Thread {
45
46   Mutex mutex;
47   ConditionVariable cv;
48   size_t idx;
49   bool exit = false, searching = true; // Set before starting std::thread
50   std::thread stdThread;
51
52 public:
53   explicit Thread(size_t);
54   virtual ~Thread();
55   virtual void search();
56   void clear();
57   void idle_loop();
58   void start_searching();
59   void wait_for_search_finished();
60
61   Pawns::Table pawnsTable;
62   Material::Table materialTable;
63   Endgames endgames;
64   size_t pvIdx, pvLast;
65   int selDepth, nmpMinPly;
66   Color nmpColor;
67   std::atomic<uint64_t> nodes, tbHits;
68
69   Position rootPos;
70   Search::RootMoves rootMoves;
71   Depth rootDepth, completedDepth;
72   CounterMoveHistory counterMoves;
73   ButterflyHistory mainHistory;
74   CapturePieceToHistory captureHistory;
75   ContinuationHistory continuationHistory;
76   Score contempt;
77
78 #ifdef USE_MPI
79   struct {
80       Mutex mutex;
81       Cluster::TTSendBuffer<Cluster::TTSendBufferSize> buffer = {};
82       size_t counter = 0;
83   } ttBuffer;
84 #endif
85 };
86
87
88 /// MainThread is a derived class specific for main thread
89
90 struct MainThread : public Thread {
91
92   using Thread::Thread;
93
94   void search() override;
95   void check_time();
96
97   double bestMoveChanges, previousTimeReduction;
98   Value previousScore;
99   int callsCnt;
100 };
101
102
103 /// ThreadPool struct handles all the threads-related stuff like init, starting,
104 /// parking and, most importantly, launching a thread. All the access to threads
105 /// is done through this class.
106
107 struct ThreadPool : public std::vector<Thread*> {
108
109   void start_thinking(Position&, StateListPtr&, const Search::LimitsType&, bool = false);
110   void clear();
111   void set(size_t);
112
113   MainThread* main()        const { return static_cast<MainThread*>(front()); }
114   uint64_t nodes_searched() const { return accumulate(&Thread::nodes); }
115   uint64_t tb_hits()        const { return accumulate(&Thread::tbHits); }
116
117   std::atomic_bool stop, ponder, stopOnPonderhit;
118
119 private:
120   StateListPtr setupStates;
121
122   uint64_t accumulate(std::atomic<uint64_t> Thread::* member) const {
123
124     uint64_t sum = 0;
125     for (Thread* th : *this)
126         sum += (th->*member).load(std::memory_order_relaxed);
127     return sum;
128   }
129 };
130
131 extern ThreadPool Threads;
132
133 #endif // #ifndef THREAD_H_INCLUDED