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 85a3d0f0a626ded3886de6a6a36bb7ddaab3a028
parent 216f84a92a176a124fa0700e2bc2e7d6710d9e5c
Author: [email protected] <[email protected]>
Date:   Thu,  1 Feb 2024 10:42:54 +0000

Fix complex operators

Diffstat:
Minclude/kfr/simd/impl/basicoperators_complex.hpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/kfr/simd/impl/basicoperators_complex.hpp b/include/kfr/simd/impl/basicoperators_complex.hpp @@ -99,6 +99,8 @@ KFR_INTRINSIC vec<complex<T>, N> band(const vec<complex<T>, N>& x, const vec<com return fn(vec<complex<T>, N>(x), y); \ } +KFR_COMPLEX_OP_CVT(add) +KFR_COMPLEX_OP_CVT(sub) KFR_COMPLEX_OP_CVT(mul) KFR_COMPLEX_OP_CVT(div) KFR_COMPLEX_OP_CVT(band)