.. _oneapi-mkl-rng-nondeterministic: oneapi::mkl::rng::nondeterministic ================================== .. contents:: :local: :depth: 1 Description *********** Non-deterministic random number generator (RDRAND-based) :ref:`[AVX] `, :ref:`[IntelSWMan] `. API *** Syntax ------ .. code-block:: cpp 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: Host and CPU. Include Files ------------- - ``oneapi/mkl/rng.hpp`` Input Parameters ---------------- .. tabularcolumns:: |\Y{0.2}|\Y{0.4}|\Y{0.4}| .. list-table:: :header-rows: 1 * - Name - Type - Description * - queue - ``sycl::queue`` - Valid ``sycl::queue``, calls of ``oneapi::mkl::rng::generate()`` routine submits kernels in this queue. See :ref:`VS Notes ` for the detailed descriptions.