blob: 8c3ef13c2564f770c5c67e51d2150395c8260bf5 [file] [log] [blame]
// Copyright 2020 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <algorithm>
#include <cmath>
#include <functional>
#include <random>
#include <vector>
#include <benchmark/benchmark.h>
#include "bench/utils.h"
#include <xnnpack/AlignedAllocator.h>
#include <xnnpack/common.h>
#include <xnnpack/params.h>
#include <xnnpack/params-init.h>
#include <xnnpack/vunary.h>
static void f32_vhswish(
benchmark::State& state,
xnn_f32_vhswish_ukernel_function hswish,
xnn_init_f32_hswish_params_fn init_params,
benchmark::utils::IsaCheckFunction isa_check = nullptr)
{
if (isa_check && !isa_check(state)) {
return;
}
const size_t num_elements = state.range(0);
std::vector<float, AlignedAllocator<float, 64>> input(num_elements);
std::vector<float, AlignedAllocator<float, 64>> output(num_elements);
std::random_device random_device;
auto rng = std::mt19937(random_device());
auto f32rng = std::bind(std::uniform_real_distribution<float>(-10.0f, 10.0f), std::ref(rng));
std::generate(input.begin(), input.end(), std::ref(f32rng));
std::fill(output.begin(), output.end(), std::nanf(""));
union xnn_f32_hswish_params params;
init_params(&params);
for (auto _ : state) {
hswish(num_elements * sizeof(float), input.data(), output.data(), &params);
}
const uint64_t cpu_frequency = benchmark::utils::GetCurrentCpuFrequency();
if (cpu_frequency != 0) {
state.counters["cpufreq"] = cpu_frequency;
}
const size_t elements_per_iteration = num_elements;
state.counters["elements"] =
benchmark::Counter(uint64_t(state.iterations()) * elements_per_iteration, benchmark::Counter::kIsRate);
const size_t bytes_per_iteration = 2 * num_elements * sizeof(float);
state.counters["bytes"] =
benchmark::Counter(uint64_t(state.iterations()) * bytes_per_iteration, benchmark::Counter::kIsRate);
}
#if XNN_ARCH_ARM || XNN_ARCH_ARM64
BENCHMARK_CAPTURE(f32_vhswish, neon_x4,
xnn_f32_vhswish_ukernel__neon_x4,
xnn_init_f32_hswish_scalar_params,
benchmark::utils::CheckNEON)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, neon_x8,
xnn_f32_vhswish_ukernel__neon_x8,
xnn_init_f32_hswish_scalar_params,
benchmark::utils::CheckNEON)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, neon_x16,
xnn_f32_vhswish_ukernel__neon_x16,
xnn_init_f32_hswish_scalar_params,
benchmark::utils::CheckNEON)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
#endif // XNN_ARCH_ARM || XNN_ARCH_ARM64
#if XNN_ARCH_X86 || XNN_ARCH_X86_64
BENCHMARK_CAPTURE(f32_vhswish, sse_x4,
xnn_f32_vhswish_ukernel__sse_x4,
xnn_init_f32_hswish_sse_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, sse_x8,
xnn_f32_vhswish_ukernel__sse_x8,
xnn_init_f32_hswish_sse_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, avx_x8,
xnn_f32_vhswish_ukernel__avx_x8,
xnn_init_f32_hswish_avx_params,
benchmark::utils::CheckAVX)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, avx_x16,
xnn_f32_vhswish_ukernel__avx_x16,
xnn_init_f32_hswish_avx_params,
benchmark::utils::CheckAVX)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, fma3_x8,
xnn_f32_vhswish_ukernel__fma3_x8,
xnn_init_f32_hswish_avx_params,
benchmark::utils::CheckFMA3)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, fma3_x16,
xnn_f32_vhswish_ukernel__fma3_x16,
xnn_init_f32_hswish_avx_params,
benchmark::utils::CheckFMA3)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, avx512f_x16,
xnn_f32_vhswish_ukernel__avx512f_x16,
xnn_init_f32_hswish_avx512_params,
benchmark::utils::CheckAVX512F)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, avx512f_x32,
xnn_f32_vhswish_ukernel__avx512f_x32,
xnn_init_f32_hswish_avx512_params,
benchmark::utils::CheckAVX512F)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
#endif // XNN_ARCH_X86 || XNN_ARCH_X86_64
#if XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
BENCHMARK_CAPTURE(f32_vhswish, wasmsimd_x4,
xnn_f32_vhswish_ukernel__wasmsimd_x4,
xnn_init_f32_hswish_wasmsimd_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, wasmsimd_x8,
xnn_f32_vhswish_ukernel__wasmsimd_x8,
xnn_init_f32_hswish_wasmsimd_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, wasmsimd_x16,
xnn_f32_vhswish_ukernel__wasmsimd_x16,
xnn_init_f32_hswish_wasmsimd_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
#endif // XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
#if XNN_ARCH_WASM || XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
BENCHMARK_CAPTURE(f32_vhswish, wasm_x1,
xnn_f32_vhswish_ukernel__wasm_x1,
xnn_init_f32_hswish_scalar_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, wasm_x2,
xnn_f32_vhswish_ukernel__wasm_x2,
xnn_init_f32_hswish_scalar_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, wasm_x4,
xnn_f32_vhswish_ukernel__wasm_x4,
xnn_init_f32_hswish_scalar_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
#endif // XNN_ARCH_WASM || XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
BENCHMARK_CAPTURE(f32_vhswish, scalar_x1,
xnn_f32_vhswish_ukernel__scalar_x1,
xnn_init_f32_hswish_scalar_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, scalar_x2,
xnn_f32_vhswish_ukernel__scalar_x2,
xnn_init_f32_hswish_scalar_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
BENCHMARK_CAPTURE(f32_vhswish, scalar_x4,
xnn_f32_vhswish_ukernel__scalar_x4,
xnn_init_f32_hswish_scalar_params)
->Apply(benchmark::utils::UnaryElementwiseParameters<float, float>)
->UseRealTime();
#ifndef XNNPACK_BENCHMARK_NO_MAIN
BENCHMARK_MAIN();
#endif