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
Currently only C-style (row-major) arrays are supported. Extending this to Fortran-style (column-major) arrays would allow transposing an array in O(1) without copying, but would also bring additional difficulties for binary operations (there's no efficient way to add a C- and Fortran-style array).
The text was updated successfully, but these errors were encountered:
Currently only C-style (row-major) arrays are supported. Extending this to Fortran-style (column-major) arrays would allow transposing an array in O(1) without copying, but would also bring additional difficulties for binary operations (there's no efficient way to add a C- and Fortran-style array).
The text was updated successfully, but these errors were encountered: