/* * bench.h * Copyright (C) 2014 c9s * * Distributed under terms of the MIT license. */ #ifndef BENCH_H #define BENCH_H #include #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; unsigned long unixtime(); double microtime(); void bench_start(bench *b); void bench_stop(bench *b); double bench_iteration_speed(bench *b); void bench_print_summary(bench *b); double bench_duration(bench *b); void bench_append_csv(char *filename, int countOfB, ...); #define BENCHMARK(B) \ bench B; B.N = 5000000; B.R = 3; \ printf("Benchmarking " #B "...\n"); \ bench_start(&B); \ for (int _r = 0; _r < B.R ; _r++ ) { \ for (int _i = 0; _i < B.N ; _i++ ) { #define END_BENCHMARK(B) \ } \ } \ bench_stop(&B); #define BENCHMARK_SUMMARY(B) bench_print_summary(&B); #define BENCHMARK_RECORD_CSV(filename, countOfB, ...) \ bench_append_csv(filename, countOfB, __VA_ARGS__) #endif /* !BENCH_H */