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
Fix insidious issue where 1D complex and real transforms of C-contiguous and F-contiguous arrays of array rank > 2 holding the same data would differ.
The discrepancy comes from attempt to formulate 1D transform over such arrays as a single call to DftiCompute on equidistant vectors.
For this to work, in out-of-place mode, both input and output must both be either C-contiguous or F-contiguous.
Previously the output was always allocated as C-contiguous empty blob.
0 commit comments