Improving FFT performance in Python

后端 未结 6 878
独厮守ぢ
独厮守ぢ 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:02

    The pyFFTW3 package is inferior compared to the pyFFTW library, at least implementation wise. Since they both wrap the FFTW3 library I guess speed should be the same.

    https://pypi.python.org/pypi/pyFFTW

提交回复
热议问题