-
Notifications
You must be signed in to change notification settings - Fork 0
/
rand_cmp.cpp
406 lines (346 loc) · 11.3 KB
/
rand_cmp.cpp
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
// compare boost rand functions for speed (not distribution test)
// random_cmp.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <conio.h>
#include <Windows.h>
#include <vector>
#include <boost/random.hpp>
#include <numeric>
using namespace std;
using namespace boost;
template <typename TResult, int _Count__ = 10>
class rresult
{
public:
std::vector<TResult> res;
std::vector<uint64_t> t1;
std::vector<uint64_t> t2;
rresult() {
res.reserve(_Count__);
t1.reserve(_Count__);
t2.reserve(_Count__);
}
};
class hdtimer
{
LARGE_INTEGER x1, x2, x3;
public:
void start()
{
QueryPerformanceCounter(&x1);
}
void lap() // :)
{
QueryPerformanceCounter(&x3);
}
void stop()
{
QueryPerformanceCounter(&x2);
}
unsigned __int64 get() const
{
return x2.QuadPart - x1.QuadPart;
}
unsigned __int64 get_lap() const
{
return x2.QuadPart - x3.QuadPart;
}
};
int _tmain(int argc, _TCHAR* argv[])
{
hdtimer x;
const int trou(100000);
rresult<int32_t, trou> v_minstd_rand;
rresult<int32_t, trou> v_minstd_rand0;
rresult<int32_t, trou> v_rand48;
rresult<int32_t, trou> v_ecuyer1988;
rresult<int32_t, trou> v_hellekalek1995;
rresult<uint32_t, trou> v_kreutzer1986;
rresult<uint32_t, trou> v_taus88;
rresult<uint32_t, trou> v_mt11213b;
rresult<uint32_t, trou> v_mt19937;
rresult<double, trou> v_lagged_fibonacci607;
rresult<double, trou> v_lagged_fibonacci44497;
rresult<int, trou> v_ranlux4;
rresult<int, trou> v_ranlux3;
for(int rl = trou; rl != 0; rl--)
{
{
x.start();
minstd_rand _minstd_rand;
_minstd_rand.seed(rl);
x.lap();
v_minstd_rand.res.push_back( _minstd_rand() );
x.stop();
v_minstd_rand.t1.push_back( x.get_lap() );
v_minstd_rand.t2.push_back( x.get() );
}
{
x.start();
minstd_rand0 _minstd_rand0;
_minstd_rand0.seed(rl);
x.lap();
v_minstd_rand0.res.push_back( _minstd_rand0() );
x.stop();
v_minstd_rand0.t1.push_back( x.get_lap() );
v_minstd_rand0.t2.push_back( x.get() );
}
{
x.start();
rand48 _rand48;
_rand48.seed((int32_t)rl);
x.lap();
v_rand48.res.push_back( _rand48() );
x.stop();
v_rand48.t1.push_back( x.get_lap() );
v_rand48.t2.push_back( x.get() );
}
{
x.start();
ecuyer1988 _ecuyer1988;
_ecuyer1988.seed();
x.lap();
v_ecuyer1988.res.push_back( _ecuyer1988() );
x.stop();
v_ecuyer1988.t1.push_back( x.get_lap() );
v_ecuyer1988.t2.push_back( x.get() );
}
{
x.start();
kreutzer1986 _kreutzer1986;
_kreutzer1986.seed(rl);
x.lap();
v_kreutzer1986.res.push_back( _kreutzer1986() );
x.stop();
v_kreutzer1986.t1.push_back( x.get_lap() );
v_kreutzer1986.t2.push_back( x.get() );
}
{
x.start();
taus88 _taus88;
_taus88.seed();
x.lap();
v_taus88.res.push_back( _taus88() );
x.stop();
v_taus88.t1.push_back( x.get_lap() );
v_taus88.t2.push_back( x.get() );
}
{
x.start();
hellekalek1995 _hellekalek1995;
_hellekalek1995.seed(rl);
x.lap();
v_hellekalek1995.res.push_back( _hellekalek1995() );
x.stop();
v_hellekalek1995.t1.push_back( x.get_lap() );
v_hellekalek1995.t2.push_back( x.get() );
}
{
x.start();
mt11213b _mt11213b;
_mt11213b.seed();
x.lap();
v_mt11213b.res.push_back( _mt11213b() );
x.stop();
v_mt11213b.t1.push_back( x.get_lap() );
v_mt11213b.t2.push_back( x.get() );
}
{
x.start();
mt19937 _mt19937;
_mt19937.seed();
x.lap();
v_mt19937.res.push_back( _mt19937() );
x.stop();
v_mt19937.t1.push_back( x.get_lap() );
v_mt19937.t2.push_back( x.get() );
}
{
x.start();
lagged_fibonacci607 _lagged_fibonacci607;
_lagged_fibonacci607.seed();
x.lap();
v_lagged_fibonacci607.res.push_back( _lagged_fibonacci607() );
x.stop();
v_lagged_fibonacci607.t1.push_back( x.get_lap() );
v_lagged_fibonacci607.t2.push_back( x.get() );
}
{
x.start();
lagged_fibonacci44497 _lagged_fibonacci44497;
_lagged_fibonacci44497.seed();
x.lap();
v_lagged_fibonacci44497.res.push_back( _lagged_fibonacci44497() );
x.stop();
v_lagged_fibonacci44497.t1.push_back( x.get_lap() );
v_lagged_fibonacci44497.t2.push_back( x.get() );
}
{
x.start();
ranlux3 _ranlux3;
_ranlux3.seed();
x.lap();
v_ranlux3.res.push_back( _ranlux3() );
x.stop();
v_ranlux3.t1.push_back( x.get_lap() );
v_ranlux3.t2.push_back( x.get() );
}
{
x.start();
ranlux4 _ranlux4;
_ranlux4.seed();
x.lap();
v_ranlux4.res.push_back( _ranlux4() );
x.stop();
v_ranlux4.t1.push_back( x.get_lap() );
v_ranlux4.t2.push_back( x.get() );
}
}
printf("==== minstd_rand ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_minstd_rand.t1.begin(), v_minstd_rand.t1.end(), 0.0f) / trou
, *std::max_element(v_minstd_rand.t1.begin(), v_minstd_rand.t1.end())
, *std::min_element(v_minstd_rand.t1.begin(), v_minstd_rand.t1.end())
, std::accumulate(v_minstd_rand.t2.begin(), v_minstd_rand.t2.end(), 0.0f) / trou
);
printf("==== minstd_rand0 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_minstd_rand0.t1.begin(), v_minstd_rand0.t1.end(), 0.0f) / trou
, *std::max_element(v_minstd_rand0.t1.begin(), v_minstd_rand0.t1.end())
, *std::min_element(v_minstd_rand0.t1.begin(), v_minstd_rand0.t1.end())
, std::accumulate(v_minstd_rand0.t2.begin(), v_minstd_rand0.t2.end(), 0.0f) / trou
);
printf("==== rand48 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_rand48.t1.begin(), v_rand48.t1.end(), 0.0f) / trou
, *std::max_element(v_rand48.t1.begin(), v_rand48.t1.end())
, *std::min_element(v_rand48.t1.begin(), v_rand48.t1.end())
, std::accumulate(v_rand48.t2.begin(), v_rand48.t2.end(), 0.0f) / trou
);
printf("==== ecuyer1988 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_ecuyer1988.t1.begin(), v_ecuyer1988.t1.end(), 0.0f) / trou
, *std::max_element(v_ecuyer1988.t1.begin(), v_ecuyer1988.t1.end())
, *std::min_element(v_ecuyer1988.t1.begin(), v_ecuyer1988.t1.end())
, std::accumulate(v_ecuyer1988.t2.begin(), v_ecuyer1988.t2.end(), 0.0f) / trou
);
printf("==== kreutzer1986 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_kreutzer1986.t1.begin(), v_kreutzer1986.t1.end(), 0.0f) / trou
, *std::max_element(v_kreutzer1986.t1.begin(), v_kreutzer1986.t1.end())
, *std::min_element(v_kreutzer1986.t1.begin(), v_kreutzer1986.t1.end())
, std::accumulate(v_kreutzer1986.t2.begin(), v_kreutzer1986.t2.end(), 0.0f) / trou
);
printf("==== taus88 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_taus88.t1.begin(), v_taus88.t1.end(), 0.0f) / trou
, *std::max_element(v_taus88.t1.begin(), v_taus88.t1.end())
, *std::min_element(v_taus88.t1.begin(), v_taus88.t1.end())
, std::accumulate(v_taus88.t2.begin(), v_taus88.t2.end(), 0.0f) / trou
);
printf("==== hellekalek1995 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_hellekalek1995.t1.begin(), v_hellekalek1995.t1.end(), 0.0f) / trou
, *std::max_element(v_hellekalek1995.t1.begin(), v_hellekalek1995.t1.end())
, *std::min_element(v_hellekalek1995.t1.begin(), v_hellekalek1995.t1.end())
, std::accumulate(v_hellekalek1995.t2.begin(), v_hellekalek1995.t2.end(), 0.0f) / trou
);
printf("==== mt11213b ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_mt11213b.t1.begin(), v_mt11213b.t1.end(), 0.0f) / trou
, *std::max_element(v_mt11213b.t1.begin(), v_mt11213b.t1.end())
, *std::min_element(v_mt11213b.t1.begin(), v_mt11213b.t1.end())
, std::accumulate(v_mt11213b.t2.begin(), v_mt11213b.t2.end(), 0.0f) / trou
);
printf("==== mt19937 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_mt19937.t1.begin(), v_mt19937.t1.end(), 0.0f) / trou
, *std::max_element(v_mt19937.t1.begin(), v_mt19937.t1.end())
, *std::min_element(v_mt19937.t1.begin(), v_mt19937.t1.end())
, std::accumulate(v_mt19937.t2.begin(), v_mt19937.t2.end(), 0.0f) / trou
);
printf("==== lagged_fibonacci607 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_lagged_fibonacci607.t1.begin(), v_lagged_fibonacci607.t1.end(), 0.0f) / trou
, *std::max_element(v_lagged_fibonacci607.t1.begin(), v_lagged_fibonacci607.t1.end())
, *std::min_element(v_lagged_fibonacci607.t1.begin(), v_lagged_fibonacci607.t1.end())
, std::accumulate(v_lagged_fibonacci607.t2.begin(), v_lagged_fibonacci607.t2.end(), 0.0f) / trou
);
printf("==== lagged_fibonacci44497 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_lagged_fibonacci44497.t1.begin(), v_lagged_fibonacci44497.t1.end(), 0.0f) / trou
, *std::max_element(v_lagged_fibonacci44497.t1.begin(), v_lagged_fibonacci44497.t1.end())
, *std::min_element(v_lagged_fibonacci44497.t1.begin(), v_lagged_fibonacci44497.t1.end())
, std::accumulate(v_lagged_fibonacci44497.t2.begin(), v_lagged_fibonacci44497.t2.end(), 0.0f) / trou
);
printf("==== ranlux3 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_ranlux3.t1.begin(), v_ranlux3.t1.end(), 0.0f) / trou
, *std::max_element(v_ranlux3.t1.begin(), v_ranlux3.t1.end())
, *std::min_element(v_ranlux3.t1.begin(), v_ranlux3.t1.end())
, std::accumulate(v_ranlux3.t2.begin(), v_ranlux3.t2.end(), 0.0f) / trou
);
printf("==== ranlux4 ====\naverage generation %.5f\nmax time %I64d\nmin time %I64d\ninitialization %.5f\n\n"
, std::accumulate(v_ranlux4.t1.begin(), v_ranlux4.t1.end(), 0.0f) / trou
, *std::max_element(v_ranlux4.t1.begin(), v_ranlux4.t1.end())
, *std::min_element(v_ranlux4.t1.begin(), v_ranlux4.t1.end())
, std::accumulate(v_ranlux4.t2.begin(), v_ranlux4.t2.end(), 0.0f) / trou
);
return 0;
}
/* ================= results ========================
==== minstd_rand ====
average generation 0.28700
max time 4
min time 0
initialization 0.41100
==== minstd_rand0 ====
average generation 0.24200
max time 2
min time 0
initialization 0.31800
==== rand48 ====
average generation 0.17500
max time 2
min time 0
initialization 0.26000
==== ecuyer1988 ====
average generation 0.13500
max time 1
min time 0
initialization 0.22200
==== kreutzer1986 ====
average generation 0.20600
max time 2
min time 0
initialization 10.27600
==== taus88 ====
average generation 0.16600
max time 1
min time 0
initialization 0.56200
==== hellekalek1995 ====
average generation 0.56700
max time 1
min time 0
initialization 0.65500
==== mt11213b ====
average generation 2.50200
max time 8
min time 2
initialization 9.87800
==== mt19937 ====
average generation 4.32600
max time 17
min time 4
initialization 17.12300
==== lagged_fibonacci607 ====
average generation 10.64900
max time 593
min time 8
initialization 93.95800
==== lagged_fibonacci44497 ====
average generation 913.64100
max time 1219
min time 751
initialization 6991.02600
==== ranlux3 ====
average generation 0.23900
max time 1
min time 0
initialization 3.52100
==== ranlux4 ====
average generation 0.25700
max time 15
min time 0
initialization 3.39600
*/