添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
力能扛鼎的冰棍  ·  [Python] curve fitting·  1 周前    · 
傻傻的野马  ·  [Python] SciPy ...·  1 周前    · 
重情义的杯子  ·  scipy.interpolate.Rbf ...·  2 周前    · 
失眠的玉米  ·  Multidimensional ...·  3 周前    · 
很酷的莴苣  ·  贴吧小程序·  1 月前    · 
闯红灯的大熊猫  ·  IIS – 一亩园·  2 月前    · 
傻傻的课本  ·  10 things you didn’t ...·  5 月前    · 

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I noticed that the dask FFT wrapper internally uses numpy 's FFT.
Unless this is done to avoid a scipy dependency, I'd suggest switching to scipy.fft (not scipy.fftpack , which is now legacy) instead.
The advantage of scipy.fft is that it is much faster than numpy.fft when transforming multi-D arrays (even if only one axis is transformed), because it uses vector instructions where available. In addition to standard FFTs it also provides DCTs, DSTs and Hartley transforms. Optional shared-memory parallelization is available, and there are dedicated functions for single-precision transforms.