]>
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(); | |
9e52ca32 JG |
10 | extern double benchmark_solve_equihash(); |
11 | extern std::vector<double> benchmark_solve_equihash_threaded(int nThreads); | |
a8c68ffe | 12 | extern double benchmark_verify_joinsplit(const JSDescription &joinsplit); |
a1cd1a27 | 13 | extern double benchmark_verify_equihash(); |
9c45b501 | 14 | extern double benchmark_large_tx(); |
6962bb3d TH |
15 | |
16 | #endif |