X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=0598973a42aef60a7e864d0a8f6cff29793a2b0c;hp=5102b369d2ea0457f4afe0c02e6de52cf3197d1f;hb=cff3a6d33e50d37322ffae511ddbe4c7e846505e;hpb=d3600c39a745179ed6b094b305d0645e83a1ee86 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 5102b369..0598973a 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -71,8 +71,8 @@ void benchmark(const std::string& commandLine) { std::istringstream csVal(commandLine); std::istringstream csStr(commandLine); - std::string ttSize, threads, fileName; - int val, secsPerPos; + std::string ttSize, threads, fileName, limitType; + int val, secsPerPos, maxDepth, maxNodes; csStr >> ttSize; csVal >> val; @@ -95,8 +95,18 @@ void benchmark(const std::string& commandLine) { set_option_value("Use Search Log", "true"); set_option_value("Search Log Filename", "bench.txt"); - csVal >> secsPerPos; + csVal >> val; csVal >> fileName; + csVal >> limitType; + + secsPerPos = maxDepth = maxNodes = 0; + + if (limitType == "time") + secsPerPos = val * 1000; + else if (limitType == "depth") + maxDepth = val; + else + maxNodes = val; std::vector positions; @@ -121,12 +131,21 @@ void benchmark(const std::string& commandLine) { for (int i = 0; i < 16; i++) positions.push_back(std::string(BenchmarkPositions[i])); + int startTime = get_system_time(); std::vector::iterator it; - for (it = positions.begin(); it != positions.end(); ++it) + int cnt = 1; + int64_t totalNodes = 0; + for (it = positions.begin(); it != positions.end(); ++it, ++cnt) { - Move moves[1] = {MOVE_NONE}; - int dummy[2] = {0, 0}; + Move moves[1] = {MOVE_NONE}; + int dummy[2] = {0, 0}; Position pos(*it); - think(pos, true, false, 0, dummy, dummy, 0, 0, 0, secsPerPos * 1000, moves); + std::cout << "\nProcessing position " << cnt << '/' << positions.size() << std::endl << std::endl; + think(pos, true, false, 0, dummy, dummy, 0, maxDepth, maxNodes, secsPerPos, moves); + totalNodes += nodes_searched(); } + std::cout << "\nProcessing time (ms) " << get_system_time() - startTime << std::endl + << "Nodes searched " << totalNodes << std::endl + << "Press any key to exit" << std::endl; + std::cin >> fileName; }