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 4c86148 commit 0579afaCopy full SHA for 0579afa
dpnp/tests/third_party/cupy/statistics_tests/test_histogram.py
@@ -9,7 +9,7 @@
9
from dpnp.tests.third_party.cupy import testing
10
11
# Note that numpy.bincount does not support uint64 on 64-bit environment
12
-# as it casts an input array to intp.
+# as it casts an input array to intp (planned to support since 2.2.4).
13
# And it does not support uint32, int64 and uint64 on 32-bit environment.
14
_all_types = (
15
numpy.float16,
@@ -28,6 +28,9 @@
28
_all_types = _all_types + (numpy.int64, numpy.uint32)
29
_signed_types = _signed_types + (numpy.int64,)
30
31
+if numpy_version() > "2.2.3":
32
+ _all_types = _all_types + (numpy.uint64,)
33
+
34
35
def for_all_dtypes_bincount(name="dtype"):
36
return testing.for_dtypes(_all_types, name=name)
0 commit comments