X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=9cf04532d59f61584ce23bf5caeff5e90f731036;hb=05cfb00f26ca075ac972e320aaeabefe20599aea;hp=0253992710dd5618303464a5d3f0ddb495f85c69;hpb=660378d10e99f435df347f317878d7d2d9eade16;p=stockfish diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 02539927..9cf04532 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -22,6 +22,7 @@ //// Includes //// #include +#include #include #include "search.h" @@ -50,7 +51,8 @@ static const string BenchmarkPositions[] = { "3r1rk1/p5pp/bpp1pp2/8/q1PP1P2/b3P3/P2NQRPP/1R2B1K1 b - - 6 22", "r1q2rk1/2p1bppp/2Pp4/p6b/Q1PNp3/4B3/PP1R1PPP/2K4R w - - 2 18", "4k2r/1pb2ppp/1p2p3/1R1p4/3P4/2r1PN2/P4PPP/1R4K1 b - - 3 22", - "3q2k1/pb3p1p/4pbp1/2r5/PpN2N2/1P2P2P/5PP1/Q2R2K1 b - - 4 26" + "3q2k1/pb3p1p/4pbp1/2r5/PpN2N2/1P2P2P/5PP1/Q2R2K1 b - - 4 26", + "" }; @@ -71,7 +73,7 @@ void benchmark(int argc, char* argv[]) { vector positions; string ttSize, threads, valStr, posFile, valType; - int val, secsPerPos, maxDepth, maxNodes; + int val, maxTime, maxDepth, maxNodes; ttSize = argc > 2 ? argv[2] : "128"; threads = argc > 3 ? argv[3] : "1"; @@ -85,13 +87,13 @@ void benchmark(int argc, char* argv[]) { Options["Use Search Log"].set_value("true"); Options["Search Log Filename"].set_value("bench.txt"); - secsPerPos = maxDepth = maxNodes = 0; + maxTime = maxDepth = maxNodes = 0; val = atoi(valStr.c_str()); if (valType == "depth" || valType == "perft") maxDepth = val; else if (valType == "time") - secsPerPos = val * 1000; + maxTime = val * 1000; else maxNodes = val; @@ -101,7 +103,7 @@ void benchmark(int argc, char* argv[]) { if (!fenFile.is_open()) { cerr << "Unable to open positions file " << posFile << endl; - Application::exit_with_failure(); + exit(EXIT_FAILURE); } string pos; while (fenFile.good()) @@ -112,8 +114,8 @@ void benchmark(int argc, char* argv[]) { } fenFile.close(); } else - for (int i = 0; i < 16; i++) - positions.push_back(string(BenchmarkPositions[i])); + for (int i = 0; !BenchmarkPositions[i].empty(); i++) + positions.push_back(BenchmarkPositions[i]); vector::iterator it; int cnt = 1; @@ -122,9 +124,8 @@ void benchmark(int argc, char* argv[]) { for (it = positions.begin(); it != positions.end(); ++it, ++cnt) { - Move moves[1] = { MOVE_NONE }; - int dummy[2] = { 0, 0 }; - Position pos(*it, 0); + Move moves[] = { MOVE_NONE }; + Position pos(*it, false, 0); cerr << "\nBench position: " << cnt << '/' << positions.size() << endl << endl; if (valType == "perft") { @@ -132,7 +133,7 @@ void benchmark(int argc, char* argv[]) { cerr << "\nPerft " << maxDepth << " result (nodes searched): " << perftCnt << endl << endl; totalNodes += perftCnt; } else { - if (!think(pos, false, false, dummy, dummy, 0, maxDepth, maxNodes, secsPerPos, moves)) + if (!think(pos, SearchLimits(0, 0, 0, maxTime, maxDepth, maxNodes, false, false), moves)) break; totalNodes += pos.nodes_searched(); }