You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd notably accelerate and cut memory use for CWT, STFT, and others where we take abs after fft (many uses), by sparing allocations and assignments. Idea being to take modulus before the final assignment to each FFT bin. Less performant but still improving would be a simple abs on top of regular output, but done internally so sparing allocation.
Would FFTW be interested in implementing this? Is it already implemented somewhere? I'd appreciate pointers on this topic.
The text was updated successfully, but these errors were encountered:
Can modulus be reasonably integrated into FFTs?
It'd notably accelerate and cut memory use for CWT, STFT, and others where we take
abs
afterfft
(many uses), by sparing allocations and assignments. Idea being to take modulus before the final assignment to each FFT bin. Less performant but still improving would be a simpleabs
on top of regular output, but done internally so sparing allocation.Would FFTW be interested in implementing this? Is it already implemented somewhere? I'd appreciate pointers on this topic.
The text was updated successfully, but these errors were encountered: