#include "benchmark/benchmark.h"#include <algorithm>#include <cmath>#include <numeric>#include <string>#include <vector>#include "check.h"#include "statistics.h"
Go to the source code of this file.
Namespaces | |
| benchmark | |
Functions | |
| std::vector< BenchmarkReporter::Run > | benchmark::ComputeStats (const std::vector< BenchmarkReporter::Run > &reports) |
| double | benchmark::StatisticsCV (const std::vector< double > &v) |
| double | benchmark::StatisticsMean (const std::vector< double > &v) |
| double | benchmark::StatisticsMedian (const std::vector< double > &v) |
| double | benchmark::StatisticsStdDev (const std::vector< double > &v) |
Variables | |
| auto | benchmark::Sqr = [](const double dat) { return dat * dat; } |
| auto | benchmark::Sqrt |
| auto | benchmark::StatisticsSum |
| auto | benchmark::SumSquares |