gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Histogram.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
30 
31 #include <cmath>
32 #include <iomanip>
33 
34 #include "base/intmath.hh"
35 
36 Histogram::Histogram(int binsize, uint32_t bins)
37 {
38  m_binsize = binsize;
39  clear(bins);
40 }
41 
43 {
44 }
45 
46 void
47 Histogram::clear(int binsize, uint32_t bins)
48 {
49  m_binsize = binsize;
50  clear(bins);
51 }
52 
53 void
54 Histogram::clear(uint32_t bins)
55 {
56  m_largest_bin = 0;
57  m_max = 0;
58  m_data.resize(bins);
59  for (uint32_t i = 0; i < bins; i++) {
60  m_data[i] = 0;
61  }
62 
63  m_count = 0;
64  m_max = 0;
65  m_sumSamples = 0;
67 }
68 
69 void
71 {
72  assert(m_binsize != -1);
73  uint32_t t_bins = m_data.size();
74 
75  for (uint32_t i = 0; i < t_bins/2; i++) {
76  m_data[i] = m_data[i*2] + m_data[i*2 + 1];
77  }
78  for (uint32_t i = t_bins/2; i < t_bins; i++) {
79  m_data[i] = 0;
80  }
81 
82  m_binsize *= 2;
83 }
84 
85 void
86 Histogram::add(int64_t value)
87 {
88  assert(value >= 0);
89  m_max = std::max(m_max, value);
90  m_count++;
91 
92  m_sumSamples += value;
93  m_sumSquaredSamples += (value*value);
94 
95  uint32_t index;
96 
97  if (m_binsize == -1) {
98  // This is a log base 2 histogram
99  if (value == 0) {
100  index = 0;
101  } else {
102  index = floorLog2(value) + 1;
103  if (index >= m_data.size()) {
104  index = m_data.size() - 1;
105  }
106  }
107  } else {
108  // This is a linear histogram
109  uint32_t t_bins = m_data.size();
110 
111  while (m_max >= (t_bins * m_binsize)) doubleBinSize();
112  index = value/m_binsize;
113  }
114 
115  assert(index < m_data.size());
116  m_data[index]++;
117  m_largest_bin = std::max(m_largest_bin, index);
118 }
119 
120 void
122 {
123  uint32_t t_bins = m_data.size();
124 
125  if (hist.getBins() != t_bins) {
126  if (m_count == 0) {
127  m_data.resize(hist.getBins());
128  } else {
129  fatal("Histograms with different number of bins "
130  "cannot be combined!");
131  }
132  }
133 
134  m_max = std::max(m_max, hist.getMax());
135  m_count += hist.size();
136  m_sumSamples += hist.getTotal();
138 
139  // Both histograms are log base 2.
140  if (hist.getBinSize() == -1 && m_binsize == -1) {
141  for (int j = 0; j < hist.getData(0); j++) {
142  add(0);
143  }
144 
145  for (uint32_t i = 1; i < t_bins; i++) {
146  for (int j = 0; j < hist.getData(i); j++) {
147  add(1<<(i-1)); // account for the + 1 index
148  }
149  }
150  } else if (hist.getBinSize() >= 1 && m_binsize >= 1) {
151  // Both the histogram are linear.
152  // We are assuming that the two histograms have the same
153  // minimum value that they can store.
154 
155  while (m_binsize > hist.getBinSize()) hist.doubleBinSize();
156  while (hist.getBinSize() > m_binsize) doubleBinSize();
157 
158  assert(m_binsize == hist.getBinSize());
159 
160  for (uint32_t i = 0; i < t_bins; i++) {
161  m_data[i] += hist.getData(i);
162 
163  if (m_data[i] > 0) m_largest_bin = i;
164  }
165  } else {
166  fatal("Don't know how to combine log and linear histograms!");
167  }
168 }
169 
170 // Computation of standard deviation of samples a1, a2, ... aN
171 // variance = [SUM {ai^2} - (SUM {ai})^2/N]/(N-1)
172 // std deviation equals square root of variance
173 double
175 {
176  if (m_count <= 1)
177  return 0.0;
178 
179  double variance =
181  / (m_count - 1);
182  return sqrt(variance);
183 }
184 
185 void
186 Histogram::print(std::ostream& out) const
187 {
188  printWithMultiplier(out, 1.0);
189 }
190 
191 void
192 Histogram::printPercent(std::ostream& out) const
193 {
194  if (m_count == 0) {
195  printWithMultiplier(out, 0.0);
196  } else {
197  printWithMultiplier(out, 100.0 / double(m_count));
198  }
199 }
200 
201 void
202 Histogram::printWithMultiplier(std::ostream& out, double multiplier) const
203 {
204  if (m_binsize == -1) {
205  out << "[binsize: log2 ";
206  } else {
207  out << "[binsize: " << m_binsize << " ";
208  }
209  out << "max: " << m_max << " ";
210  out << "count: " << m_count << " ";
211  // out << "total: " << m_sumSamples << " ";
212  if (m_count == 0) {
213  out << "average: NaN |";
214  out << "standard deviation: NaN |";
215  } else {
216  out << "average: " << std::setw(5) << ((double) m_sumSamples)/m_count
217  << " | ";
218  out << "standard deviation: " << getStandardDeviation() << " |";
219  }
220 
221  for (uint32_t i = 0; i <= m_largest_bin; i++) {
222  if (multiplier == 1.0) {
223  out << " " << m_data[i];
224  } else {
225  out << " " << double(m_data[i]) * multiplier;
226  }
227  }
228  out << " ]";
229 }
230 
231 bool
232 node_less_then_eq(const Histogram* n1, const Histogram* n2)
233 {
234  return (n1->size() > n2->size());
235 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Histogram::getTotal
int64_t getTotal() const
Definition: Histogram.hh:54
Histogram::getBins
uint32_t getBins() const
Definition: Histogram.hh:52
Histogram::getData
uint64_t getData(int index) const
Definition: Histogram.hh:56
Histogram.hh
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
Histogram::getBinSize
int getBinSize() const
Definition: Histogram.hh:53
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Histogram::doubleBinSize
void doubleBinSize()
Definition: Histogram.cc:70
Histogram::getMax
int64_t getMax() const
Definition: Histogram.hh:57
Histogram::m_sumSamples
int64_t m_sumSamples
Definition: Histogram.hh:70
Histogram::getSquaredTotal
uint64_t getSquaredTotal() const
Definition: Histogram.hh:55
Histogram::printPercent
void printPercent(std::ostream &out) const
Definition: Histogram.cc:192
Histogram::m_max
int64_t m_max
Definition: Histogram.hh:65
Histogram::m_data
std::vector< uint64_t > m_data
Definition: Histogram.hh:64
ArmISA::j
Bitfield< 24 > j
Definition: miscregs_types.hh:54
Histogram::clear
void clear()
Definition: Histogram.hh:47
Histogram::Histogram
Histogram(int binsize=1, uint32_t bins=50)
Definition: Histogram.cc:36
Histogram::size
uint64_t size() const
Definition: Histogram.hh:51
Histogram::m_binsize
int m_binsize
Definition: Histogram.hh:67
Histogram::m_count
uint64_t m_count
Definition: Histogram.hh:66
Histogram::m_largest_bin
uint32_t m_largest_bin
Definition: Histogram.hh:68
Histogram::~Histogram
~Histogram()
Definition: Histogram.cc:42
Histogram::m_sumSquaredSamples
uint64_t m_sumSquaredSamples
Definition: Histogram.hh:71
Histogram::print
void print(std::ostream &out) const
Definition: Histogram.cc:186
floorLog2
std::enable_if_t< std::is_integral< T >::value, int > floorLog2(T x)
Definition: intmath.hh:63
Histogram
Definition: Histogram.hh:37
Histogram::printWithMultiplier
void printWithMultiplier(std::ostream &out, double multiplier) const
Definition: Histogram.cc:202
Histogram::getStandardDeviation
double getStandardDeviation() const
Definition: Histogram.cc:174
intmath.hh
node_less_then_eq
bool node_less_then_eq(const Histogram *n1, const Histogram *n2)
Definition: Histogram.cc:232
Histogram::add
void add(int64_t value)
Definition: Histogram.cc:86

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17