58 #ifndef __BASE_STATISTICS_HH__ 59 #define __BASE_STATISTICS_HH__ 93 template <
class Stat,
class Base>
102 bool check()
const {
return s.check(); }
108 visitor.
visit(*static_cast<Base *>(
this));
110 bool zero()
const {
return s.zero(); }
113 template <
class Stat>
124 template <
class Stat>
146 this->
s.result(rvec);
153 template <
class Stat>
160 template <
class Stat>
169 template <
class Stat>
199 const Info *info()
const;
214 bool zero()
const {
return true; }
224 template <
class Derived,
template <
class>
class InfoProxyType>
228 typedef InfoProxyType<Derived>
Info;
231 Derived &
self() {
return *
static_cast<Derived *
>(
this); }
255 auto info =
new Info(
self());
256 this->setInfo(parent, info);
262 info->setName(parent, name);
278 Info *info = this->info();
283 const std::string &
name()
const {
return this->info()->name; }
299 return this->info()->separatorString;
311 this->info()->
desc = _desc;
335 this->info()->
flags.set(_flags);
345 template <
class Stat>
354 template <
class Derived,
template <
class>
class InfoProxyType>
358 typedef InfoProxyType<Derived>
Info;
361 const char *desc =
nullptr)
378 Derived &
self = this->
self();
379 Info *info =
self.
info();
382 if (subn.size() <=
index)
383 subn.resize(index + 1);
402 Info *info = this->info();
405 if (subd.size() <=
index)
406 subd.resize(index + 1);
415 Derived &
self = this->
self();
416 Info *info = this->info();
418 size_t size =
self.size();
420 self.
data(
i)->prepare(info);
426 Derived &
self = this->
self();
427 Info *info = this->info();
429 size_t size =
self.size();
431 self.
data(
i)->reset(info);
435 template <
class Derived,
template <
class>
class InfoProxyType>
439 typedef InfoProxyType<Derived>
Info;
442 :
DataWrapVec<Derived, InfoProxyType>(parent, name, desc)
453 Derived &
self = this->
self();
454 Info *info = this->info();
465 Derived &
self = this->
self();
466 Info *info = this->info();
468 assert(index <
self.y);
477 return this->info()->y_subnames[
i];
576 : current(0), lastReset(0), total(0), last(0)
587 total += current * (
curTick() - last);
624 bool zero()
const {
return total == 0.0; }
632 total += current * (
curTick() - last);
653 template <
class Derived,
class Stor>
673 return reinterpret_cast<Storage *
>(storage);
685 return reinterpret_cast<const Storage *
>(storage);
691 new (storage) Storage(this->info());
704 const char *desc =
nullptr)
733 template <
typename U>
741 template <
typename U>
749 template <
typename U>
764 bool zero() {
return result() == 0.0; }
778 bool zero()
const {
return value() == 0; }
813 template <
class T,
class V>
818 typedef V (T::*MethodPointer) ()
const;
822 MethodProxy(T *obj, MethodPointer meth) : object(obj), method(meth) {}
828 template <
class Derived>
868 template <
class T,
class V>
882 std::string
str()
const {
return proxy->
str(); }
884 bool check()
const {
return proxy != NULL; }
899 template <
class Stat>
937 : stat(sp.stat), index(sp.index)
976 template <
typename U>
980 stat.data(index)->set(v);
988 template <
typename U>
992 stat.data(index)->inc(v);
1000 template <
typename U>
1004 stat.data(index)->dec(v);
1025 template <
class Derived,
class Stor>
1060 assert(s > 0 &&
"size must be positive!");
1061 assert(!storage &&
"already initialized");
1064 char *ptr =
new char[_size *
sizeof(Storage)];
1065 storage =
reinterpret_cast<Storage *
>(ptr);
1068 new (&storage[
i]) Storage(this->info());
1079 vec[
i] =
data(
i)->value();
1091 vec[
i] =
data(
i)->result();
1103 total +=
data(
i)->result();
1116 if (
data(
i)->zero())
1124 return storage != NULL;
1130 storage(nullptr), _size(0)
1139 data(
i)->~Storage();
1140 delete []
reinterpret_cast<char *
>(storage);
1151 Derived &
self = this->
self();
1164 assert (index >= 0 && index < size());
1165 return Proxy(this->
self(), index);
1169 template <
class Stat>
1180 typename Stat::Storage *
1183 assert(index < len);
1184 return stat.data(offset + index);
1187 const typename Stat::Storage *
1190 assert(index < len);
1191 return stat.data(offset + index);
1201 vec[
i] =
data(
i)->result();
1211 total +=
data(
i)->result();
1217 : stat(s), offset(o), len(l)
1222 : stat(sp.stat), offset(sp.offset), len(sp.len)
1238 assert (index >= 0 && index < size());
1245 template <
class Derived,
class Stor>
1271 x(0), y(0), _size(0), storage(nullptr)
1280 data(
i)->~Storage();
1281 delete []
reinterpret_cast<char *
>(storage);
1287 assert(_x > 0 && _y > 0 &&
"sizes must be positive!");
1288 assert(!storage &&
"already initialized");
1290 Derived &
self = this->
self();
1291 Info *info = this->info();
1299 char *ptr =
new char[_size *
sizeof(Storage)];
1300 storage =
reinterpret_cast<Storage *
>(ptr);
1303 new (&storage[
i]) Storage(info);
1314 assert (index >= 0 && offset + y <= size());
1315 return Proxy(this->
self(), offset, y);
1328 return data(0)->zero();
1340 total +=
data(
i)->result();
1347 Info *info = this->info();
1351 data(
i)->prepare(info);
1353 info->
cvec.resize(size);
1364 Info *info = this->info();
1367 data(
i)->reset(info);
1373 return storage != NULL;
1438 : cvec(
safe_cast<const Params *>(info->storageParams)->buckets)
1451 if (val < min_track)
1452 underflow += number;
1453 else if (val > max_track)
1457 (
size_type)std::floor((val - min_track) / bucket_size);
1458 assert(index < size());
1459 cvec[
index] += number;
1468 sum += val * number;
1469 squares += val * val * number;
1500 data.
min_val = (min_val == CounterLimits::max()) ? 0 : min_val;
1501 data.
max_val = (max_val == CounterLimits::min()) ? 0 : max_val;
1521 min_track = params->
min;
1522 max_track = params->
max;
1525 min_val = CounterLimits::max();
1526 max_val = CounterLimits::min();
1576 : cvec(
safe_cast<const Params *>(info->storageParams)->buckets)
1583 void grow_convert();
1594 assert(min_bucket < max_bucket);
1595 if (val < min_bucket) {
1596 if (min_bucket == 0)
1599 while (val < min_bucket)
1601 }
else if (val >= max_bucket + bucket_size) {
1602 if (min_bucket == 0) {
1603 while (val >= max_bucket + bucket_size)
1606 while (val >= max_bucket + bucket_size)
1612 (int64_t)std::floor((val - min_bucket) / bucket_size);
1614 assert(index < size());
1615 cvec[
index] += number;
1617 sum += val * number;
1618 squares += val * val * number;
1619 logs += log(val) * number;
1646 data.
min = min_bucket;
1647 data.
max = max_bucket + bucket_size - 1;
1653 int buckets = params->
buckets;
1654 data.
cvec.resize(buckets);
1672 max_bucket = params->
buckets - 1;
1724 sum += val * number;
1725 squares += val * val * number;
1800 sum += val * number;
1801 squares += val * val * number;
1843 template <
class Derived,
class Stor>
1853 char storage[
sizeof(Storage)]
__attribute__ ((aligned (8)));
1863 return reinterpret_cast<Storage *
>(storage);
1873 return reinterpret_cast<const Storage *
>(storage);
1879 new (storage) Storage(this->info());
1895 template <
typename U>
1912 Info *info = this->info();
1922 data()->reset(this->info());
1932 template <
class Stat>
1935 template <
class Derived,
class Stor>
1954 return &storage[
index];
1960 return &storage[
index];
1966 assert(s > 0 &&
"size must be positive!");
1967 assert(!storage &&
"already initialized");
1970 char *ptr =
new char[_size *
sizeof(Storage)];
1971 storage =
reinterpret_cast<Storage *
>(ptr);
1973 Info *info = this->info();
1975 new (&storage[
i]) Storage(info);
1992 data(
i)->~Storage();
1993 delete []
reinterpret_cast<char *
>(storage);
1998 assert(index >= 0 && index < size());
1999 return Proxy(this->
self(), index);
2012 if (!
data(
i)->zero())
2020 Info *info = this->info();
2022 info->
data.resize(size);
2030 return storage != NULL;
2034 template <
class Stat>
2042 typename Stat::Storage *
data() {
return stat.data(index); }
2043 const typename Stat::Storage *
data()
const {
return stat.data(index); }
2051 : stat(sp.stat), index(sp.index)
2063 template <
typename U>
2067 data()->sample(v,
n);
2079 return data()->zero();
2110 virtual const VResult &result()
const = 0;
2120 virtual std::string str()
const = 0;
2140 vresult[0] = data->
result();
2154 template <
class Stat>
2163 : proxy(p), vresult(1)
2169 vresult[0] = proxy.
result();
2249 std::string tmp =
"(";
2263 static std::string
str() {
return "+"; }
2269 static std::string
str() {
return "-"; }
2275 static std::string
str() {
return "*"; }
2281 static std::string
str() {
return "/"; }
2287 static std::string
str() {
return "%"; }
2293 static std::string
str() {
return "-"; }
2309 const VResult &lvec = l->result();
2314 vresult.resize(size);
2317 vresult[
i] =
op(lvec[
i]);
2325 const VResult &vec = this->result();
2356 const VResult &lvec = l->result();
2357 const VResult &rvec = r->result();
2359 assert(lvec.size() > 0 && rvec.size() > 0);
2361 if (lvec.size() == 1 && rvec.size() == 1) {
2363 vresult[0] =
op(lvec[0], rvec[0]);
2364 }
else if (lvec.size() == 1) {
2366 vresult.resize(size);
2368 vresult[
i] =
op(lvec[0], rvec[
i]);
2369 }
else if (rvec.size() == 1) {
2371 vresult.resize(size);
2373 vresult[
i] =
op(lvec[
i], rvec[0]);
2374 }
else if (rvec.size() == lvec.size()) {
2376 vresult.resize(size);
2378 vresult[
i] =
op(lvec[
i], rvec[i]);
2387 const VResult &vec = this->result();
2388 const VResult &lvec = l->result();
2389 const VResult &rvec = r->result();
2395 assert(lvec.size() > 0 && rvec.size() > 0);
2396 assert(lvec.size() == rvec.size() ||
2397 lvec.size() == 1 || rvec.size() == 1);
2400 if (lvec.size() == rvec.size() && lvec.size() > 1) {
2405 return op(lsum, rsum);
2423 }
else if (rs == 1) {
2426 assert(ls == rs &&
"Node vector sizes are not equal");
2451 const VResult &lvec = l->result();
2459 vresult[0] =
op(vresult[0], lvec[
i]);
2467 const VResult &lvec = l->result();
2475 result =
op(result, lvec[
i]);
2485 return csprintf(
"total(%s)", l->str());
2511 const char *desc =
nullptr)
2527 const char *desc =
nullptr)
2537 const char *desc =
nullptr)
2551 const char *desc =
nullptr)
2565 const char *desc =
nullptr)
2579 const char *desc =
nullptr)
2593 const char *desc =
nullptr)
2616 this->setParams(params);
2618 return this->
self();
2630 const char *desc =
nullptr)
2645 this->setParams(params);
2647 return this->
self();
2662 const char *desc =
nullptr)
2667 this->setParams(params);
2682 const char *desc =
nullptr)
2687 this->setParams(params);
2699 const char *desc =
nullptr)
2720 this->setParams(params);
2722 return this->
self();
2735 const char *desc =
nullptr)
2751 this->setParams(params);
2752 return this->
self();
2765 const char *desc =
nullptr)
2781 this->setParams(params);
2782 return this->
self();
2786 template <
class Stat>
2801 this->
s.result(vec);
2807 std::string
str()
const {
return this->
s.str(); }
2810 template <
class Stat>
2821 template <
class Derived,
class Stor>
2831 char storage[
sizeof(Storage)];
2841 return reinterpret_cast<Storage *
>(storage);
2851 return reinterpret_cast<const Storage *
>(storage);
2857 new (storage) Storage(this->info());
2873 template <
typename U>
2890 Info *info = this->info();
2900 data()->reset(this->info());
2936 cmap[
val] += number;
2959 MCounter::iterator it;
2961 for (it = cmap.begin(); it != cmap.end(); it++) {
2962 data.
cmap[(*it).first] = (*it).second;
2983 const char *desc =
nullptr)
2997 this->setParams(params);
2999 return this->
self();
3021 const char *desc =
nullptr);
3033 template<
typename T>
3061 void result(
VResult &vec)
const;
3092 std::string str()
const;
3108 std::string
str()
const {
return formula.
str(); }
3135 operator NodePtr&() {
return node; }
3190 template <
class Stat>
3200 : node(new
ConstNode<signed char>(value))
3208 : node(new
ConstNode<unsigned char>(value))
3216 : node(new
ConstNode<signed short>(value))
3224 : node(new
ConstNode<unsigned short>(value))
3232 : node(new
ConstNode<signed int>(value))
3240 : node(new
ConstNode<unsigned int>(value))
3248 : node(new
ConstNode<signed long>(value))
3256 : node(new
ConstNode<unsigned long>(value))
3264 : node(new
ConstNode<signed long long>(value))
3272 : node(new
ConstNode<unsigned long long>(value))
3300 return Temp(std::make_shared<
BinaryNode<std::plus<Result> > >(l, r));
3306 return Temp(std::make_shared<
BinaryNode<std::minus<Result> > >(l, r));
3312 return Temp(std::make_shared<
BinaryNode<std::multiplies<Result> > >(l, r));
3318 return Temp(std::make_shared<
BinaryNode<std::divides<Result> > >(l, r));
3324 return Temp(std::make_shared<
UnaryNode<std::negate<Result> > >(l));
3327 template <
typename T>
3334 template <
typename T>
3344 return Temp(std::make_shared<
SumNode<std::plus<Result> > >(val));
3399 #endif // __BASE_STATISTICS_HH__
double Result
All results are doubles.
Storage * data(off_type index)
Retrieve the storage.
std::map< Counter, int > MCounter
map of counters
DistProxy(const DistProxy &sp)
DistProxy< Derived > Proxy
Storage * storage
The storage of this stat.
Templatized storage and interface for a sparse histogram stat.
DataWrap(Group *parent, const char *name, const char *desc)
Counter samples
The number of samples.
std::string name
The name of the stat.
Temp(unsigned long long value)
Create a ConstNode.
ScalarBase(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
VectorStandardDeviation(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
void sample(const U &v, int n=1)
Scalar(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Derived & method(T *obj, V(T::*method)() const)
Extended functor that calls the specified method of the provided object.
size_type size() const
Return the number of nodes in the subtree starting at this node.
Derived & init(size_type _x, size_type _y)
void processDumpQueue()
Process all the callbacks in the dump callbacks queue.
Derived & subname(off_type index, const std::string &name)
Set the subfield name for the given index, and marks this stat to print at the end of simulation...
const VectorProxy & operator=(const VectorProxy &sp)
Counter sum
The current sum.
Result total() const
Return the total of the result vector.
size_type size() const
Return the number of entries in this stat.
std::vector< std::string > subdescs
Result total() const
Return the total of the result vector.
The parameters for a distribution stat.
const VResult & result() const
Return the result vector of this subtree.
const std::string & name()
void operator++()
Increment the stat by 1.
Base class for formula statistic node.
Counter bucket_size
The number of entries in each bucket.
Result total() const
Return the total of the result vector.
void reset(Info *info)
Reset stat value to default.
Vector2dBase(Group *parent, const char *name, const char *desc)
const Info * resolve(const std::string &name)
A stat that calculates the per tick average of a value.
MethodProxy(T *obj, MethodPointer meth)
SampleStor(Info *info)
Create and initialize this storage.
Counter min
The minimum value to track.
Counter min_val
The smallest value sampled.
NodePtr getNodePtr() const
Makde gcc < 4.6.3 happy and explicitly get the underlying node.
VectorProxy(const VectorProxy &sp)
Temp(signed int value)
Create a ConstNode.
Counter current
The current count.
void operator--(int)
Decrement the stat by 1.
Temp(const AverageVector &s)
std::string str() const override
Storage * data(off_type index)
ValueBase(Group *parent, const char *name, const char *desc)
const char * __attribute__((weak)) m5MainCommands[]
Counter max_bucket
The maximum value to track.
Temp(unsigned char value)
Create a ConstNode.
virtual size_type size() const =0
DataWrapVec(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Result total() const
Return the total of the result vector.
Counter overflow
The number of values sampled more than max.
void operator+=(const U &v)
Increment the stat by the given value.
VCounter cvec
Counter for each bucket.
InfoProxyType< Derived > Info
size_type buckets
The number of buckets.
Result total() const
Return the total of the result vector.
Proxy operator[](off_type index)
void inc(Counter val)
Increment the current count by the provided value, calls set.
static void overflow(double &c, const scfx_params ¶ms, bool &o_flag)
Implementation of a distribution stat.
void(* Handler)()
Register reset and dump handlers.
VectorInfoProxy(Stat &stat)
void operator--()
Decrement the stat by 1.
VectorAverageDeviation & init(size_type size)
Initialize storage for this distribution.
virtual Result total() const =0
Result total() const
Return a total of all entries in this vector.
DistBase(Group *parent, const char *name, const char *desc)
void prepare(Info *info, DistData &data)
Temp operator/(Temp l, Temp r)
ScalarProxy< Derived > Proxy
Proxy type.
std::string ysubname(off_type i) const
size_type size() const
Return the number of buckets in this distribution.
Counter samples
Counter for number of samples.
const VResult & result() const
Return the result vector of this subtree.
const Storage * data() const
Retrieve a const pointer to the storage.
Result total
The total count for all tick.
Counter min_track
The minimum value to track.
Templatized storage and interface for a simple scalar stat.
Derived & subdesc(off_type index, const std::string &desc)
Set the subfield description for the given index and marks this stat to print at the end of simulatio...
void value(VCounter &vec) const
A vector of scalar stats.
Value(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Histogram & init(size_type size)
Set the parameters of this histogram.
Overload hash function for BasicBlockRange type.
size_type buckets
The number of buckets.
VectorDistribution & init(size_type size, Counter min, Counter max, Counter bkt)
Initialize storage and parameters for this distribution.
size_type size() const
Return the number of nodes in the subtree starting at this node.
list< Info * > & statsList()
A vector of distributions.
size_type size() const
Return the number of entries, in this case 1.
Counter squares
Current sum of squares.
MCounter cmap
Counter for each bucket.
std::vector< std::string > y_subnames
virtual Result result() const =0
AverageDeviation(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Construct and initialize this distribution.
Counter logs
The sum of logarithm of each sample, used to compute geometric mean.
Storage * data()
Retrieve the storage.
Temp(signed char value)
Create a ConstNode.
DataWrapVec2d(Group *parent, const char *name, const char *desc)
void operator--(int)
Decrement the stat by 1.
ScalarProxy(Stat &s, off_type i)
Create and initialize this proxy, do not register it with the database.
The parameters for a distribution stat.
Counter squares
The sum of squares.
Derived & scalar(T &value)
void operator++()
Increment the stat by 1.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Vector(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Counter min_bucket
The minimum value to track.
Proxy operator[](off_type index)
Return a reference (ScalarProxy) to the stat at the given index.
bool zero() const
Return true if no samples have been added.
VectorDistInfoProxy< Derived > Info
virtual void visit(const ScalarInfo &info)=0
This is a simple scalar statistic, like a counter.
This is a vector of AverageDeviation stats.
Result total() const
Return the total of the result vector.
Derived & init(size_type size)
Set this vector to have the given size.
VectorStatNode(const VectorInfo *d)
size_type size() const override
Return the number of nodes in the subtree starting at this node.
Calculates the mean and variance of all the samples.
Distribution(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
void result(VResult &vec) const
Copy the values to a local vector and return a reference to it.
double Counter
All counters are of 64-bit values.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
ScalarProxy(const ScalarProxy &sp)
Create a copy of the provided ScalarProxy.
SparseHistInfoProxy(Stat &stat)
Temp(signed long long value)
Create a ConstNode.
void addStat(Stats::Info *info)
Register a stat with this group.
bool zero() const
Return true if no samples have been added.
Data structure of sparse histogram.
void visit(Output &visitor)
Visitor entry for outputing statistics data.
const VResult & result() const
Return the result vector of this subtree.
size_type size() const
Return the number of entries in this stat.
void operator++(int)
Increment the stat by 1.
void prepare(Info *info, DistData &data)
Counter samples
The number of samples.
AverageVector(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Tick curTick()
The current simulated tick.
Counter max
The maximum value to track.
Temp(const ScalarProxy< Stat > &p)
Create a new ScalarProxyNode.
void prepare(Info *info, DistData &data)
Result total() const
Return the total of the result vector.
const VResult & result() const override
Return the result vector of this subtree.
Counter squares
The sum of squares.
VCounter cvec
Counter for each bucket.
virtual const VResult & result() const =0
std::string csprintf(const char *format, const Args &...args)
bool zero() const
Returns true if any calls to sample have been made.
const std::string & setSeparator() const
void operator=(const U &v)
Set the data value to the given value.
VCounter cvec
Local storage for the entry values, used for printing.
const DistProxy & operator=(const DistProxy &sp)
Result result() const
Return the current value of this statas a result type.
Derived & setSeparator(const std::string &_sep)
Set the character(s) used between the name and vector number on vectors, dist, etc.
Temp operator-(Temp l, Temp r)
void reset()
Proxy has no state.
Temp(const Average &s)
Create a new ScalarStatNode.
Tick last
The tick that current last changed.
BinaryNode(NodePtr &a, NodePtr &b)
Templatized storage and interface for a histogram stat.
Counter sum
The current sum.
Proxy operator[](off_type index)
uint64_t Tick
Tick count type.
Counter squares
The sum of squares.
const VResult & result() const
Return the result vector of this subtree.
A simple distribution stat.
std::shared_ptr< Node > NodePtr
Shared pointer to a function Node.
Implementation of a scalar stat.
virtual Result total() const =0
void reset()
Reset the stat to the default state.
The parameters for a distribution stat.
Flags flags
The formatting flags.
void dec(Counter val)
Decrement the stat by the given value.
Derived & prereq(const Stat &prereq)
Set the prerequisite stat and marks this stat to print at the end of simulation.
const VResult & result() const
void reset(Info *info)
Reset stat value to default.
ScalarStatNode(const ScalarInfo *d)
ScalarProxy< Stat > operator[](off_type index)
void registerResetCallback(Callback *cb)
Register a callback that should be called whenever statistics are reset.
VectorDistInfoProxy(Stat &stat)
ScalarInfoProxy(Stat &stat)
void reset()
Reset the stat to the default state.
InfoProxyType< Derived > Info
void reset(Info *info)
Reset stat value to default.
Vector2d(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Counter bucket_size
The number of entries in each bucket.
StatStor(Info *info)
Builds this storage element and calls the base constructor of the datatype.
void setName(const std::string &name)
Set the name of this statistic.
Temp(const NodePtr &n)
Copy the given pointer to this class.
Result total() const
Return a total of all entries in this vector.
virtual Counter value() const =0
Temp(signed short value)
Create a ConstNode.
ScalarProxyNode(const ScalarProxy< Stat > &p)
Storage * data()
Retrieve the storage.
void prepare(Info *info)
Prepare stat data for dumping or serialization.
AvgStor(Info *info)
Build and initializes this stat storage.
Counter sum
Current total.
void operator-=(const U &v)
Decrement the stat by the given value.
Distribution & init(Counter min, Counter max, Counter bkt)
Set the parameters of this distribution.
Implementation of a sparse histogram stat.
std::vector< DistData > data
VectorDistribution(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
const FlagsType display
Print this stat.
Calculates the per tick mean and variance of the samples.
bool zero() const
Return true if no samples have been added.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Temp(const Value &s)
Create a new ScalarStatNode.
VectorAverageDeviation(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Histogram(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Temp(float value)
Create a ConstNode.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
Temp(unsigned int value)
Create a ConstNode.
std::map< const void *, Info * > MapType
const Stat::Storage * data() const
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
SparseHistBase(Group *parent, const char *name, const char *desc)
void dec(Counter val)
Deccrement the current count by the provided value, calls set.
Counter bucket_size
The number of entries in each bucket.
const Storage * data(off_type index) const
Retrieve a const pointer to the storage.
Temp operator+(Temp l, Temp r)
Templatized storage and interface to a per-tick average stat.
Helper class to construct formula node trees.
void reset()
Reset stat value to default.
Temp(signed long value)
Create a ConstNode.
SparseHistInfoProxy< Derived > Info
StandardDeviation(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Construct and initialize this distribution.
const VResult & result() const
Counter max_track
The maximum value to track.
const FlagsType total
Print the total.
void registerDumpCallback(Callback *cb)
Register a callback that should be called whenever statistics are about to be dumped.
Average(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
Templatized storage and interface for a distribution stat.
size_type size() const
Return the number of elements, always 1 for a scalar.
SparseHistogram(Group *parent=nullptr, const char *name=nullptr, const char *desc=nullptr)
const Storage * data(off_type index) const
Result result() const
Return the value of this stat as a result type.
Counter max_val
The largest value sampled.
Tick lastReset
The tick of the last reset.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
Templatized storage for distribution that calculates per tick mean and variance.
void reset(Info *info)
Reset stat value to default.
const VResult & result() const
Return the result vector of this subtree.
void sample(Counter val, int number)
Add a value the given number of times to this running average.
Result result() const
Return the current average.
void prepare()
Prepare the stat for dumping.
const Stat::Storage * data(off_type index) const
const Storage * data() const
Retrieve a const pointer to the storage.
const Storage * data() const
Retrieve a const pointer to the storage.
Temp constantVector(T val)
const Info * info() const
The parameters for a sparse histogram stat.
Counter underflow
The number of values sampled less than min.
void processResetQueue()
Process all the callbacks in the reset callbacks queue.
Storage * data()
Retrieve the storage.
const StorageParams * storageParams
const ScalarProxy & operator=(const ScalarProxy &sp)
Set this proxy equal to the provided one.
size_type size() const
Return the number of buckets in this distribution.
void operator-=(const U &v)
Decrement the stat by the given value.
Counter value() const
Return the current value of this stat as its base type.
void add(DistBase &d)
Add the argument distribution to the this distribution.
SparseHistData data
Local storage for the entry values, used for printing.
void prepare(Info *info, SparseHistData &data)
Derived & ysubname(off_type index, const std::string &subname)
Temp(const Scalar &s)
Create a new ScalarStatNode.
Vector2dInfoProxy< Derived > Info
bool validateStatName(const string &name)
Counter data
The statistic value.
void sample(Counter val, int number)
Add a value to the distribution for the given number of times.
Result total() const override
Return the total of the result vector.
size_type size() const
Return the number of nodes in the subtree starting at this node.
const Storage * data(off_type index) const
DistInfoProxy(Stat &stat)
size_type size() const
Return the number of elements, always 1 for a scalar.
SparseHistogram & init(size_type size)
Set the parameters of this histogram.
SparseHistStor(Info *info)
Temp operator*(Temp l, Temp r)
off_type index
The index to access in the parent VectorBase.
size_type size() const
Return the number of buckets in this distribution.
VectorProxy< Derived > Proxy
A vector of Average stats.
Counter value() const
Return the current count.
VectorProxy(Stat &s, off_type o, size_type l)
void reset()
Reset stat value to default.
ConstVectorNode(const T &s)
Stat::Storage * data(off_type index)
const VResult & result() const
Return the result vector of this subtree.
size_type size() const
Return the number of nodes in the subtree starting at this node.
void inc(Counter val)
Increment the stat by the given value.
void reset(Info *info)
Reset stat value to default.
size_type size() const
Return the number of nodes in the subtree starting at this node.
Temp(unsigned short value)
Create a ConstNode.
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
size_type size() const
Return the number of nodes in the subtree starting at this node.
void prepare(Info *info, DistData &data)
bool zero() const
Returns true if any calls to sample have been made.
const VResult & result() const
Return the result vector of this subtree.
void operator--()
Decrement the stat by 1.
const ScalarProxy< Stat > proxy
size_type size() const
Return the number of entries in this stat, 1.
void operator=(const U &v)
Set the data value to the given value.
void dump()
Dump all statistics data to the registered outputs.
Vector2dInfoProxy(Stat &stat)
A 2-Dimensional vecto of scalar stats.
bool check() const
Check that this stat has been set up properly and is ready for use.
std::map< std::string, Info * > NameMapType
Storage * data(off_type index)
DistInfoProxy< Derived > Info
VectorStandardDeviation & init(size_type size)
Initialize storage for this distribution.
void reset(Info *info)
Reset stat value to default.
VectorBase(Group *parent, const char *name, const char *desc)
InfoProxyType< Derived > Info
bool zero() const
Returns true if any calls to sample have been made.
This is a vector of StandardDeviation stats.
Derived & ysubnames(const char **names)
Temp(double value)
Create a ConstNode.
void registerHandlers(Handler reset_handler, Handler dump_handler)
Temp(unsigned long value)
Create a ConstNode.
NodePtr node
Pointer to a Node object.
void prepare(Info *info)
Prepare stat data for dumping or serialization.
Derived & functor(T &func)
void visit(Output &visitor)
Info * info()
Grab the information class for this statistic.
size_type size() const
Return the number of nodes in the subtree starting at this node.
void operator++(int)
Increment the stat by 1.
A proxy similar to the FunctorProxy, but allows calling a method of a bound object, instead of a global free-standing function.
Counter value() const
Return the value of this stat as its base type.
Counter value() const
Return the current value of this stat as its base type.
Counter samples
The number of samples.
Temp(const Vector &s)
Create a new VectorStatNode.
Counter sum
The current sum.
Implementation of a vector of stats.
void operator+=(const U &v)
Increment the stat by the given value.
DistData data
Local storage for the entry values, used for printing.
bool check() const
Check that this stat has been set up properly and is ready for use.
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
const std::string & name() const
std::vector< std::string > subnames
Names and descriptions of subfields.
VectorDistBase(Group *parent, const char *name, const char *desc)
const std::string to_string(sc_enc enc)
void reset()
Reset stat value to default.
Templatized storage and interface for a distribution that calculates mean and variance.
DistProxy(Stat &s, off_type i)
bool zero() const
Return true if no samples have been added.
Stat & stat
Pointer to the parent Vector.
A proxy class to access the stat at a given index in a VectorBase stat.
AvgSampleStor(Info *info)
Create and initialize this storage.
void reset(Info *info)
Reset stat value to default.