mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 00:56:39 +08:00
Set TT size to 32 MB during 'bench'
On some platforms 128 MB of RAM for TT is too much, so run 'bench' with the default 32 MB size. No functional change although of course now 'bench' reports a different number: 5545018
This commit is contained in:
@@ -66,7 +66,7 @@ void benchmark(const Position& current, istream& is) {
|
|||||||
vector<string> fens;
|
vector<string> fens;
|
||||||
|
|
||||||
// Assign default values to missing arguments
|
// Assign default values to missing arguments
|
||||||
string ttSize = (is >> token) ? token : "128";
|
string ttSize = (is >> token) ? token : "32";
|
||||||
string threads = (is >> token) ? token : "1";
|
string threads = (is >> token) ? token : "1";
|
||||||
string limit = (is >> token) ? token : "12";
|
string limit = (is >> token) ? token : "12";
|
||||||
string fenFile = (is >> token) ? token : "default";
|
string fenFile = (is >> token) ? token : "default";
|
||||||
|
|||||||
Reference in New Issue
Block a user