boost/libs/histogram/benchmark/axis_index.cpp
2021-10-05 21:37:46 +02:00

78 lines
2.5 KiB
C++

// Copyright 2018 Hans Dembinski
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <benchmark/benchmark.h>
#include <boost/histogram/axis.hpp>
#include <numeric>
#include "../test/throw_exception.hpp"
#include "generator.hpp"
#include <cassert>
struct assert_check {
assert_check() {
assert(false); // don't run with asserts enabled
}
} _;
using namespace boost::histogram;
template <class Distribution>
static void regular(benchmark::State& state) {
auto a = axis::regular<>(100, 0.0, 1.0);
generator<Distribution> gen;
for (auto _ : state) benchmark::DoNotOptimize(a.index(gen()));
}
template <class Distribution>
static void circular(benchmark::State& state) {
auto a = axis::circular<>(100, 0.0, 1.0);
generator<Distribution> gen;
for (auto _ : state) benchmark::DoNotOptimize(a.index(gen()));
}
template <class T, class Distribution>
static void integer(benchmark::State& state) {
auto a = axis::integer<T>(0, 1);
generator<Distribution> gen;
for (auto _ : state) benchmark::DoNotOptimize(a.index(gen()));
}
template <class Distribution>
static void variable(benchmark::State& state) {
std::vector<double> v;
for (double x = 0; x <= state.range(0); ++x) { v.push_back(x / state.range(0)); }
auto a = axis::variable<>(v);
generator<Distribution> gen;
for (auto _ : state) benchmark::DoNotOptimize(a.index(gen()));
}
static void category(benchmark::State& state) {
std::vector<int> v(state.range(0));
std::iota(v.begin(), v.end(), 0);
auto a = axis::category<int>(v);
generator<uniform_int> gen(static_cast<int>(state.range(0)));
for (auto _ : state) benchmark::DoNotOptimize(a.index(gen()));
}
static void boolean(benchmark::State& state) {
auto a = axis::boolean<>();
generator<uniform_int> gen(1);
for (auto _ : state) benchmark::DoNotOptimize(a.index(static_cast<bool>(gen())));
}
BENCHMARK_TEMPLATE(regular, uniform);
BENCHMARK_TEMPLATE(regular, normal);
BENCHMARK_TEMPLATE(circular, uniform);
BENCHMARK_TEMPLATE(circular, normal);
BENCHMARK_TEMPLATE(integer, int, uniform);
BENCHMARK_TEMPLATE(integer, int, normal);
BENCHMARK_TEMPLATE(integer, double, uniform);
BENCHMARK_TEMPLATE(integer, double, normal);
BENCHMARK_TEMPLATE(variable, uniform)->RangeMultiplier(10)->Range(10, 10000);
BENCHMARK_TEMPLATE(variable, normal)->RangeMultiplier(10)->Range(10, 10000);
BENCHMARK(category)->RangeMultiplier(10)->Range(10, 10000);
BENCHMARK(boolean);