Add automated performance measurement system.

This commit is contained in:
Taylor Hornby
2016-04-07 15:37:39 -06:00
parent c34d662f10
commit 6962bb3df0
8 changed files with 258 additions and 1 deletions

11
src/zcbenchmarks.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef BENCHMARKS_H
#define BENCHMARKS_H
#include <sys/time.h>
#include <stdlib.h>
extern double benchmark_sleep();
extern double benchmark_parameter_loading();
extern double benchmark_create_joinsplit();
#endif