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 9ff21216745a33e773a79f9dce2ba120832c1a30
parent 96ded935387cf0c116ac67bd5dc1f754efa9d5e5
Author: [email protected] <[email protected]>
Date:   Mon, 18 Jul 2016 14:06:13 +0300

Default width if width==0

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

diff --git a/include/kfr/base/expression.hpp b/include/kfr/base/expression.hpp @@ -238,8 +238,7 @@ KFR_INLINE internal::expression_function<decay<Fn>, internal::arg<Args>...> bind std::forward<Args>(args)...); } -template <typename Tout, cpu_t c = cpu_t::native, size_t width = internal::get_vector_width<Tout, c>(2, 4), - typename OutFn, typename Fn> +template <typename Tout, cpu_t c = cpu_t::native, size_t width = 0, typename OutFn, typename Fn> KFR_INLINE void process(OutFn&& outfn, const Fn& fn, size_t size) { static_assert(is_output_expression<OutFn>::value, "OutFn must be an expression"); @@ -252,7 +251,8 @@ KFR_INLINE void process(OutFn&& outfn, const Fn& fn, size_t size) using Tin = conditional<is_generic<Fn>::value, Tout, value_type_of<Fn>>; size_t i = 0; - internal::process_cycle<Tout, Tin, width>(std::forward<OutFn>(outfn), fn, i, size); + internal::process_cycle<Tout, Tin, width == 0 ? internal::get_vector_width<Tout, c>(2, 4) : width>( + std::forward<OutFn>(outfn), fn, i, size); internal::process_cycle<Tout, Tin, comp>(std::forward<OutFn>(outfn), fn, i, size); fn.end_block(size);