commit d27fb1318e414b12444a603e45126e8112df81c5
parent 5c291923b9f3b9071e5980ca2493839f2cbaa606
Author: [email protected] <[email protected]>
Date: Fri, 23 Nov 2018 10:58:55 +0000
Fix to_fmt
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/kfr/dft/dft-src.cpp b/include/kfr/dft/dft-src.cpp
@@ -992,7 +992,8 @@ void dft_plan_real<T>::to_fmt(complex<T>* out, dft_pack_format fmt) const
const cvec<T, 1> dc = cread<1>(out);
const size_t count = csize / 2;
- block_process(count, csizes_t<width, 1>(), [=](size_t i, auto w) {
+ block_process(count - 1, csizes_t<width, 1>(), [&](size_t i, auto w) {
+ i++;
constexpr size_t width = val_of(decltype(w)());
constexpr size_t widthm1 = width - 1;
const cvec<T, width> tw = cread<width>(rtwiddle.data() + i);