Intel® oneAPI Math Kernel Library (oneMKL) - Data Parallel C++ Developer Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-09B960D2-D81A-4345-80FA-F51DE1394465
Visible to Intel only — GUID: GUID-09B960D2-D81A-4345-80FA-F51DE1394465
oneapi::mkl::rng::nondeterministic
Description
Non-deterministic random number generator (RDRAND-based) [AVX], [IntelSWMan].
API
Syntax
class nondeterministic { public: nondeterministic(sycl::queue queue); nondeterministic(const nondeterministic& other); nondeterministic(nondeterministic&& other); nondeterministic& operator=(const nondeterministic& other); nondeterministic& operator=(nondeterministic&& other); ~nondeterministic(); };
Devices supported: CPU.
Include Files
oneapi/mkl/rng.hpp
Input Parameters
Name |
Type |
Description |
---|---|---|
queue |
sycl::queue |
Valid sycl::queue, calls of oneapi::mkl::rng::generate() routine submits kernels in this queue. |
See VS Notes for the detailed descriptions.