mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 01:03:09 +00: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:
parent
eb1a4f11fa
commit
6a75291ab1
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||||
|
|
Loading…
Add table
Reference in a new issue