apps/fft Does it have support for 1D FFT #5188
DeepaliReddy
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was trying to use the apps/fft example for 1D FFT.
In fft_generator.cpp, it is mentioned that "Size of second dimension, may be zero for 1D FFT."
Therefore, I had given size0=16 & size1=0 for 1D FFT, but when the code goes through the below mentioned snippet(in fft.cpp),it works for size0 but ends up in an infinite loop for size1 as the while loop's condition is always true when N=0 :
A few queries-
Does the fft example have support for 1D FFT or it is only supported for 2D.
If it does have support for 1D FFT, is making the size1 =0 suffice or is there anything else that needs to be done for it to support 1D.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions