Skip to content

Commit

Permalink
[to-squash] FFT2n.h
Browse files Browse the repository at this point in the history
  • Loading branch information
lamphamsy committed Dec 20, 2018
1 parent 5990740 commit 4e24a3c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fft_2n.h
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,7 @@ void Radix2<T>::fft_inv(vec::Buffers<T>& output, vec::Buffers<T>& input)
unsigned m = len / 2;

if (input_len < len) {
const unsigned input_len_power_2 =
arith::ceil2<unsigned>(input_len);
const unsigned input_len_power_2 = arith::ceil2<unsigned>(input_len);
for (; i < input_len_power_2; ++i) {
memset(o_mem[i], 0, buf_size);
}
Expand Down

0 comments on commit 4e24a3c

Please sign in to comment.