oneapi::mkl::rng::device::generate¶
Entry point to obtain random numbers from a given engine with proper statistics of a given distribution.
API¶
Syntax¶
template<typename Distr, typename Engine>
auto generate(Distr& distr, Engine& engine) ->
typename std::conditional<Engine::vec_size == 1, typename Distr::result_type,
sycl::vec<typename Distr::result_type, Engine::vec_size>>::type
Include Files¶
oneapi/mkl/rng/device.hpp
Input Parameters¶
Name |
Type |
Description |
---|---|---|
distr |
Distr& |
Distribution object. See Device Distributions for des. |
engine |
Engine& |
Engine object. See Device Engines (Basic Random Number Generators) for details. |
Output Parameters¶
Name |
Type |
Description |
---|---|---|
result |
|
Function returns |