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
This would be a breaking change and hence painful for users
I used to have the orientation this way and switched it since Fortran order made grabbing an entire point / column at once important to happen with data locality
The data-contiguous argument goes away if we internally use C-order (for Python mode) instead of F-order
The text was updated successfully, but these errors were encountered:
So I just don't have the bandwidth to make a change like this (especially since it'll be such a breaking change).
For anyone that comes across here, you can use C-ordered NumPy arrays (the default ordering in most situations) and just pass in the transpose of those arrays with copy=False. For example:
See:
cc @anntzer
Some notes:
The text was updated successfully, but these errors were encountered: