-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark.c
75 lines (64 loc) · 1.57 KB
/
benchmark.c
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
#include "finwo/benchmark.h"
#include "mindex.h"
static void fn_purge(void *item, void *udata) {
free(item);
// Intentionally empty
}
static int fn_compare_string(const void *a, const void *b, void *udata) {
const char *sa = (char*)a;
const char *sb = (char*)b;
return strcmp(sa, sb);
}
const char *alphabet = "0123456789abcdef";
int alen = sizeof(alphabet);
char *random_str(int length) {
char *str = malloc(length + 1);
for(int i=0; i<length; i++) {
str[i] = alphabet[rand() % alen];
}
str[length] = '\0';
return str;
}
void mindex_bmark_rstr_1024() {
for(int i=0; i<1024; i++) {
free(random_str(16));
}
}
void mindex_bmark_rstr_65536() {
for(int i=0; i<65536; i++) {
free(random_str(16));
}
}
void mindex_bmark_assign_1024() {
struct mindex_t *mindex = mindex_init(fn_compare_string, fn_purge, NULL);
for(int i=0; i<1024; i++) {
mindex_set(mindex, random_str(16));
}
mindex_free(mindex);
}
void mindex_bmark_assign_65536() {
struct mindex_t *mindex = mindex_init(fn_compare_string, fn_purge, NULL);
for(int i=0; i<65536; i++) {
mindex_set(mindex, random_str(16));
}
mindex_free(mindex);
}
int main() {
char percentiles[] = {
1, 5, 50, 95, 99, 0
};
BMARK(mindex_bmark_rstr_1024);
BMARK(mindex_bmark_assign_1024);
BMARK(mindex_bmark_rstr_65536);
BMARK(mindex_bmark_assign_65536);
return bmark_run(100, percentiles);
return 0;
}