r3/tests/bench.h

55 lines
857 B
C
Raw Normal View History

2014-05-16 19:48:22 -04:00
/*
* bench.h
* Copyright (C) 2014 c9s <c9s@c9smba.local>
*
* Distributed under terms of the MIT license.
*/
#ifndef BENCH_H
#define BENCH_H
#include <stdlib.h>
#define MICRO_IN_SEC 1000000.00
#define SEC_IN_MIN 60
#define NUL '\0'
typedef struct {
long N; // N for each run
long R; // runs
double secs;
double start;
double end;
} bench;
#define BENCHMARK(name) \
2014-05-16 19:53:24 -04:00
{ \
bench B; B.N = 5000000; B.R = 3; \
bench_start(&B); \
for (int _r = 0; _r < B.R ; _r++ ) { \
for (int _i = 0; _i < B.N ; _i++ ) {
2014-05-16 19:48:22 -04:00
#define END_BENCHMARK() \
2014-05-16 19:53:24 -04:00
} \
2014-05-16 19:48:22 -04:00
} \
2014-05-16 19:53:24 -04:00
bench_stop(&B); \
}
2014-05-16 19:48:22 -04:00
long unixtime();
double microtime();
void bench_start(bench *b);
void bench_stop(bench *b);
double bench_iteration_speed(bench *b);
2014-05-16 19:48:57 -04:00
void bench_print_summary(bench *b);
2014-05-16 19:48:22 -04:00
#endif /* !BENCH_H */