70 lines
2.2 KiB
C++
70 lines
2.2 KiB
C++
// 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 "utility/Macros.h"
|
|
#include <benchmark/benchmark.h>
|
|
#include <random>
|
|
#include <numeric>
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <cmath>
|
|
|
|
class WithinArray : public benchmark::Fixture {
|
|
public:
|
|
void SetUp(const ::benchmark::State& state) {
|
|
std::random_device rd { };
|
|
std::mt19937 gen { rd() };
|
|
std::uniform_real_distribution<float> dist { 1, 10 };
|
|
input = std::vector<float>(state.range(0));
|
|
std::generate(input.begin(), input.end(), [&]() { return dist(gen); });
|
|
}
|
|
|
|
void TearDown(const ::benchmark::State& state) {
|
|
UNUSED(state);
|
|
}
|
|
|
|
std::vector<float> input;
|
|
};
|
|
|
|
BENCHMARK_DEFINE_F(WithinArray, ScalarFalse)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
sfz::setSIMDOpStatus<float>(sfz::SIMDOps::allWithin, false);
|
|
sfz::allWithin<float>(input, 1.2f, 3.8f);
|
|
}
|
|
}
|
|
|
|
BENCHMARK_DEFINE_F(WithinArray, SIMDFalse)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
sfz::setSIMDOpStatus<float>(sfz::SIMDOps::allWithin, true);
|
|
sfz::allWithin<float>(input, 1.2f, 3.8f);
|
|
}
|
|
}
|
|
|
|
BENCHMARK_DEFINE_F(WithinArray, ScalarTrue)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
sfz::setSIMDOpStatus<float>(sfz::SIMDOps::allWithin, false);
|
|
sfz::allWithin<float>(input, 0.0f, 11.0f);
|
|
}
|
|
}
|
|
|
|
BENCHMARK_DEFINE_F(WithinArray, SIMDTrue)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
sfz::setSIMDOpStatus<float>(sfz::SIMDOps::allWithin, true);
|
|
sfz::allWithin<float>(input, 0.0f, 11.0f);
|
|
}
|
|
}
|
|
|
|
|
|
BENCHMARK_REGISTER_F(WithinArray, ScalarFalse)->RangeMultiplier(4)->Range(1 << 2, 1 << 12);
|
|
BENCHMARK_REGISTER_F(WithinArray, SIMDFalse)->RangeMultiplier(4)->Range(1 << 2, 1 << 12);
|
|
BENCHMARK_REGISTER_F(WithinArray, ScalarTrue)->RangeMultiplier(4)->Range(1 << 2, 1 << 12);
|
|
BENCHMARK_REGISTER_F(WithinArray, SIMDTrue)->RangeMultiplier(4)->Range(1 << 2, 1 << 12);
|
|
BENCHMARK_MAIN();
|