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: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=6a75291ab18a4add2bf2fb6832434b3f49562c46;hp=eb1a4f11fa18d22543bef9a507d57a5980867965 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 f63cb8e9..0e720875 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";