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
finufft is based on fftw, which computes ffts in two steps. First it makes a plan, then it executes the plan. When running many ffts it is important not to recompute the same plan for every FFT, since this will cause a significant slowdown.
This is more of a next-generation stretch goal at baseline, but if we discover that computing plans takes significant time in high dimensions, we should consider exposing objects that allow caching them.
The text was updated successfully, but these errors were encountered:
eickenberg
changed the title
REF potentially make nn the more underlying set of objects or figure out a canonical way of storing plans in pytorch functions
REF/ENH potentially make nn the more underlying set of objects or figure out a canonical way of storing plans in pytorch functions
Oct 2, 2023
finufft is based on fftw, which computes ffts in two steps. First it makes a plan, then it executes the plan. When running many ffts it is important not to recompute the same plan for every FFT, since this will cause a significant slowdown.
This is more of a next-generation stretch goal at baseline, but if we discover that computing plans takes significant time in high dimensions, we should consider exposing objects that allow caching them.
The text was updated successfully, but these errors were encountered: