X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc.h;h=9761da8addd93b5ec4a41223af7742de26582fe2;hb=5a30b087c3a3c4435e680e6c61082d5432fa0ace;hp=4c1150f867be901191e04962c991973a0b592bfb;hpb=da8513f0eae439f526ab0a905a3433bdb44bcf66;p=stockfish diff --git a/src/misc.h b/src/misc.h index 4c1150f8..9761da8a 100644 --- a/src/misc.h +++ b/src/misc.h @@ -39,9 +39,10 @@ void std_aligned_free(void* ptr); void* aligned_large_pages_alloc(size_t size); // memory aligned by page size, min alignment: 4096 bytes void aligned_large_pages_free(void* mem); // nop if mem == nullptr -void dbg_hit_on(bool b); -void dbg_hit_on(bool c, bool b); -void dbg_mean_of(int v); +void dbg_hit_on(bool cond, int slot = 0); +void dbg_mean_of(int64_t value, int slot = 0); +void dbg_stdev_of(int64_t value, int slot = 0); +void dbg_correl_of(int64_t value1, int64_t value2, int slot = 0); void dbg_print(); typedef std::chrono::milliseconds::rep TimePoint; // A value in milliseconds