Home
last modified time | relevance | path

Searched refs:statistic (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_stats.cpp80 void statistic::addSample(double sample) { in addSample()
96 statistic &statistic::operator+=(const statistic &other) { in operator +=()
129 void statistic::scale(double factor) { in scale()
137 std::string statistic::format(char unit, bool total) const { in format()
601 statistic const *stat = &theStats[s]; in printTimerStats()
619 statistic const *stat = &theStats[s]; in printTimerStats()
636 statistic const *stat = &theStats[s]; in printCounterStats()
644 statistic const *stat = &theStats[s]; in printCounterStats()
800 statistic allStats[TIMER_LAST]; in outputStats()
803 statistic allCounters[COUNTER_LAST]; in outputStats()
[all …]
H A Dkmp_stats.h400 class statistic {
411 statistic(bool doHist = bool(KMP_STATS_HIST)) {
415 statistic(statistic const &o) in statistic() function
419 statistic(double minv, double maxv, double meanv, uint64_t sc, double sd) in statistic() function
445 statistic &operator+=(statistic const &other);
456 class timeStat : public statistic {
460 timeStat() : statistic() {} in timeStat()
844 static void printTimerStats(FILE *statsOut, statistic const *theStats,
845 statistic const *totalStats);
846 static void printCounterStats(FILE *statsOut, statistic const *theStats);
/llvm-project-15.0.7/mlir/include/mlir/Pass/
H A DPassBase.td51 // The C++ variable name for the statistic.
54 // The displayed name of the statistic, similar to the argument of an option.
57 // The description of the statistic.
/llvm-project-15.0.7/mlir/docs/
H A DPassManagement.md583 /// Define the statistic to track during the execution of MyPass.
589 // Update the statistic after some invariant was hit.
610 (S) 15 exampleStat - An example statistic
613 (S) 6 exampleStat - An example statistic
628 (S) 21 exampleStat - An example statistic
786 Statistic statistic{this, "example-statistic", "An example statistic"};
824 Statistic<"statistic", "example-statistic", "An example statistic">
966 - A name to use for the generated statistic variable.
968 - The name used when displaying the statistic.
970 - A one-line description of the statistic.
[all …]
/llvm-project-15.0.7/clang/docs/
H A DSanitizerStats.rst38 the function name. The third column is the type of statistic gathered (in
H A DSourceBasedCodeCoverage.rst263 instantiations. This statistic is hidden by default in reports, but can be
286 statistic are listed in the summary.
/llvm-project-15.0.7/llvm/docs/
H A DTestSuiteMakefileGuide.rst150 `statistic <ProgrammersManual.html#Statistic>`_ to your pass, which will
H A DTestSuiteGuide.md203 compiler and makes the lit runner collect and merge the statistic files.
H A DProgrammersManual.rst1262 Define your statistic like this:
/llvm-project-15.0.7/third-party/benchmark/docs/
H A Duser_guide.md1007 specify a custom statistic to be calculated, defined by a lambda function.