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 ee3c70f6c57b5208841876b29d57bbc7a17edebc
parent 0818eec441207286d9896f8d36d859950583f12c
Author: [email protected] <[email protected]>
Date:   Tue,  3 Dec 2019 19:29:13 +0000

Build time optimizations

Diffstat:
Minclude/kfr/cometa.hpp | 11++++-------
1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/include/kfr/cometa.hpp b/include/kfr/cometa.hpp @@ -803,18 +803,15 @@ using indicesfor_t = cvalseq_t<size_t, sizeof...(List), 0>; template <size_t group, size_t... indices, size_t N = group * sizeof...(indices)> constexpr inline auto scale(csizes_t<indices...>) CMT_NOEXCEPT { - return concat_lists<csizeseq_t<group, group * indices>...>{}; - // return i[csizeseq_t<N>() / csize_t<group>()] * csize_t<group>() + csizeseq_t<N>() % - // csize_t<group>(); + using Tlist = typename details::concat_impl<csizeseq_t<group, group * indices>...>::type; + return Tlist{}; } template <size_t group, size_t... indices, size_t N = group * sizeof...(indices)> constexpr inline auto scale() CMT_NOEXCEPT { - return concat_lists<csizeseq_t<group, group * indices>...>{}; - // return cconcat(csizeseq_t<group, group * indices>()...); - // return i[csizeseq_t<N>() / csize_t<group>()] * csize_t<group>() + csizeseq_t<N>() % - // csize_t<group>(); + using Tlist = typename details::concat_impl<csizeseq_t<group, group * indices>...>::type; + return Tlist{}; } namespace details