mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 00:56:39 +08:00
Simplify debug functions
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
52
src/misc.cpp
52
src/misc.cpp
@@ -39,12 +39,12 @@
|
||||
# include <xmmintrin.h>
|
||||
#endif
|
||||
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <cstdio>
|
||||
#include <iomanip>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <algorithm>
|
||||
|
||||
#include "bitcount.h"
|
||||
#include "misc.h"
|
||||
@@ -52,7 +52,6 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
/// Version number. If Version is left empty, then Tag plus current
|
||||
/// date (in the format YYMMDD) is used as a version number.
|
||||
|
||||
@@ -93,43 +92,24 @@ const string engine_info(bool to_uci) {
|
||||
}
|
||||
|
||||
|
||||
/// Debug stuff. Helper functions used mainly for debugging purposes
|
||||
/// Debug functions used mainly to collect run-time statistics
|
||||
|
||||
static uint64_t dbg_hit_cnt0;
|
||||
static uint64_t dbg_hit_cnt1;
|
||||
static uint64_t dbg_mean_cnt0;
|
||||
static uint64_t dbg_mean_cnt1;
|
||||
|
||||
void dbg_print_hit_rate() {
|
||||
|
||||
if (dbg_hit_cnt0)
|
||||
cerr << "Total " << dbg_hit_cnt0 << " Hit " << dbg_hit_cnt1
|
||||
<< " hit rate (%) " << 100 * dbg_hit_cnt1 / dbg_hit_cnt0 << endl;
|
||||
}
|
||||
|
||||
void dbg_print_mean() {
|
||||
|
||||
if (dbg_mean_cnt0)
|
||||
cerr << "Total " << dbg_mean_cnt0 << " Mean "
|
||||
<< (float)dbg_mean_cnt1 / dbg_mean_cnt0 << endl;
|
||||
}
|
||||
|
||||
void dbg_mean_of(int v) {
|
||||
|
||||
dbg_mean_cnt0++;
|
||||
dbg_mean_cnt1 += v;
|
||||
}
|
||||
|
||||
void dbg_hit_on(bool b) {
|
||||
|
||||
dbg_hit_cnt0++;
|
||||
if (b)
|
||||
dbg_hit_cnt1++;
|
||||
}
|
||||
static uint64_t hits[2], means[2];
|
||||
|
||||
void dbg_hit_on(bool b) { hits[0]++; if (b) hits[1]++; }
|
||||
void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
|
||||
void dbg_before() { dbg_hit_on(false); }
|
||||
void dbg_after() { dbg_hit_on(true); dbg_hit_cnt0--; }
|
||||
void dbg_mean_of(int v) { means[0]++; means[1] += v; }
|
||||
|
||||
void dbg_print() {
|
||||
|
||||
if (hits[0])
|
||||
cerr << "Total " << hits[0] << " Hits " << hits[1]
|
||||
<< " hit rate (%) " << 100 * hits[1] / hits[0] << endl;
|
||||
|
||||
if (means[0])
|
||||
cerr << "Total " << means[0] << " Mean "
|
||||
<< (float)means[1] / means[0] << endl;
|
||||
}
|
||||
|
||||
|
||||
/// system_time() returns the current system time, measured in milliseconds
|
||||
|
||||
Reference in New Issue
Block a user