Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.

fft using tbb

akhal
Beginner
408 Views
Hej
I am new to tbb and trying out some stuff using tbb. is there some good implementation of fast-fourier-transform using tbb available? Thanks anyway
0 Kudos
3 Replies
Tux__the_Linux_Pengu
408 Views
Doesn't seem like it. I guess you could either run FFT on multiple objects using a parallel_for or a parallel_for_each, or write your own algorithm using TBB that does FFT on a single object. After looking here, I found that there have been algorithms for the FFTW library in other parallel technologies, like Cilk, MPI, and just basic threads. Maybe you could convert those!

EDIT: Typo.
EDIT 2: Hey wait, they've written parallel FFT for other parallel technologies...
0 Kudos
akhal
Beginner
408 Views
Thanks... I am trying them, hope to find something:)
0 Kudos
Reply