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 2e60de46cd0e2af522126e4d6eff86365df6f75e
parent 60c88ce3709a6586b40f143082c0790889166610
Author: [email protected] <[email protected]>
Date:   Tue, 26 Jul 2016 13:17:33 +0300

Code formatting

Diffstat:
Minclude/kfr/base/complex.hpp | 5+----
Minclude/kfr/base/function.hpp | 4++--
2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/include/kfr/base/complex.hpp b/include/kfr/base/complex.hpp @@ -95,10 +95,7 @@ struct complex { return (make_vector(x) / make_vector(y))[0]; } - KFR_INTRIN friend complex operator-(const complex& x) - { - return (-make_vector(x))[0]; - } + KFR_INTRIN friend complex operator-(const complex& x) { return (-make_vector(x))[0]; } }; #endif #endif diff --git a/include/kfr/base/function.hpp b/include/kfr/base/function.hpp @@ -89,11 +89,11 @@ using mu64avx = mask<u64, vector_width<u64, cpu_t::avx2>>; #else using f32neon = vec<f32, 4>; using f64neon = vec<f64, 2>; -using i8neon = vec<i8, 16>; +using i8neon = vec<i8, 16>; using i16neon = vec<i16, 8>; using i32neon = vec<i32, 4>; using i64neon = vec<i64, 2>; -using u8neon = vec<u8, 16>; +using u8neon = vec<u8, 16>; using u16neon = vec<u16, 8>; using u32neon = vec<u32, 4>; using u64neon = vec<u64, 2>;