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
// Determine if the array can be stored contiguously...
144
+
if ( len==0||stdlib_ndarray_iteration_order( ndims, strides ) ==0 ) {
145
+
// If an array does not contain any elements, then no data to store, and, if the array is unordered, adjacent array elements are not guaranteed to be stored next to each other.
146
+
contiguous=0;
147
+
} else {
148
+
// Ensure that the array is compatible with a single memory segment:
// Determine if the array can be stored contiguously...
207
-
if ( len==0||arr->_iterationOrder==0 ) {
208
-
// If an array does not contain any elements, then no data to store, and, if the array is unordered, adjacent array elements are not guaranteed to be stored next to each other.
209
-
contiguous=0;
210
-
} else {
211
-
// Ensure that the array is compatible with a single memory segment:
0 commit comments