blob: 271d3393567888d15ac89e93c514346282b9e79c (
plain)
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
47
48
49
50
51
52
53
|
#include "../tool.h"
#define MAXDEPTH 20
#define HVALUE 0
#define OPTIONS "0;2;20"
#define LONGOPTIONS "h = 0, k = 2, max depth = 20"
uint32_t expected[21] = {
/* Base value is 8 */
[0] = 5473562,
[1] = 34776317,
[2] = 68566704,
[3] = 8750867,
};
char *buf;
void run(void) {
int64_t s;
s = nissy_gendata("h48", OPTIONS, buf);
if (s == -1) {
printf("Error generating table\n");
} else {
nissy_datainfo(buf, write_stdout);
printf("\n");
printf("Succesfully generated %" PRId64 " bytes. "
"See above for details on the tables.\n", s);
/* TODO: check that the table is correct */
}
}
int main(void) {
int64_t size;
nissy_setlogger(log_stderr);
size = nissy_datasize("h48", OPTIONS);
if (size == -1) {
printf("gendata_h48 benchmark: error in datasize\n");
return 1;
}
buf = malloc(size);
timerun(run, "benchmark gendata_h48 " LONGOPTIONS);
free(buf);
return 0;
}
|