We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04e901d commit deb18f8Copy full SHA for deb18f8
fastremap/fastremap.pyx
@@ -1063,7 +1063,10 @@ def _unique_via_array(
1063
(max_label+1,), dtype=np.uint64
1064
)
1065
cdef cnp.ndarray[uintptr_t, ndim=1] index
1066
-
+
1067
+ # NOTE: This behavior differs from Numpy because it
1068
+ # may be iterating in F order, whereas numpy iterates in
1069
+ # C order.
1070
cdef uintptr_t sentinel = np.iinfo(np.uintp).max
1071
if return_index:
1072
index = np.full(
0 commit comments