Add pareto distribution randomizer
[fio.git] / lib / zipf.h
... / ...
CommitLineData
1#ifndef FIO_ZIPF_H
2#define FIO_ZIPF_H
3
4#include "rand.h"
5
6struct zipf_state {
7 uint64_t nranges;
8 double theta;
9 double zeta2;
10 double zetan;
11 double pareto_pow;
12 struct frand_state rand;
13};
14
15void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta);
16unsigned long long zipf_next(struct zipf_state *zs);
17
18void pareto_init(struct zipf_state *zs, unsigned long nranges, double h);
19unsigned long long pareto_next(struct zipf_state *zs);
20
21#endif