genzipf: improve accuracy
[fio.git] / t / genzipf.c
CommitLineData
6ff38856
JA
1/*
2 * Generate/analyze pareto/zipf distributions to better understand
3 * what an access pattern would look like.
4 *
5 * For instance, the following would generate a zipf distribution
6 * with theta 1.2, using 100,000 values and split the reporting into
7 * 20 buckets:
8 *
9 * t/genzipf zipf 1.2 100000 20
10 *
f880b1f6
JA
11 * Only the distribution type (zipf or pareto) and spread input need
12 * to be given, if not given defaults are used.
13 *
6ff38856
JA
14 */
15#include <stdio.h>
16#include <stdlib.h>
17#include <fcntl.h>
18#include <string.h>
19
20#include "../lib/zipf.h"
fd6f237d
JA
21#include "../flist.h"
22#include "../hash.h"
23#include "../rbtree.h"
6ff38856 24
f880b1f6
JA
25#define DEF_NR 1000000
26#define DEF_NR_OUTPUT 23
27
fd6f237d
JA
28struct node {
29 struct flist_head list;
30 struct rb_node rb;
31 unsigned long long val;
32 unsigned long hits;
33};
34
35static struct flist_head *hash;
36static unsigned long hash_bits = 24;
37static unsigned long hash_size = 1 << 24;
38static struct rb_root rb;
39
40static struct node *hash_lookup(unsigned long long val)
41{
42 struct flist_head *l = &hash[hash_long(val, hash_bits)];
43 struct flist_head *entry;
44 struct node *n;
45
46 flist_for_each(entry, l) {
47 n = flist_entry(entry, struct node, list);
48 if (n->val == val)
49 return n;
50 }
51
52 return NULL;
53}
54
55static void hash_insert(unsigned long long val)
56{
57 struct flist_head *l = &hash[hash_long(val, hash_bits)];
58 struct node *n = malloc(sizeof(*n));
59
60 n->val = val;
61 n->hits = 1;
62 flist_add_tail(&n->list, l);
63}
64
65static void rb_insert(struct node *n)
66{
67 struct rb_node **p, *parent;
68
69 memset(&n->rb, 0, sizeof(n->rb));
70 p = &rb.rb_node;
71 parent = NULL;
72 while (*p) {
73 struct node *__n;
74
75 parent = *p;
76 __n = rb_entry(parent, struct node, rb);
77 if (n->hits > __n->hits)
78 p = &(*p)->rb_left;
79 else
80 p = &(*p)->rb_right;
81 }
82
83 rb_link_node(&n->rb, parent, p);
84 rb_insert_color(&n->rb, &rb);
85}
86
87static unsigned long rb_add(struct flist_head *list)
6ff38856 88{
fd6f237d
JA
89 struct flist_head *entry;
90 unsigned long ret = 0;
91 struct node *n;
92
93 flist_for_each(entry, list) {
94 n = flist_entry(entry, struct node, list);
95
96 rb_insert(n);
97 ret++;
98 }
6ff38856 99
fd6f237d
JA
100 return ret;
101}
102
103static unsigned long rb_gen(void)
104{
105 unsigned long ret = 0;
106 unsigned int i;
107
108 for (i = 0; i < hash_size; i++)
109 ret += rb_add(&hash[i]);
110
111 return ret;
6ff38856
JA
112}
113
114int main(int argc, char *argv[])
115{
116 unsigned long nranges, output_nranges;
fd6f237d
JA
117 unsigned long offset;
118 unsigned long i, j, nr_vals, cur_vals, interval;
f880b1f6 119 double *output, perc, perc_i;
6ff38856 120 struct zipf_state zs;
fd6f237d 121 struct rb_node *n;
6ff38856
JA
122 int use_zipf;
123 double val;
124
f880b1f6 125 if (argc < 3) {
6ff38856
JA
126 printf("%s: {zipf,pareto} val values [output ranges]\n", argv[0]);
127 return 1;
128 }
129
130 if (!strcmp(argv[1], "zipf"))
131 use_zipf = 1;
132 else if (!strcmp(argv[1], "pareto"))
133 use_zipf = 0;
134 else {
135 printf("Bad distribution type <%s>\n", argv[1]);
136 return 1;
137 }
138
139 val = atof(argv[2]);
f880b1f6
JA
140
141 nranges = DEF_NR;
142 output_nranges = DEF_NR_OUTPUT;
143
144 if (argc >= 4)
145 nranges = strtoul(argv[3], NULL, 10);
146 if (argc >= 5)
6ff38856 147 output_nranges = strtoul(argv[4], NULL, 10);
6ff38856 148
f880b1f6 149 printf("Generating %s distribution with %f input and %lu ranges.\n", use_zipf ? "zipf" : "pareto", val, nranges);
6ff38856
JA
150
151 if (use_zipf)
152 zipf_init(&zs, nranges, val);
153 else
154 pareto_init(&zs, nranges, val);
155
fd6f237d
JA
156 hash = malloc(hash_size * sizeof(struct flist_head));
157 for (i = 0; i < hash_size; i++)
158 INIT_FLIST_HEAD(&hash[i]);
159
160 for (nr_vals = 0, i = 0; i < nranges; i++) {
161 struct node *n;
6ff38856 162
6ff38856 163 if (use_zipf)
fd6f237d 164 offset = zipf_next(&zs);
6ff38856 165 else
fd6f237d
JA
166 offset = pareto_next(&zs);
167
168 n = hash_lookup(offset);
169 if (n)
170 n->hits++;
171 else
172 hash_insert(offset);
6ff38856 173
6ff38856
JA
174 nr_vals++;
175 }
176
fd6f237d 177 nr_vals = rb_gen();
6ff38856 178
fd6f237d 179 interval = nr_vals / output_nranges;
6ff38856
JA
180
181 output = malloc(output_nranges * sizeof(double));
182
fd6f237d
JA
183 i = j = cur_vals = 0;
184
185 n = rb_first(&rb);
186 while (n) {
187 struct node *node = rb_entry(n, struct node, rb);
188
189 if (i >= interval) {
190 output[j] = (double) (cur_vals + 1) / (double) nranges;
6ff38856
JA
191 output[j] *= 100.0;
192 j++;
fd6f237d
JA
193 cur_vals = node->hits;
194 interval += nr_vals / output_nranges;
195 } else
196 cur_vals += node->hits;
6ff38856 197
fd6f237d
JA
198 n = rb_next(n);
199 i++;
0779dfc8 200 }
6ff38856 201
f880b1f6
JA
202 perc_i = 100.0 / (double) output_nranges;
203 perc = 0.0;
204 for (i = 0; i < j; i++) {
f880b1f6 205 perc += perc_i;
fd6f237d 206 printf("Top %6.2f%%:\t%6.2f%% of hits\n", perc, output[i]);
f880b1f6 207 }
6ff38856
JA
208
209 free(output);
fd6f237d 210 free(hash);
6ff38856
JA
211 return 0;
212}