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 68a33bc1dc8d193a1abbc5713188c90652931a47
parent 429aef491a9d9641ddd83f452ea39ab3cbe9360f
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Tue, 24 Jan 2023 05:23:23 +0000

Fix neon register count setting

Diffstat:
Minclude/kfr/simd/platform.hpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/include/kfr/simd/platform.hpp b/include/kfr/simd/platform.hpp @@ -242,6 +242,7 @@ struct platform<cpu_t::common> template <> struct platform<cpu_t::neon> : platform<cpu_t::common> { + constexpr static size_t simd_register_count = 32; }; template <> struct platform<cpu_t::neon64> : platform<cpu_t::neon>