1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 09:13:08 +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:
Marco Costalba 2012-10-14 09:02:04 +02:00
parent eb1a4f11fa
commit 6a75291ab1

View file

@ -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";