From 6a75291ab18a4add2bf2fb6832434b3f49562c46 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 14 Oct 2012 09:02:04 +0200 Subject: [PATCH] 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 --- src/benchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.39.2