kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit d50f23567cd20433604b64a7cd4665053722b317
parent 2eb05aa753b67f596122d2f9f20ccb34de1eb547
Author: [email protected] <[email protected]>
Date:   Wed, 15 Nov 2023 09:46:07 +0000

KFR_NO_PERF_TESTS to disable performance tests

Diffstat:
Mtests/CMakeLists.txt | 6++++++
Mtests/dft_test.cpp | 2+-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt @@ -148,6 +148,12 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") target_compile_options(all_tests PRIVATE /Zc:lambda) endif () +option(KFR_NO_PERF_TESTS "Disable performance tests" OFF) + +if (KFR_NO_PERF_TESTS) + add_compile_definitions(KFR_NO_PERF_TESTS=1) +endif () + function (add_x86_test ARCH) set(NAME ${ARCH}) diff --git a/tests/dft_test.cpp b/tests/dft_test.cpp @@ -33,7 +33,7 @@ constexpr ctypes_t<float, double> dft_float_types{}; constexpr ctypes_t<float> dft_float_types{}; #endif -#if defined(CMT_ARCH_X86) +#if defined(CMT_ARCH_X86) && !defined(KFR_NO_PERF_TESTS) static void full_barrier() {