Improving FFT performance in Python

后端 未结 6 883
独厮守ぢ
独厮守ぢ 2020-11-30 02:24

What is the fastest FFT implementation in Python?

It seems numpy.fft and scipy.fftpack both are based on fftpack, and not FFTW. Is fftpack as fast as FFTW? What abou

6条回答
  •  情话喂你
    2020-11-30 03:05

    FFTW3 seems to be the fastest implementation available that's nicely wrapped. The PyFFTW bindings in the first answer work. Here's some code that compares execution times: test_ffts.py

提交回复
热议问题