gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
random.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2003-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
41/*
42 * Mersenne twister random number generator.
43 */
44
45#ifndef __BASE_RANDOM_HH__
46#define __BASE_RANDOM_HH__
47
48#include <random>
49#include <string>
50#include <type_traits>
51#include <vector>
52
53#include "base/compiler.hh"
54#include "base/logging.hh"
55#include "base/types.hh"
56
57namespace gem5
58{
59
60class Random
61{
62 friend class RandomTest;
63
64 public:
65 using RandomPtr = std::shared_ptr<Random>;
67
69 {
70 if (!instances)
71 instances = new Instances();
72
73 auto ptr = std::shared_ptr<Random>(new Random(globalSeed));
74 instances->emplace_back(ptr);
75 return ptr;
76 }
77
78 static RandomPtr genRandom(uint32_t s)
79 {
80 if (!instances)
81 instances = new Instances();
82
83 auto ptr = std::shared_ptr<Random>(new Random(s));
84 instances->emplace_back(ptr);
85 return ptr;
86 }
87
88 static uint64_t globalSeed;
89
93 std::mt19937_64 gen;
94
95 private:
109 static_assert(nullptr == 0x0, "nullptr is not 0x0, Random instance tracking will fail");
111
116 Random() = delete;
117 Random(uint32_t s);
118
119 Random(const Random& rng) = delete;
120 Random& operator=(const Random& rng) = delete;
121
122 Random(Random&& rng) = delete;
123 Random& operator=(Random&& rng) = delete;
124
125 public:
// end of api_base_utils
127 ~Random();
128
129 void init(uint32_t s);
130
136 static void reseedAll(uint64_t seed)
137 {
138 globalSeed = seed;
139
140 if (instances == nullptr)
141 return;
142
143 for (auto rng_ptr : *instances)
144 rng_ptr.lock()->init(seed);
145 }
146
153 template <typename T>
154 typename std::enable_if_t<std::is_integral_v<T>, T>
156 {
157 // [0, max_value] for integer types
158 return gen() % std::numeric_limits<T>::max();
159 }
160
164 template <typename T>
165 typename std::enable_if_t<std::is_floating_point_v<T>, T>
167 {
168 // [0, 1) for real types
169 warn_once("FP random numbers are not uniformly distributed.");
170 return ((T) gen()) /
171 ((T) std::numeric_limits<uint64_t>::max());
172 }
173
177 template <typename T>
178 typename std::enable_if_t<std::is_integral_v<T>, T>
179 random(T min, T max)
180 {
181 assert(min <= max);
182 // + 1 to handle cases where min == max
183 T r = gen() % (max - min + 1) + min;
184 return r;
185 }
186};
187
188} // namespace gem5
189
190#endif // __BASE_RANDOM_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
Helper class to access private members of Random.
static uint64_t globalSeed
Definition random.hh:88
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static void reseedAll(uint64_t seed)
Facility to reseed all live instances and ensure future default constructed instances also use the ne...
Definition random.hh:136
static RandomPtr genRandom(uint32_t s)
Definition random.hh:78
static RandomPtr genRandom()
Definition random.hh:68
std::vector< std::weak_ptr< Random > > Instances
Definition random.hh:66
static Instances * instances
Collection of all live instances of Random to enable global reseeding.
Definition random.hh:110
std::enable_if_t< std::is_floating_point_v< T >, T > random()
Definition random.hh:166
STL vector class.
Definition stl.hh:37
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)
Definition random.hh:179
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...
Definition random.hh:155
Random()=delete
std::mt19937_64 gen
Definition random.hh:93
#define warn_once(...)
Definition logging.hh:260
Bitfield< 4 > s
const FlagsType init
This Stat is Initialized.
Definition info.hh:55
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36

Generated on Mon Jan 13 2025 04:28:30 for gem5 by doxygen 1.9.8