#include <random.hh>
|
| ~Random () |
|
void | init (uint32_t s) |
|
template<typename T > |
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 point.
|
|
template<typename T > |
std::enable_if_t< std::is_floating_point_v< T >, T > | random () |
|
template<typename T > |
std::enable_if_t< std::is_integral_v< T >, T > | random (T min, T max) |
|
Definition at line 60 of file random.hh.
◆ Instances
◆ RandomPtr
◆ ~Random()
gem5::Random::~Random |
( |
| ) |
|
◆ genRandom() [1/2]
Definition at line 68 of file random.hh.
References globalSeed, instances, and Random().
Referenced by gem5::getrandomFunc(), gem5::ruby::random_time(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), and TEST().
◆ genRandom() [2/2]
static RandomPtr gem5::Random::genRandom |
( |
uint32_t |
s | ) |
|
|
inlinestatic |
◆ init()
void gem5::Random::init |
( |
uint32_t |
s | ) |
|
◆ random()
template<typename T >
std::enable_if_t< std::is_floating_point_v< T >, T > gem5::Random::random |
( |
| ) |
|
|
inline |
◆ reseedAll()
static void gem5::Random::reseedAll |
( |
uint64_t |
seed | ) |
|
|
inlinestatic |
◆ RandomTest
◆ globalSeed
uint64_t gem5::Random::globalSeed = 5489 |
|
static |
◆ instances
Collection of all live instances of Random to enable global reseeding.
We use a pointer because the loader will initialize it to 0x0 (it is in .bss), allowing us to avoid Static Initialization Order Fiasco if static Random instances are inialized before the vector by having the constructors of Random allocate memory for the pointer. This requires that nullptr matches how the loader initializes memory
Definition at line 110 of file random.hh.
Referenced by genRandom(), genRandom(), gem5::RandomTest::getInstances(), reseedAll(), and ~Random().
The documentation for this class was generated from the following files: