mmc_rand_sfmt.h
Go to the documentation of this file.
1 /***************************************************************************/
32 /***************************************************************************/
38 #ifndef _MCEXTREME_SFMT_RAND_H
39 #define _MCEXTREME_SFMT_RAND_H
40 
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <math.h>
44 
45 #define __device__ static inline
46 
47 typedef unsigned int RandType;
48 typedef unsigned int uint;
49 
50 #define MCX_RNG_NAME "xorshift128+ RNG"
51 
52 #define RAND_BUF_LEN 1248 //buffer length
53 #define RAND_SEED_WORD_LEN 2 //
54 #define MEXP 19937
55 
56 __device__ void rng_init(RandType t[RAND_BUF_LEN], RandType tnew[RAND_BUF_LEN], uint* n_seed, int idx);
57 
58 __device__ void rand_need_more(RandType t[RAND_BUF_LEN], RandType tbuf[RAND_BUF_LEN]);
59 // generate [0,1] random number for the next scattering length
60 __device__ float rand_next_scatlen(RandType t[RAND_BUF_LEN]);
61 // generate [0,1] random number for the next arimuthal angle
62 __device__ float rand_next_aangle(RandType t[RAND_BUF_LEN]);
63 // generate random number for the next zenith angle
64 __device__ float rand_next_zangle(RandType t[RAND_BUF_LEN]);
65 __device__ float rand_next_reflect(RandType t[RAND_BUF_LEN]);
66 __device__ float rand_do_roulette(RandType t[RAND_BUF_LEN]);
67 
68 #ifdef MMC_USE_SSE_MATH
69  __device__ void rand_next_aangle_sincos(RandType t[RAND_BUF_LEN], float* si, float* co);
70  __device__ float rand_next_scatlen_ps(RandType t[RAND_BUF_LEN]);
71 #endif
72 
73 #endif
__device__ float rand_do_roulette(RandType t[RAND_BUF_LEN])
generate random number for the next zenith angle
Definition: mmc_rand_common.h:62
__device__ float rand_next_scatlen(RandType t[RAND_BUF_LEN])
generate [0,1] random number for the next scattering length
Definition: mmc_rand_common.h:46
__device__ float rand_next_zangle(RandType t[RAND_BUF_LEN])
generate random number for the next zenith angle
Definition: mmc_rand_common.h:54
__device__ float rand_next_reflect(RandType t[RAND_BUF_LEN])
generate random number for reflection test
Definition: mmc_rand_common.h:58
__device__ float rand_next_aangle(RandType t[RAND_BUF_LEN])
generate [0,1] random number for the next arimuthal angle
Definition: mmc_rand_common.h:50