mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
[cluster] Improve user documentation
- add cluster info line - provides basic info on positions received/stored in a cluster run, useful to judge performance. - document most cluster functionality in the readme.md No functional change
This commit is contained in:
committed by
Stéphane Nicolet
parent
21819b7bf8
commit
10a920d7d7
+2
-1
@@ -64,7 +64,7 @@ public:
|
||||
size_t pvIdx, pvLast;
|
||||
int selDepth, nmpMinPly;
|
||||
Color nmpColor;
|
||||
std::atomic<uint64_t> nodes, tbHits;
|
||||
std::atomic<uint64_t> nodes, tbHits, TTsaves;
|
||||
|
||||
Position rootPos;
|
||||
Search::RootMoves rootMoves;
|
||||
@@ -112,6 +112,7 @@ struct ThreadPool : public std::vector<Thread*> {
|
||||
MainThread* main() const { return static_cast<MainThread*>(front()); }
|
||||
uint64_t nodes_searched() const { return accumulate(&Thread::nodes); }
|
||||
uint64_t tb_hits() const { return accumulate(&Thread::tbHits); }
|
||||
uint64_t TT_saves() const { return accumulate(&Thread::TTsaves); }
|
||||
|
||||
std::atomic_bool stop, ponder, stopOnPonderhit;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user