charls/benchmark/context_regular_mode.cpp
Victor Derks bb7185254c
Update benchmark project for code changes + enable ARM64 build (#323)
By design the benchmark project is not build as it relies on Google Benchmark that is retrieved using vcpkg.
Vcpkg is now part of Visual Studio 2022, so building with VS 2022 works.
One of the build steps of the CI pipeline build CharLS however with VS 2019 to ensure that VS 2019 still can be used. Enabled benchmark in the solution file for x86 and X64 would break VS 2019.
ARM64 build are only support in VS 2022, so enabling that version doesn't break VS 2019.
2024-08-24 19:06:41 +02:00

65 lines
1.9 KiB
C++

// Copyright (c) Team CharLS.
// SPDX-License-Identifier: BSD-3-Clause
#include <benchmark/benchmark.h>
#include "context_regular_mode_v220.h"
#pragma warning(disable : 26409) // Avoid calling new explicitly (triggered by BENCHMARK macro)
#pragma warning(disable : 4746) // volatile access of 'reset_threshold' is subject to /volatile:<iso|ms> setting; (in ARM64 mode)
using namespace charls;
regular_mode_context g_context;
jls_context_v220 g_context_v220;
volatile int32_t error_value;
volatile int32_t near_lossless;
volatile int32_t reset_threshold{64};
static void bm_regular_mode_update_variables_220(benchmark::State& state)
{
g_context_v220 = jls_context_v220();
for (const auto _ : state)
{
g_context_v220.update_variables(error_value, near_lossless, reset_threshold);
}
}
BENCHMARK(bm_regular_mode_update_variables_220);
static void bm_regular_mode_update_variables(benchmark::State& state)
{
g_context = regular_mode_context();
for (const auto _ : state)
{
g_context.update_variables_and_bias(error_value, near_lossless, reset_threshold);
}
}
BENCHMARK(bm_regular_mode_update_variables);
static void bm_regular_mode_get_golomb_coding_parameter_v220(benchmark::State& state)
{
g_context_v220 = jls_context_v220();
g_context_v220.update_variables(error_value, near_lossless, reset_threshold);
for (const auto _ : state)
{
benchmark::DoNotOptimize(g_context_v220.get_golomb_coding_parameter());
}
}
BENCHMARK(bm_regular_mode_get_golomb_coding_parameter_v220);
static void bm_regular_mode_get_golomb_coding_parameter(benchmark::State& state)
{
g_context = regular_mode_context();
g_context.update_variables_and_bias(error_value, near_lossless, reset_threshold);
for (const auto _ : state)
{
benchmark::DoNotOptimize(g_context.compute_golomb_coding_parameter());
}
}
BENCHMARK(bm_regular_mode_get_golomb_coding_parameter);