Visible to Intel only — GUID: GUID-C4DF195E-F2A8-4B86-BD8C-130A1E2470FD
Visible to Intel only — GUID: GUID-C4DF195E-F2A8-4B86-BD8C-130A1E2470FD
bits
Generates bits of underlying engine (BRNG) integer sequence.
Description
The bits class object is used to generate integer random values. Each integer can be treated as a vector of several bits. In a truly random generator, these bits are random, while in pseudorandom generators this randomness can be violated. See VS Notes for details.
API
Syntax
namespace oneapi::mkl::rng::device { template<typename UIntType = std::uint32_t> class bits { using result_type = UIntType; }; }
Include Files
oneapi/mkl/rng/device.hpp
Template Parameters
typename UIntType = std::uint32_t |
Type of the produced values. The specific values are as follows:
|