forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.h
More file actions
516 lines (397 loc) · 15.2 KB
/
random.h
File metadata and controls
516 lines (397 loc) · 15.2 KB
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
505
506
507
508
509
510
511
512
513
514
515
516
/*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#pragma once
#include <af/defines.h>
///
/// \brief Handle for random engine
///
/// This handle is used to reference the internal random engine object.
///
/// \ingroup random_mat
typedef void * af_random_engine;
#ifdef __cplusplus
namespace af
{
class array;
class dim4;
#if AF_API_VERSION >= 34
/// \brief Random Number Generation Engine Class
///
/// The \ref af::randomEngine class is used to set the type and seed of
/// random number generation engine based on \ref af::randomEngineType.
///
/// \ingroup arrayfire_class
/// \ingroup random_mat
class AFAPI randomEngine {
private:
///
/// \brief Handle to the interal random engine object
af_random_engine engine;
public:
/**
This function creates a \ref af::randomEngine object with a
\ref af::randomEngineType and a seed.
\code
// creates random engine of default type with seed = 1
randomEngine r(AF_RANDOM_ENGINE_DEFAULT, 1);
\endcode
*/
explicit randomEngine(randomEngineType typeIn = AF_RANDOM_ENGINE_DEFAULT,
unsigned long long seedIn = 0);
/**
Copy constructor for \ref af::randomEngine.
\param[in] other The input random engine object
*/
randomEngine(const randomEngine &other);
/**
Creates a copy of the random engine object from a \ref
af_random_engine handle.
\param[in] engine The input random engine object
*/
randomEngine(af_random_engine engine);
/**
\brief Destructor for \ref af::randomEngine
*/
~randomEngine();
/**
\brief Assigns the internal state of randome engine
\param[in] other The object to be assigned to the random engine
\returns the reference to this
*/
randomEngine &operator=(const randomEngine &other);
/**
\brief Sets the random type of the random engine
\param[in] type The type of the random number generator
*/
void setType(const randomEngineType type);
/**
\brief Return the random type of the random engine
\returns the \ref af::randomEngineType associated with random engine
*/
randomEngineType getType(void);
/**
\brief Sets the seed of the random engine
\param[in] seed The initializing seed of the random number generator
*/
void setSeed(const unsigned long long seed);
/**
\brief Returns the seed of the random engine
\returns the seed associated with random engine
*/
unsigned long long getSeed(void) const;
/**
\brief Returns the af_random_engine handle of this object
\returns the handle to the af_random_engine associated with this
random engine
*/
af_random_engine get(void) const;
};
#endif
#if AF_API_VERSION >= 34
/**
\param[in] dims The dimensions of the array to be generated
\param[in] ty The type of the array
\param[in] r The random engine object
\return array of size \p dims
\ingroup random_func_randu
*/
AFAPI array randu(const dim4 &dims, const dtype ty, randomEngine &r);
#endif
#if AF_API_VERSION >= 34
/**
\param[in] dims The dimensions of the array to be generated
\param[in] ty The type of the array
\param[in] r The random engine object
\return array of size \p dims
\ingroup random_func_randn
*/
AFAPI array randn(const dim4 &dims, const dtype ty, randomEngine &r);
#endif
/**
\param[in] dims The dimensions of the array to be generated
\param[in] ty The type of the array
\return array of size \p dims
\ingroup random_func_randu
*/
AFAPI array randu(const dim4 &dims, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] ty The type of the array
\return array of size \p d0
\ingroup random_func_randu
*/
AFAPI array randu(const dim_t d0, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] d1 The size of the second dimension
\param[in] ty The type of the array
\return array of size \p d0 x \p d1
\ingroup random_func_randu
*/
AFAPI array randu(const dim_t d0,
const dim_t d1, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] d1 The size of the second dimension
\param[in] d2 The size of the third dimension
\param[in] ty The type of the array
\return array of size \p d0 x \p d1 x \p d2
\ingroup random_func_randu
*/
AFAPI array randu(const dim_t d0,
const dim_t d1, const dim_t d2, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] d1 The size of the second dimension
\param[in] d2 The size of the third dimension
\param[in] d3 The size of the fourth dimension
\param[in] ty The type of the array
\return array of size \p d0 x \p d1 x \p d2 x \p d3
\ingroup random_func_randu
*/
AFAPI array randu(const dim_t d0,
const dim_t d1, const dim_t d2,
const dim_t d3, const dtype ty=f32);
/**
\param[in] dims The dimensions of the array to be generated
\param[in] ty The type of the array
\return array of size \p dims
\ingroup random_func_randn
*/
AFAPI array randn(const dim4 &dims, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] ty The type of the array
\return array of size \p d0
\ingroup random_func_randn
*/
AFAPI array randn(const dim_t d0, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] d1 The size of the second dimension
\param[in] ty The type of the array
\return array of size \p d0 x \p d1
\ingroup random_func_randn
*/
AFAPI array randn(const dim_t d0,
const dim_t d1, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] d1 The size of the second dimension
\param[in] d2 The size of the third dimension
\param[in] ty The type of the array
\return array of size \p d0 x \p d1 x \p d2
\ingroup random_func_randn
*/
AFAPI array randn(const dim_t d0,
const dim_t d1, const dim_t d2, const dtype ty=f32);
/**
\param[in] d0 The size of the first dimension
\param[in] d1 The size of the second dimension
\param[in] d2 The size of the third dimension
\param[in] d3 The size of the fourth dimension
\param[in] ty The type of the array
\return array of size \p d0 x \p d1 x \p d2 x \p d3
\ingroup random_func_randn
*/
AFAPI array randn(const dim_t d0,
const dim_t d1, const dim_t d2,
const dim_t d3, const dtype ty=f32);
#if AF_API_VERSION >= 34
/**
\param[in] rtype The type of the random number generator
\ingroup random_func_set_default_engine
*/
AFAPI void setDefaultRandomEngineType(randomEngineType rtype);
#endif
#if AF_API_VERSION >= 34
/**
\returns the \ref af::randomEngine object for the default random engine
\ingroup random_func_get_default_engine
*/
AFAPI randomEngine getDefaultRandomEngine(void);
#endif
/**
\brief Sets the seed of the default random number generator
\param[in] seed A 64 bit unsigned integer
\ingroup random_func_set_seed
*/
AFAPI void setSeed(const unsigned long long seed);
/**
\brief Gets the seed of the default random number generator
\returns seed A 64 bit unsigned integer
\ingroup random_func_get_seed
*/
AFAPI unsigned long long getSeed();
}
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if AF_API_VERSION >= 34
/**
C Interface for creating random engine
\param[out] engine The pointer to the returned random engine object
\param[in] rtype The type of the random number generator
\param[in] seed The initializing seed of the random number generator
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_create_random_engine(af_random_engine *engine,
af_random_engine_type rtype,
unsigned long long seed);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for retaining random engine
\param[out] out The pointer to the returned random engine object
\param[in] engine The random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_retain_random_engine(af_random_engine *out,
const af_random_engine engine);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for changing random engine type
\param[in] engine The random engine object
\param[in] rtype The type of the random number generator
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_random_engine_set_type(af_random_engine *engine,
const af_random_engine_type rtype);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for getting random engine type
\param[out] rtype The type of the random number generator
\param[in] engine The random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_random_engine_get_type(af_random_engine_type *rtype,
const af_random_engine engine);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for creating an array of uniform numbers using a random
engine
\param[out] out The pointer to the returned object.
\param[in] ndims The number of dimensions read from the \p dims
parameter
\param[in] dims A C pointer with \p ndims elements. Each value
represents the size of that dimension
\param[in] type The type of the \ref af_array object
\param[in] engine The random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_randu
*/
AFAPI af_err af_random_uniform(af_array *out, const unsigned ndims,
const dim_t * const dims, const af_dtype type,
af_random_engine engine);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for creating an array of normal numbers using a random engine
\param[out] out The pointer to the returned object.
\param[in] ndims The number of dimensions read from the \p dims
parameter
\param[in] dims A C pointer with \p ndims elements. Each value
represents the size of that dimension
\param[in] type The type of the \ref af_array object
\param[in] engine The random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_randn
*/
AFAPI af_err af_random_normal(af_array *out, const unsigned ndims,
const dim_t * const dims, const af_dtype type,
af_random_engine engine);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for setting the seed of a random engine
\param[out] engine The pointer to the returned random engine object
\param[in] seed The initializing seed of the random number generator
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_random_engine_set_seed(af_random_engine *engine,
const unsigned long long seed);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for getting the default random engine
\param[out] engine The pointer to returned default random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_get_default_engine
*/
AFAPI af_err af_get_default_random_engine(af_random_engine *engine);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for setting the type of the default random engine
\param[in] rtype The type of the random number generator
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_set_default_engine
*/
AFAPI af_err af_set_default_random_engine_type(const af_random_engine_type rtype);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for getting the seed of a random engine
\param[out] seed The pointer to the returned seed.
\param[in] engine The random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_random_engine_get_seed(unsigned long long * const seed,
af_random_engine engine);
#endif
#if AF_API_VERSION >= 34
/**
C Interface for releasing random engine
\param[in] engine The random engine object
\returns \ref AF_SUCCESS if the execution completes properly
\ingroup random_func_random_engine
*/
AFAPI af_err af_release_random_engine(af_random_engine engine);
#endif
/**
\param[out] out The generated array
\param[in] ndims Size of dimension array \p dims
\param[in] dims The array containing sizes of the dimension
\param[in] type The type of array to generate
\ingroup random_func_randu
*/
AFAPI af_err af_randu(af_array *out, const unsigned ndims,
const dim_t * const dims, const af_dtype type);
/**
\param[out] out The generated array
\param[in] ndims Size of dimension array \p dims
\param[in] dims The array containing sizes of the dimension
\param[in] type The type of array to generate
\ingroup random_func_randn
*/
AFAPI af_err af_randn(af_array *out, const unsigned ndims,
const dim_t * const dims, const af_dtype type);
/**
\param[in] seed A 64 bit unsigned integer
\ingroup random_func_set_seed
*/
AFAPI af_err af_set_seed(const unsigned long long seed);
/**
\param[out] seed A 64 bit unsigned integer
\ingroup random_func_get_seed
*/
AFAPI af_err af_get_seed(unsigned long long *seed);
#ifdef __cplusplus
}
#endif