53#ifndef ROCRAND_THREEFRY2X32_20_H_
54#define ROCRAND_THREEFRY2X32_20_H_
56#include "rocrand/rocrand_threefry2_impl.h"
58#include <hip/hip_runtime.h>
60namespace rocrand_device
63class threefry2x32_20_engine :
public threefry_engine2_base<uint2, unsigned int, 20>
66 ROCRAND_DEPRECATED(
"Alias \"threefry2x32_20_state\" is deprecated. Use \"state_type\" instead.")
67 typedef threefry_engine2_base<uint2,
unsigned int, 20>::threefry_state_2 threefry2x32_20_state;
74 __forceinline__ __device__ __host__ threefry2x32_20_engine(const
unsigned long long seed = 0,
75 const
unsigned long long subsequence
77 const
unsigned long long offset = 0)
79 this->seed(seed, subsequence, offset);
87 __forceinline__ __device__ __host__
void seed(
const unsigned long long seed = 0,
88 const unsigned long long subsequence = 0,
89 const unsigned long long offset = 0)
91 m_state.counter = {0U, 0U};
92 m_state.result = {0U, 0U};
95 m_state.key = {
static_cast<unsigned int>(seed),
static_cast<unsigned int>(seed >> 32)};
97 this->discard_subsequence_impl(subsequence);
98 this->discard(offset);
99 m_state.result = this->threefry_rounds(m_state.counter, m_state.key);
106typedef rocrand_device::threefry2x32_20_engine rocrand_state_threefry2x32_20;
119__forceinline__ __device__ __host__
121 const unsigned long long subsequence,
122 const unsigned long long offset,
123 rocrand_state_threefry2x32_20* state)
125 *state = rocrand_state_threefry2x32_20(seed, subsequence, offset);
142__forceinline__ __device__ __host__
143unsigned int rocrand(rocrand_state_threefry2x32_20* state)
145 return state->next();
160__forceinline__ __device__ __host__
161uint2 rocrand2(rocrand_state_threefry2x32_20* state)
163 return state->next2();
__forceinline__ __device__ __host__ void rocrand_init(const uint4 seed, const unsigned int subsequence, rocrand_state_lfsr113 *state)
Initializes LFSR113 state.
Definition rocrand_lfsr113.h:239
__forceinline__ __device__ __host__ unsigned int rocrand(rocrand_state_lfsr113 *state)
Returns uniformly distributed random unsigned int value from [0; 2^32 - 1] range.
Definition rocrand_lfsr113.h:277