aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/includes/benchmark.h
blob: 27bcbf4c1c85a4bfad8dde7971f942c3cee67e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __BENCHMARK_H__
#define __BENCHMARK_H__

#include "hardinfo.h"

extern ProgramParameters params;

enum {
    BENCHMARK_BLOWFISH,
    BENCHMARK_CRYPTOHASH,
    BENCHMARK_FIB,
    BENCHMARK_NQUEENS,
    BENCHMARK_FFT,
    BENCHMARK_RAYTRACE,
    BENCHMARK_GUI,
    BENCHMARK_N_ENTRIES
} BenchmarkEntries;

extern gdouble bench_results[BENCHMARK_N_ENTRIES];

#endif /* __BENCHMARK_H__ */