| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 | #ifndef __BENCHMARK_H__
#define __BENCHMARK_H__
#include "hardinfo.h"
extern ProgramParameters params;
enum {
    BENCHMARK_BLOWFISH,
    BENCHMARK_CRYPTOHASH,
    BENCHMARK_FIB,
    BENCHMARK_NQUEENS,
    BENCHMARK_ZLIB,
    BENCHMARK_FFT,
    BENCHMARK_RAYTRACE,
    BENCHMARK_GUI,
    BENCHMARK_N_ENTRIES
} BenchmarkEntries;
void benchmark_bfish(void);
void benchmark_cryptohash(void);
void benchmark_fft(void);
void benchmark_fib(void);
void benchmark_fish(void);
void benchmark_gui(void);
void benchmark_nqueens(void);
void benchmark_raytrace(void);
void benchmark_zlib(void);
typedef struct {
    double result;
    double elapsed_time;
    int threads_used;
} bench_value;
#define EMPTY_BENCH_VALUE {-1.0f,0,0}
char *bench_value_to_str(bench_value r);
bench_value bench_value_from_str(const char* str);
bench_value benchmark_parallel_for(gint n_threads, guint start, guint end,
                               gpointer callback, gpointer callback_data);
extern bench_value bench_results[BENCHMARK_N_ENTRIES];
#endif /* __BENCHMARK_H__ */
 |