-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrandom.cpp
504 lines (450 loc) · 12.6 KB
/
random.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
//
// Copyright (c) 2005, 2006 by CodeSourcery
// Copyright (c) 2013 Stefan Seefeld
// All rights reserved.
//
// This file is part of OpenVSIP. It is made available under the
// license contained in the accompanying LICENSE.GPL file.
#include <vsip/initfin.hpp>
#include <vsip/random.hpp>
#include <vsip/support.hpp>
#include <test.hpp>
#include <cstring>
using namespace ovxx;
// C VSIPL code - the following typedefs allow this code to run
// essentially unmodified from the original source.
// This is placed in a namespace to avoid conflicting with real
// C-VSIPL if it is used as a backend.
namespace test
{
typedef double vsip_scalar_d;
typedef struct { vsip_scalar_d r, i; } vsip_cscalar_d;
typedef unsigned int vsip_scalar_ue32;
typedef unsigned int vsip_index;
struct vsip_randstate {
vsip_scalar_ue32 a; /* multiplier in LCG */
vsip_scalar_ue32 c; /* adder in LCG */
vsip_scalar_ue32 a1;
vsip_scalar_ue32 c1;
vsip_scalar_ue32 X; /* Last or initial X */
vsip_scalar_ue32 X1;
vsip_scalar_ue32 X2;
int type;
};
#define A0 1664525
#define C0 1013904223
#define A1 69069
vsip_randstate* vsip_randcreate(
vsip_index seed,
vsip_index numseqs,
vsip_index id,
bool typegen)
{
vsip_scalar_ue32 x0 = (vsip_scalar_ue32) seed;
vsip_scalar_ue32 k = (vsip_scalar_ue32) numseqs;
vsip_randstate *state = (vsip_randstate*) malloc(sizeof(vsip_randstate));
memset( state, 0, sizeof(vsip_randstate) );
if(state == NULL) return (vsip_randstate*)NULL;
state->type = (int)typegen;
if(typegen)
{ /* create non portable generator */
vsip_scalar_ue32 a;
vsip_scalar_ue32 c;
vsip_scalar_ue32 i,n,k0;
vsip_scalar_ue32 t;
for(i=0; i< id; i++)
x0 = A0 * x0 + C0;
state->X = x0; /*find the seed to start out for id */
n = 0;
k0 = k;
while((k0 % 2) == 0){
k0 = k0/2;
n++;
}
i = k - 1;
a = A0;
while(i-- >0) a *= A0; /* find a for numseqs */
c = 1; /* find c for numseqs */
t = 1;
for(i=0; i<k0; i++) t *=A0;
while(n-- >0) {
c *= (t + 1);
t *= t;
}
t = 1;
n = A0;
for(i=1; i<k0; i++){
t += n;
n *= A0;
}
c *= (t * C0);
state->a = a;
state->c = c;
} else { /* create portable generator */
vsip_scalar_ue32 c[]=
{ 3, 5, 7, 11, 13, 17, 19, 23, 29, 31,
37, 41, 43, 47, 53, 59, 61, 67, 71, 73,
79, 83, 89, 97, 101, 103, 107, 109, 113, 127,
131, 137, 139, 149, 151, 157, 163, 167, 173, 179,
181, 191, 193, 197, 199, 211, 223, 227, 229, 233,
239, 241, 251, 257, 263, 269, 271, 277, 281, 283,
293, 307, 311, 313, 317, 331, 337, 347, 349, 353,
359, 367, 373, 379, 383, 389, 397, 401, 409, 419,
421, 431, 433, 439, 443, 449, 457, 461, 463, 467,
479, 487, 491, 499, 503, 509, 521, 523, 541, 547}; /* 100 prime numbers */
vsip_scalar_ue32 c1 = c[id-1];
if(id > 1) {
vsip_scalar_ue32 a0 = A0,
c0 = C0;
vsip_scalar_ue32 mask = 1;
vsip_scalar_ue32 big = 4294967295ul;
vsip_scalar_ue32 skip = (big/k) * (id -1);
int i;
for(i=0; i<32; i++) {
if(mask & skip) {
x0 = a0 * x0 + c0;
}
c0 = (a0+1) * c0;
a0 = a0*a0;
mask <<= 1;
}
}
state->X = x0;
state->X1 = 1;
state->X2 = 1;
state->a = A0;
state->c = C0;
state->a1 = A1;
state->c1 = c1;
}
return state;
}
int
vsip_randdestroy(
vsip_randstate *state)
{
if (state != NULL) free(state);
return 0;
}
vsip_scalar_d vsip_randu_d(
vsip_randstate *state)
{
if(state->type)
{ /* nonportable generator */
vsip_scalar_ue32 a = state->a,
c = state->c,
X = state->X;
X = a * X + c;
state->X = X;
return ((vsip_scalar_d)X/4294967296.0);
} else { /* portable generator */
vsip_scalar_ue32 itemp;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
return((vsip_scalar_d)itemp/4294967296.0);
}
}
vsip_scalar_d vsip_randn_d(
vsip_randstate *state)
{
vsip_index i;
vsip_scalar_d rp;
if(state->type)
{ /* nonportable generator */
vsip_scalar_ue32 a = state->a,
c = state->c,
X = state->X;
rp = 0;
for(i=0; i<12; i++){
X = a * X + c;
rp += (vsip_scalar_d)X/4294967296.0;
}
state->X = X;
rp -= 6.0;
} else { /* portable generator */
vsip_scalar_ue32 itemp;
rp = 0;
for(i=0; i<12; i++){
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
rp += (vsip_scalar_d)itemp/4294967296.0;
}
rp = 6.0 - rp;
}
return rp;
}
vsip_cscalar_d (vsip_cmplx_d)(
vsip_scalar_d r,
vsip_scalar_d i)
{
vsip_cscalar_d z;
z.r = r;
z.i = i;
return z;
}
vsip_cscalar_d vsip_crandu_d(
vsip_randstate *state)
{
vsip_scalar_d real,imag;
if(state->type)
{ /* nonportable generator */
vsip_scalar_ue32 a = state->a,
c = state->c,
X = state->X;
X = a * X + c;
real = (vsip_scalar_d)X/4294967296.0;
X = a * X + c;
imag = (vsip_scalar_d)X/4294967296.0;
state->X = X;
} else { /* portable generator */
vsip_scalar_ue32 itemp;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
real = (vsip_scalar_d)itemp/4294967296.0;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
// imag = (vsip_scalar_d)itemp/16777216.0; !!!! error
imag = (vsip_scalar_d)itemp/4294967296.0;
}
return vsip_cmplx_d(real,imag);
}
vsip_cscalar_d vsip_crandn_d(
vsip_randstate *state)
{
vsip_scalar_d real,imag;
if(state->type)
{ /* nonportable generator */
vsip_scalar_ue32 a = state->a,
c = state->c,
X = state->X;
vsip_scalar_d t2;
X = a * X + c;
real = (vsip_scalar_d)X/4294967296.0;
X = a * X + c;
real += (vsip_scalar_d)X/4294967296.0;
X = a * X + c;
real += (vsip_scalar_d)X/4294967296.0;
X = a * X + c;
t2 = (vsip_scalar_d)X/4294967296.0;
X = a * X + c;
t2 += (vsip_scalar_d)X/4294967296.0;
X = a * X + c;
t2 += (vsip_scalar_d)X/4294967296.0;
imag = real - t2;
real = 3 - t2 - real;
state->X = X;
} else { /* portable generator */
vsip_scalar_ue32 itemp;
vsip_scalar_d t2;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
real = (vsip_scalar_d)itemp/4294967296.0;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
real += (vsip_scalar_d)itemp/4294967296.0;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
real += (vsip_scalar_d)itemp/4294967296.0;
/* end t1 */
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
t2 = (vsip_scalar_d)itemp/4294967296.0;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
t2 += (vsip_scalar_d)itemp/4294967296.0;
state->X = state->X * state->a + state->c;
state->X1 = state->X1 * state->a1 + state->c1;
itemp = state->X - state->X1;
if(state->X1 == state->X2){
state->X1++;
state->X2++;
}
t2 += (vsip_scalar_d)itemp/4294967296.0;
/* end t2 */
imag = real - t2;
real = 3 - t2 - real;
}
return vsip_cmplx_d(real,imag);
}
}; // namespace test
// end C VSIPL code
int
main(int argc, char** argv)
{
using namespace vsip;
vsipl init(argc, argv);
// Random generation tests -- Compare against C VSIPL generator.
// scalar values, portable or not, Normal or Uniform distributions
// Normal distribution, portable
{
vsip::Rand<double> rgen(0, 1);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 0 );
for ( int i = 0; i < 8; ++i )
{
double a = rgen.randn();
double b = test::vsip_randn_d( rstate );
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Normal distribution, non-portable
{
vsip::Rand<double> rgen(0, 0);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 1 );
for ( int i = 0; i < 8; ++i )
{
double a = rgen.randn();
double b = test::vsip_randn_d( rstate );
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Uniform distribution, portable
{
vsip::Rand<double> rgen(0, 1);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 0 );
for ( int i = 0; i < 8; ++i )
{
double a = rgen.randu();
double b = test::vsip_randu_d( rstate );
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Uniform distribution, non-portable
{
vsip::Rand<double> rgen(0, 0);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 1 );
for ( int i = 0; i < 8; ++i )
{
double a = rgen.randu();
double b = test::vsip_randu_d( rstate );
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Do the same for complex values
// Normal distribution, portable
{
vsip::Rand<complex<double> > rgen(0, 1);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 0 );
for ( int i = 0; i < 8; ++i )
{
complex<double> a = rgen.randn();
test::vsip_cscalar_d z = test::vsip_crandn_d( rstate );
complex<double> b(z.r, z.i);
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Normal distribution, non-portable
{
vsip::Rand<complex<double> > rgen(0, 0);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 1 );
for ( int i = 0; i < 8; ++i )
{
complex<double> a = rgen.randn();
test::vsip_cscalar_d z = test::vsip_crandn_d( rstate );
complex<double> b(z.r, z.i);
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Uniform distribution, portable
{
vsip::Rand<complex<double> > rgen(0, 1);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 0 );
for ( int i = 0; i < 8; ++i )
{
complex<double> a = rgen.randu();
test::vsip_cscalar_d z = test::vsip_crandu_d( rstate );
complex<double> b(z.r, z.i);
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Uniform distribution, non-portable
{
vsip::Rand<complex<double> > rgen(0, 0);
test::vsip_randstate *rstate;
rstate = test::vsip_randcreate( 0, 1, 1, 1 );
for ( int i = 0; i < 8; ++i )
{
complex<double> a = rgen.randu();
test::vsip_cscalar_d z = test::vsip_crandu_d( rstate );
complex<double> b(z.r, z.i);
test_assert( equal( a, b ) );
}
test::vsip_randdestroy( rstate );
}
// Vector and Matrix tests -- compare values from two different
// generators with the same starting seed, one filling a vector
// and one filling a matrix.
// Uniform
vsip::Rand<> vgen(0, 0);
vsip::Rand<>::vector_type v1 = vgen.randu(5 * 7);
vsip::Rand<> mgen(0, 0);
vsip::Rand<>::matrix_type m1 = mgen.randu(7, 5);
for ( index_type i = 0; i < m1.size(0); ++i )
for ( index_type j = 0; j < m1.size(1); ++j )
test_assert( equal( v1.get(i * m1.size(1) + j), m1.get(i, j) ) );
// Normal
vsip::Rand<>::vector_type v2 = vgen.randn(3 * 9);
vsip::Rand<>::matrix_type m2 = mgen.randn(9, 3);
for ( index_type i = 0; i < m2.size(0); ++i )
for ( index_type j = 0; j < m2.size(1); ++j )
test_assert( equal( v2.get(i * m2.size(1) + j), m2.get(i, j) ) );
return EXIT_SUCCESS;
}