]>
Commit | Line | Data |
---|---|---|
6962bb3d TH |
1 | #ifndef BENCHMARKS_H |
2 | #define BENCHMARKS_H | |
3 | ||
4 | #include <sys/time.h> | |
5 | #include <stdlib.h> | |
6 | ||
7 | extern double benchmark_sleep(); | |
8 | extern double benchmark_parameter_loading(); | |
9 | extern double benchmark_create_joinsplit(); | |
bf8def97 | 10 | extern double benchmark_solve_equihash(); |
d44feea4 | 11 | extern double benchmark_verify_joinsplit(const CPourTx &joinsplit); |
a1cd1a27 | 12 | extern double benchmark_verify_equihash(); |
f5edc37f | 13 | extern double benchmark_large_tx(bool testValidate); |
6962bb3d TH |
14 | |
15 | #endif |