From: Marco Costalba Date: Sun, 14 Oct 2012 07:02:04 +0000 (+0200) Subject: Set TT size to 32 MB during 'bench' X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=6a75291ab18a4add2bf2fb6832434b3f49562c46;p=fairystockfish.git 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 --- diff --git a/src/benchmark.cpp b/src/benchmark.cpp index f63cb8e..0e72087 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -66,7 +66,7 @@ void benchmark(const Position& current, istream& is) { vector fens; // 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 limit = (is >> token) ? token : "12"; string fenFile = (is >> token) ? token : "default";