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
// If the user indicated that "any" order suffices (meaning the user does not care about ndarray order), then we use the default order, unless the input ndarray is either unequivocally "row-major" or "column-major" or configured as such....
228
228
if(order==='any'){
229
229
// Compute the layout order in order to ascertain whether an ndarray can be considered both "row-major" and "column-major":
230
-
ord=strides2order(getStrides(buffer,false));
230
+
ord=strides2order(getStrides(buffer));
231
231
232
232
// If the ndarray can be considered both "row-major" and "column-major", then use the default order; otherwise, use the ndarray's stated layout order...
0 commit comments