45#ifndef __BASE_RANDOM_HH__
46#define __BASE_RANDOM_HH__
83 auto ptr = std::shared_ptr<Random>(
new Random(
s));
109 static_assert(
nullptr == 0x0,
"nullptr is not 0x0, Random instance tracking will fail");
129 void init(uint32_t
s);
144 rng_ptr.lock()->init(seed);
153 template <
typename T>
154 typename std::enable_if_t<std::is_integral_v<T>, T>
158 return gen() % std::numeric_limits<T>::max();
164 template <
typename T>
165 typename std::enable_if_t<std::is_floating_point_v<T>, T>
169 warn_once(
"FP random numbers are not uniformly distributed.");
171 ((T) std::numeric_limits<uint64_t>::max());
177 template <
typename T>
178 typename std::enable_if_t<std::is_integral_v<T>, T>
183 T
r =
gen() % (max - min + 1) + min;
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
Helper class to access private members of Random.
static uint64_t globalSeed
std::shared_ptr< Random > RandomPtr
static void reseedAll(uint64_t seed)
Facility to reseed all live instances and ensure future default constructed instances also use the ne...
static RandomPtr genRandom(uint32_t s)
static RandomPtr genRandom()
std::vector< std::weak_ptr< Random > > Instances
static Instances * instances
Collection of all live instances of Random to enable global reseeding.
std::enable_if_t< std::is_floating_point_v< T >, T > random()
Random & operator=(const Random &rng)=delete
Random(const Random &rng)=delete
std::enable_if_t< std::is_integral_v< T >, T > random(T min, T max)
Random & operator=(Random &&rng)=delete
Random(Random &&rng)=delete
std::enable_if_t< std::is_integral_v< T >, T > random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
const FlagsType init
This Stat is Initialized.
Copyright (c) 2024 Arm Limited All rights reserved.