Go to the documentation of this file.
30 #ifndef __BASE_STATS_STORAGE_HH__
31 #define __BASE_STATS_STORAGE_HH__
278 "Bucket size (%f) must be greater than zero",
bucket_size);
281 "Bucket size (%f) does not divide range [%f:%f] into equal-" \
291 reset(storage_params);
320 const Params *params = safe_cast<const Params *>(storage_params);
348 const Params *params = safe_cast<const Params *>(storage_params);
353 min_val = CounterLimits::max();
354 max_val = CounterLimits::min();
469 "There must be at least two buckets in a histogram");
477 reset(storage_params);
512 const Params *params = safe_cast<const Params *>(storage_params);
524 data.cvec.resize(buckets);
540 const Params *params = safe_cast<const Params *>(storage_params);
613 const Params *params = safe_cast<const Params *>(storage_params);
687 const Params *params = safe_cast<const Params *>(storage_params);
731 reset(storage_params);
765 MCounter::iterator it;
767 for (it =
cmap.begin(); it !=
cmap.end(); it++) {
768 data.cmap[(*it).first] = (*it).second;
788 #endif // __BASE_STATS_STORAGE_HH__
Tick curTick()
The universal simulation clock.
Templatized storage and interface for a distribution stat.
Templatized storage and interface for a sparse histogram stat.
void prepare(const StorageParams *const storage_params, DistData &data)
VCounter cvec
Counter for each bucket.
Counter sum
The current sum.
Counter min
The minimum value to track.
Templatized storage for distribution that calculates per tick mean and variance.
void dec(Counter val)
Deccrement the current count by the provided value, calls set.
Counter sum
Current total.
void prepare(const StorageParams *const storage_params, DistData &data)
double Result
All results are doubles.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Counter current
The current count.
Counter bucket_size
The number of entries in each bucket.
Templatized storage and interface for a distribution that calculates mean and variance.
size_type size() const
Return the number of entries, in this case 1.
void prepare(const StorageParams *const storage_params, DistData &data)
Counter logs
The sum of logarithm of each sample, used to compute geometric mean.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
AvgSampleStor(const StorageParams *const storage_params)
Create and initialize this storage.
Counter squares
The sum of squares.
Params(Counter _min, Counter _max, Counter _bucket_size)
Counter min_val
The smallest value sampled.
size_type buckets
The number of buckets.
bool zero() const
Returns true if any calls to sample have been made.
void reset(const StorageParams *const storage_params)
Reset stat value to default.
size_type size() const
Return the number of buckets in this distribution.
bool zero() const
Returns true if any calls to sample have been made.
Data structure of sparse histogram.
bool zero() const
Return true if no samples have been added.
Counter squares
Current sum of squares.
Result result() const
Return the current average.
Counter value() const
Return the value of this stat as its base type.
Counter bucket_size
The number of entries in each bucket.
AvgStor(const StorageParams *const storage_params)
Build and initializes this stat storage.
Counter data
The statistic value.
Counter sum
The current sum.
Counter min_track
The minimum value to track.
void sample(Counter val, int number)
Add a value the given number of times to this running average.
void reset(const StorageParams *const storage_params)
Reset stat value to default.
Params(size_type _buckets)
Counter max_track
The maximum value to track.
Counter samples
Counter for number of samples.
VCounter cvec
Counter for each bucket.
The parameters for a distribution stat.
Counter max_bucket
Lower bound of the last bucket's range.
Counter samples
The number of samples.
Tick last
The tick that current last changed.
void prepare(const StorageParams *const storage_params)
Prepare stat data for dumping or serialization.
void set(Counter val)
The the stat to the given value.
void growUp()
Given a bucket size B, and a range of values [0, N], this function doubles the bucket size to double ...
void prepare(const StorageParams *const storage_params, DistData &data)
StatStor(const StorageParams *const storage_params)
Builds this storage element and calls the base constructor of the datatype.
Counter samples
The number of samples.
Counter sum
The current sum.
Tick lastReset
The tick of the last reset.
Counter max_val
The largest value sampled.
size_type buckets
The number of buckets.
void reset(const StorageParams *const storage_params)
Reset stat value to default.
uint64_t Tick
Tick count type.
void reset(const StorageParams *const storage_params)
Reset stat value to default.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Counter overflow
The number of values sampled more than max.
void dec(Counter val)
Decrement the stat by the given value.
size_type size() const
Return the number of entries in this stat, 1.
Result result() const
Return the value of this stat as a result type.
HistStor(const StorageParams *const storage_params)
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
void growDown()
Given a bucket size B, and a range of values [0, N], this function doubles the bucket size to double ...
bool zero() const
Returns true if any calls to sample have been made.
void prepare(const StorageParams *const storage_params, SparseHistData &data)
Counter squares
The sum of squares.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
Counter underflow
The number of values sampled less than min.
std::map< Counter, int > MCounter
map of counters
Result total
The total count for all tick.
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
DistStor(const StorageParams *const storage_params)
void inc(Counter val)
Increment the current count by the provided value, calls set.
void reset(const StorageParams *const storage_params)
Reset stat value to default.
General container for distribution data.
void inc(Counter val)
Increment the stat by the given value.
SparseHistStor(const StorageParams *const storage_params)
void reset(const StorageParams *const storage_params)
Reset stat value to default.
The parameters for a sparse histogram stat.
Counter min_bucket
Lower bound of the first bucket's range.
double Counter
All counters are of 64-bit values.
Counter squares
The sum of squares.
Templatized storage and interface for a histogram stat.
size_type size() const
Return the number of buckets in this distribution.
Templatized storage and interface for a simple scalar stat.
SampleStor(const StorageParams *const storage_params)
Create and initialize this storage.
Counter bucket_size
The number of entries in each bucket.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Counter value() const
Return the current count.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
The parameters for a distribution stat.
void prepare(const StorageParams *const storage_params)
Prepare stat data for dumping or serialization.
size_type size() const
Return the number of buckets in this distribution.
virtual ~StorageParams()=default
void set(Counter val)
Set the current count to the one provided, update the total and last set values.
void growOut()
Given a bucket size B, and a range of values [M, N], where M < 0, this function doubles the bucket si...
Counter max
The maximum value to track.
The parameters for a distribution stat.
MCounter cmap
Counter for each bucket.
void add(HistStor *other)
Adds the contents of the given storage to this storage.
bool zero() const
Return true if no samples have been added.
void reset(const StorageParams *const storage_params)
Reset stat value to default.
Counter samples
The number of samples.
Templatized storage and interface to a per-tick average stat.
Generated on Thu Jun 16 2022 10:41:45 for gem5 by doxygen 1.8.17