Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 1 | #include <math.h> |
| 2 | #include <string.h> |
| 3 | #include <inttypes.h> |
| 4 | #include <stdio.h> |
| 5 | #include <unistd.h> |
| 6 | #include <sys/types.h> |
| 7 | #include <fcntl.h> |
| 8 | #include "ieee754.h" |
| 9 | #include "../log.h" |
| 10 | #include "zipf.h" |
| 11 | #include "../minmax.h" |
Jens Axboe | ed1860c | 2012-11-07 11:39:30 +0100 | [diff] [blame] | 12 | #include "../hash.h" |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 13 | |
Jens Axboe | 4c9060e | 2012-11-08 12:45:58 +0100 | [diff] [blame] | 14 | #define ZIPF_MAX_GEN 10000000 |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 15 | |
| 16 | static void zipf_update(struct zipf_state *zs) |
| 17 | { |
Jens Axboe | 4c9060e | 2012-11-08 12:45:58 +0100 | [diff] [blame] | 18 | unsigned long to_gen; |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 19 | unsigned int i; |
| 20 | |
Jens Axboe | 4c9060e | 2012-11-08 12:45:58 +0100 | [diff] [blame] | 21 | /* |
| 22 | * It can become very costly to generate long sequences. Just cap it at |
Jens Axboe | e483959 | 2012-11-08 13:43:21 +0100 | [diff] [blame] | 23 | * 10M max, that should be doable in 1-2s on even slow machines. |
| 24 | * Precision will take a slight hit, but nothing major. |
Jens Axboe | 4c9060e | 2012-11-08 12:45:58 +0100 | [diff] [blame] | 25 | */ |
| 26 | to_gen = min(zs->nranges, ZIPF_MAX_GEN); |
| 27 | |
| 28 | for (i = 0; i < to_gen; i++) |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 29 | zs->zetan += pow(1.0 / (double) (i + 1), zs->theta); |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 30 | } |
| 31 | |
Jens Axboe | 2316296 | 2012-11-07 19:47:47 +0100 | [diff] [blame] | 32 | static void shared_rand_init(struct zipf_state *zs, unsigned long nranges, |
| 33 | unsigned int seed) |
Jens Axboe | b2b0b75 | 2012-11-07 14:04:11 +0100 | [diff] [blame] | 34 | { |
| 35 | memset(zs, 0, sizeof(*zs)); |
| 36 | zs->nranges = nranges; |
| 37 | |
Jens Axboe | 2316296 | 2012-11-07 19:47:47 +0100 | [diff] [blame] | 38 | init_rand_seed(&zs->rand, seed); |
Jens Axboe | b2b0b75 | 2012-11-07 14:04:11 +0100 | [diff] [blame] | 39 | zs->rand_off = __rand(&zs->rand); |
| 40 | } |
| 41 | |
Jens Axboe | 2316296 | 2012-11-07 19:47:47 +0100 | [diff] [blame] | 42 | void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, |
| 43 | unsigned int seed) |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 44 | { |
Jens Axboe | 2316296 | 2012-11-07 19:47:47 +0100 | [diff] [blame] | 45 | shared_rand_init(zs, nranges, seed); |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 46 | |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 47 | zs->theta = theta; |
Jens Axboe | 1442ba1 | 2012-11-07 16:12:43 +0100 | [diff] [blame] | 48 | zs->zeta2 = pow(1.0, zs->theta) + pow(0.5, zs->theta); |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 49 | |
Jens Axboe | 4c9060e | 2012-11-08 12:45:58 +0100 | [diff] [blame] | 50 | zipf_update(zs); |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | unsigned long long zipf_next(struct zipf_state *zs) |
| 54 | { |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 55 | double alpha, eta, rand_uni, rand_z; |
| 56 | unsigned long long n = zs->nranges; |
| 57 | unsigned long long val; |
| 58 | |
| 59 | alpha = 1.0 / (1.0 - zs->theta); |
| 60 | eta = (1.0 - pow(2.0 / n, 1.0 - zs->theta)) / (1.0 - zs->zeta2 / zs->zetan); |
| 61 | |
| 62 | rand_uni = (double) __rand(&zs->rand) / (double) FRAND_MAX; |
| 63 | rand_z = rand_uni * zs->zetan; |
| 64 | |
| 65 | if (rand_z < 1.0) |
| 66 | val = 1; |
| 67 | else if (rand_z < (1.0 + pow(0.5, zs->theta))) |
| 68 | val = 2; |
| 69 | else |
| 70 | val = 1 + (unsigned long long)(n * pow(eta*rand_uni - eta + 1.0, alpha)); |
| 71 | |
Jens Axboe | a5a4fdf | 2012-11-11 08:27:24 +0100 | [diff] [blame] | 72 | return (__hash_u64(val - 1) + zs->rand_off) % zs->nranges; |
Jens Axboe | e25839d | 2012-11-06 10:49:42 +0100 | [diff] [blame] | 73 | } |
Jens Axboe | 925fee3 | 2012-11-06 13:50:32 +0100 | [diff] [blame] | 74 | |
Jens Axboe | 2316296 | 2012-11-07 19:47:47 +0100 | [diff] [blame] | 75 | void pareto_init(struct zipf_state *zs, unsigned long nranges, double h, |
| 76 | unsigned int seed) |
Jens Axboe | 925fee3 | 2012-11-06 13:50:32 +0100 | [diff] [blame] | 77 | { |
Jens Axboe | 2316296 | 2012-11-07 19:47:47 +0100 | [diff] [blame] | 78 | shared_rand_init(zs, nranges, seed); |
Jens Axboe | 925fee3 | 2012-11-06 13:50:32 +0100 | [diff] [blame] | 79 | zs->pareto_pow = log(h) / log(1.0 - h); |
Jens Axboe | 925fee3 | 2012-11-06 13:50:32 +0100 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | unsigned long long pareto_next(struct zipf_state *zs) |
| 83 | { |
| 84 | double rand = (double) __rand(&zs->rand) / (double) FRAND_MAX; |
| 85 | unsigned long long n = zs->nranges - 1; |
| 86 | |
Jens Axboe | a5a4fdf | 2012-11-11 08:27:24 +0100 | [diff] [blame] | 87 | return (__hash_u64(n * pow(rand, zs->pareto_pow)) + zs->rand_off) % zs->nranges; |
Jens Axboe | 925fee3 | 2012-11-06 13:50:32 +0100 | [diff] [blame] | 88 | } |