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
For out-of-place FFTs, it should be possible to perform some of the intermediate FFTs in-place, which may lead to memory savings and maybe a small speed-up.
For instance, a 3D r2c FFT is composed of three FFTs: RFFT(x) -> FFT(y) -> FFT(z). Here, the c2c FFTs could be done in-place.
The text was updated successfully, but these errors were encountered:
For out-of-place FFTs, it should be possible to perform some of the intermediate FFTs in-place, which may lead to memory savings and maybe a small speed-up.
For instance, a 3D r2c FFT is composed of three FFTs:
RFFT(x) -> FFT(y) -> FFT(z)
. Here, the c2c FFTs could be done in-place.The text was updated successfully, but these errors were encountered: