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
The reason why this is happening is that .into_shape() uses the memory order of the elements, which is not necessarily standard order. This behavior is quite bad because it's not always easy to determine what memory order an array will have. The behavior of .into_shape() needs to be changed. Please feel free to add comments to #390.
I applied
reversed_axes
to get f-order array and then calledinto_shape
:I expected
a3
to be[0.0, 4.0, 2.0, 6.0, 1.0, 5.0, 3.0, 7.0]
, but the result was:Is this an expected behavior?
The text was updated successfully, but these errors were encountered: