// SPDX-License-Identifier: BSD-2-Clause // This code is part of the sfizz library and is licensed under a BSD 2-clause // license. You should have receive a LICENSE.md file along with the code. // If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz #include "SIMDHelpers.h" #include "absl/types/span.h" #include #include #include #include #include #include class MyFixture : public benchmark::Fixture { public: void SetUp(const ::benchmark::State& state) { std::random_device rd {}; std::mt19937 gen { rd() }; std::uniform_real_distribution dist { 0.1f, 1.0f }; source = std::vector(state.range(0)); result = std::vector(state.range(0)); intResult = std::vector(state.range(0)); std::generate(source.begin(), source.end(), [&]() { return dist(gen); }); } void TearDown(const ::benchmark::State& /* state */) { } std::vector source; std::vector result; std::vector intResult; }; BENCHMARK_DEFINE_F(MyFixture, Dummy) (benchmark::State& state) { for (auto _ : state) { for (int i = 0; i < state.range(0); ++i) result[i] = source[i]; benchmark::DoNotOptimize(result); } } BENCHMARK_DEFINE_F(MyFixture, ScalarLibmFloorLog2) (benchmark::State& state) { for (auto _ : state) { for (size_t i = 0, n = source.size(); i < n; ++i) { intResult[i] = static_cast( std::floor(std::log2(std::fabs(source[i])))); } benchmark::DoNotOptimize(intResult); } } BENCHMARK_DEFINE_F(MyFixture, ScalarFastFloorLog2) (benchmark::State& state) { for (auto _ : state) { for (size_t i = 0, n = source.size(); i < n; ++i) { intResult[i] = fp_exponent(source[i]); } benchmark::DoNotOptimize(intResult); } } BENCHMARK_REGISTER_F(MyFixture, Dummy)->RangeMultiplier(4)->Range(1 << 6, 1 << 10); BENCHMARK_REGISTER_F(MyFixture, ScalarLibmFloorLog2)->RangeMultiplier(4)->Range(1 << 6, 1 << 10); BENCHMARK_REGISTER_F(MyFixture, ScalarFastFloorLog2)->RangeMultiplier(4)->Range(1 << 6, 1 << 10); BENCHMARK_MAIN();