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 5efa7b408628f83764e0678378c5bd0888e36907
parent aee9a300d5a72738d8a32222e65b9ab4c64df0af
Author: [email protected] <[email protected]>
Date:   Sun,  3 Dec 2023 16:54:14 +0000

override_cpu

Diffstat:
Minclude/kfr/runtime/cpuid_auto.hpp | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/include/kfr/runtime/cpuid_auto.hpp b/include/kfr/runtime/cpuid_auto.hpp @@ -59,4 +59,11 @@ static char dummyvar = init_dummyvar(); */ inline cpu_t get_cpu() { return internal_generic::cpu_v(); } +inline cpu_t override_cpu(cpu_t cpu) +{ + cpu_t previous = internal_generic::cpu_v(); + internal_generic::cpu_v() = cpu; + return previous; +} + } // namespace kfr