Home | History | Annotate | Download | only in test

Lines Matching full:benchmark

1 #include "benchmark/benchmark.h"
10 void BM_basic(benchmark::State& state) {
15 void BM_basic_slow(benchmark::State& state) {
23 BENCHMARK(BM_basic);
24 BENCHMARK(BM_basic)->Arg(42);
25 BENCHMARK(BM_basic_slow)->Arg(10)->Unit(benchmark::kNanosecond);
26 BENCHMARK(BM_basic_slow)->Arg(100)->Unit(benchmark::kMicrosecond);
27 BENCHMARK(BM_basic_slow)->Arg(1000)->Unit(benchmark::kMillisecond);
28 BENCHMARK(BM_basic)->Range(1, 8);
29 BENCHMARK(BM_basic)->RangeMultiplier(2)->Range(1, 8);
30 BENCHMARK(BM_basic)->DenseRange(10, 15);
31 BENCHMARK(BM_basic)->Args({42, 42});
32 BENCHMARK(BM_basic)->Ranges({{64, 512}, {64, 512}});
33 BENCHMARK(BM_basic)->MinTime(0.7);
34 BENCHMARK(BM_basic)->UseRealTime();
35 BENCHMARK(BM_basic)->ThreadRange(2, 4);
36 BENCHMARK(BM_basic)->ThreadPerCpu();
37 BENCHMARK(BM_basic)->Repetitions(3);
39 void CustomArgs(benchmark::internal::Benchmark* b) {
45 BENCHMARK(BM_basic)->Apply(CustomArgs);
47 void BM_explicit_iteration_count(benchmark::State& state) {
63 BENCHMARK(BM_explicit_iteration_count)->Iterations(42);