The combined multiple recursive pseudorandom number generator MRG32k3a [ L'Ecuyer99a]
class mrg32k3a: internal::engine_base<mrg32k3a>{
public:
mrg32k3a (cl::sycl::queue& queue, std::uint32_t seed);
mrg32k3a (cl::sycl::queue& queue, std::initializer_list<std::uint32_t> seed);
mrg32k3a (const mrg32k3a& other);
mrg32k3a& operator=(const mrg32k3a& other);
mrg32k3a();
};
Devices supported: Host, CPU, and GPU.
mkl_sycl.hpp
The combined multiple recursive pseudorandom number generator MRG32k3a [L'Ecuyer99a].
Name |
Type |
Description |
---|---|---|
queue |
cl::sycl::queue |
Valid cl::sycl::queue, calls of the mkl::rng::generate() routine submits kernels in this queue. |
seed |
std::uint32_t / std::initializer_list<std::uint32_t> |
Initial conditions of the generator state or engine state. |
See VS Notes for detailed descriptions.