gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
storage.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 Daniel R. Carvalho
3  * Copyright (c) 2003-2005 The Regents of The University of Michigan
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef __BASE_STATS_STORAGE_HH__
31 #define __BASE_STATS_STORAGE_HH__
32 
33 #include <cassert>
34 #include <cmath>
35 
36 #include "base/cast.hh"
37 #include "base/logging.hh"
38 #include "base/stats/info.hh"
39 #include "base/stats/types.hh"
40 // For curTick().
41 #include "sim/core.hh"
42 
43 namespace Stats {
44 
46 {
47  virtual ~StorageParams() = default;
48 };
49 
53 class StatStor
54 {
55  private:
58 
59  public:
60  struct Params : public StorageParams {};
61 
66  StatStor(Info *info)
67  : data(Counter())
68  { }
69 
74  void set(Counter val) { data = val; }
75 
80  void inc(Counter val) { data += val; }
81 
86  void dec(Counter val) { data -= val; }
87 
92  Counter value() const { return data; }
93 
98  Result result() const { return (Result)data; }
99 
103  void prepare(Info *info) { }
104 
108  void reset(Info *info) { data = Counter(); }
109 
113  bool zero() const { return data == Counter(); }
114 };
115 
123 class AvgStor
124 {
125  private:
131  mutable Result total;
133  mutable Tick last;
134 
135  public:
136  struct Params : public StorageParams {};
137 
141  AvgStor(Info *info)
142  : current(0), lastReset(0), total(0), last(0)
143  { }
144 
150  void
152  {
153  total += current * (curTick() - last);
154  last = curTick();
155  current = val;
156  }
157 
162  void inc(Counter val) { set(current + val); }
163 
168  void dec(Counter val) { set(current - val); }
169 
174  Counter value() const { return current; }
175 
180  Result
181  result() const
182  {
183  assert(last == curTick());
184  return (Result)(total + current) / (Result)(curTick() - lastReset + 1);
185  }
186 
190  bool zero() const { return total == 0.0; }
191 
195  void
196  prepare(Info *info)
197  {
198  total += current * (curTick() - last);
199  last = curTick();
200  }
201 
205  void
206  reset(Info *info)
207  {
208  total = 0.0;
209  last = curTick();
210  lastReset = curTick();
211  }
212 
213 };
214 
216 struct DistParams : public StorageParams
217 {
218  const DistType type;
220 };
221 
229 class DistStor
230 {
231  private:
238 
255 
256  public:
258  struct Params : public DistParams
259  {
268 
269  Params(Counter _min, Counter _max, Counter _bucket_size)
270  : DistParams(Dist), min(_min), max(_max), bucket_size(_bucket_size),
271  buckets(0)
272  {
273  fatal_if(bucket_size <= 0,
274  "Bucket size (%f) must be greater than zero", bucket_size);
275  warn_if(std::floor((max - min + 1.0) / bucket_size) !=
276  std::ceil((max - min + 1.0) / bucket_size),
277  "Bucket size (%f) does not divide range [%f:%f] into equal-" \
278  "sized buckets. Rounding up.", bucket_size, min + 1.0, max);
279 
280  buckets = std::ceil((max - min + 1.0) / bucket_size);
281  }
282  };
283 
284  DistStor(Info *info)
285  : cvec(safe_cast<const Params *>(info->storageParams)->buckets)
286  {
287  reset(info);
288  }
289 
295  void sample(Counter val, int number);
296 
301  size_type size() const { return cvec.size(); }
302 
307  bool
308  zero() const
309  {
310  return samples == Counter();
311  }
312 
313  void
315  {
316  const Params *params = safe_cast<const Params *>(info->storageParams);
317 
318  assert(params->type == Dist);
319  data.type = params->type;
320  data.min = params->min;
321  data.max = params->max;
322  data.bucket_size = params->bucket_size;
323 
324  data.min_val = (min_val == CounterLimits::max()) ? 0 : min_val;
325  data.max_val = (max_val == CounterLimits::min()) ? 0 : max_val;
326  data.underflow = underflow;
327  data.overflow = overflow;
328 
329  data.cvec.resize(params->buckets);
330  for (off_type i = 0; i < params->buckets; ++i)
331  data.cvec[i] = cvec[i];
332 
333  data.sum = sum;
334  data.squares = squares;
335  data.samples = samples;
336  }
337 
341  void
342  reset(Info *info)
343  {
344  const Params *params = safe_cast<const Params *>(info->storageParams);
345  min_track = params->min;
346  max_track = params->max;
347  bucket_size = params->bucket_size;
348 
349  min_val = CounterLimits::max();
350  max_val = CounterLimits::min();
351  underflow = Counter();
352  overflow = Counter();
353 
354  size_type size = cvec.size();
355  for (off_type i = 0; i < size; ++i)
356  cvec[i] = Counter();
357 
358  sum = Counter();
359  squares = Counter();
360  samples = Counter();
361  }
362 };
363 
395 class HistStor
396 {
397  private:
404 
415 
425  void growUp();
426 
438  void growOut();
439 
452  void growDown();
453 
454  public:
456  struct Params : public DistParams
457  {
460 
461  Params(size_type _buckets)
462  : DistParams(Hist)
463  {
464  fatal_if(_buckets < 2,
465  "There must be at least two buckets in a histogram");
466  buckets = _buckets;
467  }
468  };
469 
470  HistStor(Info *info)
471  : cvec(safe_cast<const Params *>(info->storageParams)->buckets)
472  {
473  reset(info);
474  }
475 
480  void add(HistStor *other);
481 
487  void sample(Counter val, int number);
488 
493  size_type size() const { return cvec.size(); }
494 
499  bool
500  zero() const
501  {
502  return samples == Counter();
503  }
504 
505  void
507  {
508  const Params *params = safe_cast<const Params *>(info->storageParams);
509 
510  assert(params->type == Hist);
511  data.type = params->type;
512  data.min = min_bucket;
513  data.max = max_bucket + bucket_size - 1;
514  data.bucket_size = bucket_size;
515 
516  data.min_val = min_bucket;
517  data.max_val = max_bucket;
518 
519  int buckets = params->buckets;
520  data.cvec.resize(buckets);
521  for (off_type i = 0; i < buckets; ++i)
522  data.cvec[i] = cvec[i];
523 
524  data.sum = sum;
525  data.logs = logs;
526  data.squares = squares;
527  data.samples = samples;
528  }
529 
533  void
534  reset(Info *info)
535  {
536  const Params *params = safe_cast<const Params *>(info->storageParams);
537  min_bucket = 0;
538  max_bucket = params->buckets - 1;
539  bucket_size = 1;
540 
541  size_type size = cvec.size();
542  for (off_type i = 0; i < size; ++i)
543  cvec[i] = Counter();
544 
545  sum = Counter();
546  squares = Counter();
547  samples = Counter();
548  logs = Counter();
549  }
550 };
551 
557 {
558  private:
565 
566  public:
567  struct Params : public DistParams
568  {
570  };
571 
577  { }
578 
586  void
587  sample(Counter val, int number)
588  {
589  sum += val * number;
590  squares += val * val * number;
591  samples += number;
592  }
593 
598  size_type size() const { return 1; }
599 
604  bool zero() const { return samples == Counter(); }
605 
606  void
608  {
609  const Params *params = safe_cast<const Params *>(info->storageParams);
610 
611  assert(params->type == Deviation);
612  data.type = params->type;
613  data.sum = sum;
614  data.squares = squares;
615  data.samples = samples;
616  }
617 
621  void
622  reset(Info *info)
623  {
624  sum = Counter();
625  squares = Counter();
626  samples = Counter();
627  }
628 };
629 
635 {
636  private:
641 
642  public:
643  struct Params : public DistParams
644  {
646  };
647 
652  : sum(Counter()), squares(Counter())
653  {}
654 
661  void
662  sample(Counter val, int number)
663  {
664  sum += val * number;
665  squares += val * val * number;
666  }
667 
672  size_type size() const { return 1; }
673 
678  bool zero() const { return sum == Counter(); }
679 
680  void
682  {
683  const Params *params = safe_cast<const Params *>(info->storageParams);
684 
685  assert(params->type == Deviation);
686  data.type = params->type;
687  data.sum = sum;
688  data.squares = squares;
689  data.samples = curTick();
690  }
691 
695  void
696  reset(Info *info)
697  {
698  sum = Counter();
699  squares = Counter();
700  }
701 };
702 
711 {
712  private:
717 
718  public:
720  struct Params : public DistParams
721  {
723  };
724 
726  {
727  reset(info);
728  }
729 
735  void
736  sample(Counter val, int number)
737  {
738  cmap[val] += number;
739  samples += number;
740  }
741 
746  size_type size() const { return cmap.size(); }
747 
752  bool
753  zero() const
754  {
755  return samples == Counter();
756  }
757 
758  void
760  {
761  MCounter::iterator it;
762  data.cmap.clear();
763  for (it = cmap.begin(); it != cmap.end(); it++) {
764  data.cmap[(*it).first] = (*it).second;
765  }
766 
767  data.samples = samples;
768  }
769 
773  void
774  reset(Info *info)
775  {
776  cmap.clear();
777  samples = 0;
778  }
779 };
780 
781 } // namespace Stats
782 
783 #endif // __BASE_STATS_STORAGE_HH__
Stats::HistStor::growUp
void growUp()
Given a bucket size B, and a range of values [0, N], this function doubles the bucket size to double ...
Definition: storage.cc:150
Stats::AvgStor::last
Tick last
The tick that current last changed.
Definition: storage.hh:133
Stats::AvgStor::AvgStor
AvgStor(Info *info)
Build and initializes this stat storage.
Definition: storage.hh:141
types.hh
Stats::SampleStor::Params::Params
Params()
Definition: storage.hh:569
Stats::Deviation
@ Deviation
Definition: info.hh:176
Stats::SampleStor::SampleStor
SampleStor(Info *info)
Create and initialize this storage.
Definition: storage.hh:575
Stats::AvgStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:206
Stats::AvgStor::dec
void dec(Counter val)
Deccrement the current count by the provided value, calls set.
Definition: storage.hh:168
Stats::SampleStor::zero
bool zero() const
Return true if no samples have been added.
Definition: storage.hh:604
data
const char data[]
Definition: circlebuf.test.cc:47
Stats::AvgStor::prepare
void prepare(Info *info)
Prepare stat data for dumping or serialization.
Definition: storage.hh:196
Stats::AvgStor::Params
Definition: storage.hh:136
Stats::SparseHistData
Data structure of sparse histogram.
Definition: info.hh:247
Stats::DistParams
The parameters for a distribution stat.
Definition: storage.hh:216
Stats::DistStor::Params::min
Counter min
The minimum value to track.
Definition: storage.hh:261
Stats::SparseHistStor::Params::Params
Params()
Definition: storage.hh:722
Stats::AvgStor
Templatized storage and interface to a per-tick average stat.
Definition: storage.hh:123
Stats::HistStor::cvec
VCounter cvec
Counter for each bucket.
Definition: storage.hh:414
Stats::off_type
unsigned int off_type
Definition: types.hh:55
Stats::AvgStor::lastReset
Tick lastReset
The tick of the last reset.
Definition: storage.hh:129
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Stats::HistStor
Templatized storage and interface for a histogram stat.
Definition: storage.hh:395
Stats::HistStor::Params::buckets
size_type buckets
The number of buckets.
Definition: storage.hh:459
Stats::DistParams::DistParams
DistParams(DistType t)
Definition: storage.hh:219
Stats::AvgStor::result
Result result() const
Return the current average.
Definition: storage.hh:181
Stats::DistStor::size
size_type size() const
Return the number of buckets in this distribution.
Definition: storage.hh:301
Stats::SampleStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:622
Stats::DistStor::min_val
Counter min_val
The smallest value sampled.
Definition: storage.hh:240
Stats::SampleStor::size
size_type size() const
Return the number of entries in this stat, 1.
Definition: storage.hh:598
Stats::HistStor::Params
The parameters for a distribution stat.
Definition: storage.hh:456
Stats::HistStor::max_bucket
Counter max_bucket
Lower bound of the last bucket's range.
Definition: storage.hh:401
Stats::AvgSampleStor::Params
Definition: storage.hh:643
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
cast.hh
Stats::DistType
DistType
Definition: info.hh:176
Stats::DistStor::prepare
void prepare(Info *info, DistData &data)
Definition: storage.hh:314
Stats::DistStor::Params::Params
Params(Counter _min, Counter _max, Counter _bucket_size)
Definition: storage.hh:269
Stats::SampleStor::Params
Definition: storage.hh:567
Stats::DistStor::samples
Counter samples
The number of samples.
Definition: storage.hh:252
Stats::Hist
@ Hist
Definition: info.hh:176
std::vector< Counter >
Stats::AvgSampleStor::AvgSampleStor
AvgSampleStor(Info *info)
Create and initialize this storage.
Definition: storage.hh:651
Stats::AvgStor::zero
bool zero() const
Definition: storage.hh:190
Stats::SparseHistStor::samples
Counter samples
Counter for number of samples.
Definition: storage.hh:714
Stats::HistStor::growDown
void growDown()
Given a bucket size B, and a range of values [0, N], this function doubles the bucket size to double ...
Definition: storage.cc:111
Stats::MCounter
std::map< Counter, int > MCounter
map of counters
Definition: types.hh:45
Stats::DistStor::Params::max
Counter max
The maximum value to track.
Definition: storage.hh:263
Stats::AvgStor::value
Counter value() const
Return the current count.
Definition: storage.hh:174
Stats::DistStor::min_track
Counter min_track
The minimum value to track.
Definition: storage.hh:233
Stats::AvgSampleStor::sum
Counter sum
Current total.
Definition: storage.hh:638
Stats::HistStor::Params::Params
Params(size_type _buckets)
Definition: storage.hh:461
Stats::SampleStor::squares
Counter squares
The sum of squares.
Definition: storage.hh:562
Stats::StatStor::Params
Definition: storage.hh:60
Stats::Dist
@ Dist
Definition: info.hh:176
Stats::HistStor::logs
Counter logs
The sum of logarithm of each sample, used to compute geometric mean.
Definition: storage.hh:408
Stats::DistStor
Templatized storage and interface for a distribution stat.
Definition: storage.hh:229
Stats::SampleStor::prepare
void prepare(Info *info, DistData &data)
Definition: storage.hh:607
Stats::HistStor::min_bucket
Counter min_bucket
Lower bound of the first bucket's range.
Definition: storage.hh:399
Stats::StorageParams
Definition: storage.hh:45
Stats::Info::storageParams
const StorageParams * storageParams
Definition: info.hh:95
Stats::HistStor::squares
Counter squares
The sum of squares.
Definition: storage.hh:410
Stats::AvgSampleStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:696
Stats::DistStor::bucket_size
Counter bucket_size
The number of entries in each bucket.
Definition: storage.hh:237
Stats::StatStor::StatStor
StatStor(Info *info)
Builds this storage element and calls the base constructor of the datatype.
Definition: storage.hh:66
Stats::SampleStor::samples
Counter samples
The number of samples.
Definition: storage.hh:564
Stats::DistStor::Params
The parameters for a distribution stat.
Definition: storage.hh:258
info.hh
Stats::DistData
Definition: info.hh:178
Stats::DistStor::sample
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Definition: storage.cc:49
Stats::SparseHistStor::cmap
MCounter cmap
Counter for each bucket.
Definition: storage.hh:716
Stats::DistStor::squares
Counter squares
The sum of squares.
Definition: storage.hh:250
Stats::StatStor::zero
bool zero() const
Definition: storage.hh:113
Stats::AvgSampleStor::prepare
void prepare(Info *info, DistData &data)
Definition: storage.hh:681
Stats::HistStor::zero
bool zero() const
Returns true if any calls to sample have been made.
Definition: storage.hh:500
Stats::DistStor::max_track
Counter max_track
The maximum value to track.
Definition: storage.hh:235
Stats::AvgSampleStor::squares
Counter squares
Current sum of squares.
Definition: storage.hh:640
Stats::HistStor::sum
Counter sum
The current sum.
Definition: storage.hh:406
Stats::SparseHistStor
Templatized storage and interface for a sparse histogram stat.
Definition: storage.hh:710
Stats::HistStor::HistStor
HistStor(Info *info)
Definition: storage.hh:470
Stats::DistStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:342
Stats::DistStor::cvec
VCounter cvec
Counter for each bucket.
Definition: storage.hh:254
Stats::SparseHistStor::Params
The parameters for a sparse histogram stat.
Definition: storage.hh:720
Stats::AvgSampleStor
Templatized storage for distribution that calculates per tick mean and variance.
Definition: storage.hh:634
Stats::AvgStor::current
Counter current
The current count.
Definition: storage.hh:127
Stats::DistStor::DistStor
DistStor(Info *info)
Definition: storage.hh:284
Stats::AvgSampleStor::size
size_type size() const
Return the number of entries, in this case 1.
Definition: storage.hh:672
Stats::StorageParams::~StorageParams
virtual ~StorageParams()=default
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
Stats::SampleStor
Templatized storage and interface for a distribution that calculates mean and variance.
Definition: storage.hh:556
core.hh
Stats::DistStor::max_val
Counter max_val
The largest value sampled.
Definition: storage.hh:242
Stats::StatStor::dec
void dec(Counter val)
Decrement the stat by the given value.
Definition: storage.hh:86
Stats::DistParams::type
const DistType type
Definition: storage.hh:218
Stats::StatStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:108
Stats::SparseHistStor::SparseHistStor
SparseHistStor(Info *info)
Definition: storage.hh:725
Stats::Info
Definition: info.hh:70
Stats::HistStor::bucket_size
Counter bucket_size
The number of entries in each bucket.
Definition: storage.hh:403
Stats::Result
double Result
All results are doubles.
Definition: types.hh:50
Stats::DistStor::underflow
Counter underflow
The number of values sampled less than min.
Definition: storage.hh:244
Stats::StatStor::inc
void inc(Counter val)
Increment the stat by the given value.
Definition: storage.hh:80
Stats::AvgStor::total
Result total
The total count for all tick.
Definition: storage.hh:131
Stats::Counter
double Counter
All counters are of 64-bit values.
Definition: types.hh:41
Stats::AvgSampleStor::Params::Params
Params()
Definition: storage.hh:645
warn_if
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
Definition: logging.hh:263
Stats::DistStor::zero
bool zero() const
Returns true if any calls to sample have been made.
Definition: storage.hh:308
Stats::StatStor
Templatized storage and interface for a simple scalar stat.
Definition: storage.hh:53
Stats::AvgStor::inc
void inc(Counter val)
Increment the current count by the provided value, calls set.
Definition: storage.hh:162
Stats::StatStor::data
Counter data
The statistic value.
Definition: storage.hh:57
Stats::HistStor::add
void add(HistStor *other)
Adds the contents of the given storage to this storage.
Definition: storage.cc:205
Stats::StatStor::result
Result result() const
Return the value of this stat as a result type.
Definition: storage.hh:98
Stats::SparseHistStor::sample
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Definition: storage.hh:736
Stats::SparseHistStor::zero
bool zero() const
Returns true if any calls to sample have been made.
Definition: storage.hh:753
ArmISA::t
Bitfield< 5 > t
Definition: miscregs_types.hh:67
Stats::StatStor::prepare
void prepare(Info *info)
Prepare stat data for dumping or serialization.
Definition: storage.hh:103
Stats::SampleStor::sum
Counter sum
The current sum.
Definition: storage.hh:560
Stats::HistStor::growOut
void growOut()
Given a bucket size B, and a range of values [M, N], where M < 0, this function doubles the bucket si...
Definition: storage.cc:72
Stats::DistStor::sum
Counter sum
The current sum.
Definition: storage.hh:248
logging.hh
Stats::StatStor::set
void set(Counter val)
The the stat to the given value.
Definition: storage.hh:74
safe_cast
T safe_cast(U ptr)
Definition: cast.hh:59
Stats
Definition: statistics.cc:53
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
Stats::size_type
unsigned int size_type
Definition: types.hh:54
Stats::HistStor::size
size_type size() const
Return the number of buckets in this distribution.
Definition: storage.hh:493
Stats::StatStor::value
Counter value() const
Return the value of this stat as its base type.
Definition: storage.hh:92
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
Stats::HistStor::prepare
void prepare(Info *info, DistData &data)
Definition: storage.hh:506
Stats::SparseHistStor::size
size_type size() const
Return the number of buckets in this distribution.
Definition: storage.hh:746
Stats::SparseHistStor::prepare
void prepare(Info *info, SparseHistData &data)
Definition: storage.hh:759
Stats::HistStor::sample
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Definition: storage.cc:172
Stats::HistStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:534
Stats::AvgStor::set
void set(Counter val)
Set the current count to the one provided, update the total and last set values.
Definition: storage.hh:151
Stats::SparseHistStor::reset
void reset(Info *info)
Reset stat value to default.
Definition: storage.hh:774
Stats::SampleStor::sample
void sample(Counter val, int number)
Add a value the given number of times to this running average.
Definition: storage.hh:587
Stats::DistStor::Params::bucket_size
Counter bucket_size
The number of entries in each bucket.
Definition: storage.hh:265
Stats::AvgSampleStor::zero
bool zero() const
Return true if no samples have been added.
Definition: storage.hh:678
Stats::DistStor::Params::buckets
size_type buckets
The number of buckets.
Definition: storage.hh:267
Stats::HistStor::samples
Counter samples
The number of samples.
Definition: storage.hh:412
Stats::DistStor::overflow
Counter overflow
The number of values sampled more than max.
Definition: storage.hh:246
Stats::AvgSampleStor::sample
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Definition: storage.hh:662

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