Go to the documentation of this file. 1 #ifndef WREPORT_BENCHMARK_H
2 #define WREPORT_BENCHMARK_H
26 unsigned run_count = 0;
35 void collect(std::function<
void()> f);
44 virtual void start_benchmark(
const Benchmark& b) = 0;
45 virtual void end_benchmark(
const Benchmark& b) = 0;
46 virtual void start_iteration(
const Benchmark& b,
unsigned cur,
unsigned total) = 0;
47 virtual void end_iteration(
const Benchmark& b,
unsigned cur,
unsigned total) = 0;
48 virtual void test_failed(
const Benchmark& b, std::exception& e) = 0;
63 void start_benchmark(
const Benchmark& b)
override;
64 void start_iteration(
const Benchmark& b,
unsigned cur,
unsigned total)
override;
65 void end_iteration(
const Benchmark& b,
unsigned cur,
unsigned total)
override;
66 void end_benchmark(
const Benchmark& b)
override;
67 void test_failed(
const Benchmark& b, std::exception& e)
override;
79 unsigned repetitions = 10;
81 std::vector<Task*> tasks;
129 std::vector<Benchmark*> benchmarks;
void add(Benchmark *b)
Add a benchmark to this registry.
Collect all existing benchmarks.
Definition: benchmark.h:128
void run(Progress &progress)
Run the benchmark and collect timings.
virtual void teardown_main()
Tear down the environment for this benchmark.
Definition: benchmark.h:100
static void basic_run(int argc, const char *argv[])
Basic implementation of a main function that runs all benchmarks linked into the program.
virtual void setup_iteration()
Set up the environment for an iteration of this benchmark.
Definition: benchmark.h:107
Basic progress implementation writing progress information to the given output stream.
Definition: benchmark.h:57
virtual void setup_main()
Set up the environment for this benchmark.
Definition: benchmark.h:93
static Registry & get()
Get the static instance of the registry.
void print_timings()
Print timings to stdout.
virtual void teardown_iteration()
Tear down the environment for an iteration of this benchmark.
Definition: benchmark.h:114
Base class for all benchmarks.
Definition: benchmark.h:75
Notify of progress during benchmark execution.
Definition: benchmark.h:41
String functions.
Definition: benchmark.h:13
Collect timings for one task.
Definition: benchmark.h:20
virtual void main()=0
Main body of this benchmark.