onemkl::rng::mrg32k3a¶
The combined multiple recursive pseudorandom number generator MRG32k3a [ L’Ecuyer99a]
Syntax
class mrg32k3a: internal::engine_base<mrg32k3a>{
public:
mrg32k3a (cl::sycl::queue& queue, std::initializer_list<std::uint32_t> seed)
mrg32k3a (const mrg32k3a& other)
mrg32k3a& operator=(const mrg32k3a& other)
mrg32k3a()
}
Include Files
mkl_sycl.hpp
Description
The combined multiple recursive pseudorandom number generator MRG32k3a [L’Ecuyer99a].
Input Parameters
Name |
Type |
Description |
---|---|---|
queue |
cl::sycl::queue |
Valid cl::sycl::queue, calls of the onemkl::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.
Parent topic: Engines (Basic Random Number Generators)