zcash-patched-for-explorer/src/zcbenchmarks.h

16 lines
422 B
C
Raw Normal View History

#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();
2016-04-11 07:05:13 -07:00
extern double benchmark_solve_equihash();
2016-04-11 08:17:02 -07:00
extern double benchmark_verify_joinsplit(const CPourTx &joinsplit);
2016-04-11 09:02:09 -07:00
extern double benchmark_verify_equihash();
extern double benchmark_large_tx(bool testValidate);
#endif