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
Data arrays in FFTW must be in row major format (http://www.fftw.org/fftw3_doc/Row_002dmajor-Format.html). Currently, xtensor-fftw defines output arrays as row major, but it does not check for row major-ness on the input arrays. Should this be done or do we leave it to the user?
The text was updated successfully, but these errors were encountered:
In the meantime, in some places, I have made the xarrays explicitly row-major. This should be done everywhere. Especially now that xtensor 0.14 has added full column-major support, we should make the basic functions explicitly row-major. Conversion from column- to row-major arrays should probably be xtensor functionality.
Data arrays in FFTW must be in row major format (http://www.fftw.org/fftw3_doc/Row_002dmajor-Format.html). Currently, xtensor-fftw defines output arrays as row major, but it does not check for row major-ness on the input arrays. Should this be done or do we leave it to the user?
The text was updated successfully, but these errors were encountered: