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 0ee4a81f2a710363b5242a3744e211eedb4ae00c
parent 21bb2e8d2ce0f40ec755fbd3f31e331a68e2dc10
Author: [email protected] <[email protected]>
Date:   Tue,  9 Aug 2016 06:33:49 +0300

New cpu code: neon64 for neon on aarch64

Diffstat:
Minclude/kfr/base/types.hpp | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/kfr/base/types.hpp b/include/kfr/base/types.hpp @@ -102,7 +102,7 @@ using imax = int64_t; using fmax = double; using f80 = long double; -#ifdef KFR_BASETYPE_F32 +#if defined(KFR_BASETYPE_F32) || defined(KFR_NO_NATIVE_F64) using fbase = f32; #else using fbase = f64; @@ -342,8 +342,9 @@ enum class cpu_t : int #endif #ifdef CMT_ARCH_ARM neon = 1, + neon64 = 2, lowest = static_cast<int>(neon), - highest = static_cast<int>(neon), + highest = static_cast<int>(neon64), #endif native = static_cast<int>(CMT_ARCH_NAME), runtime = -1,