@@ -32,15 +32,27 @@ array_api_tests/test_linalg.py::test_trace
32
32
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
33
33
array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[__mod__(x1, x2)]
34
34
array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[__imod__(x1, x2)]
35
- #
36
- # array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[remainder(x1, x2)]
35
+ # floating point inaccuracy
36
+ array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[remainder(x1, x2)]
37
+
38
+ # cupy (arg)min/max wrong with infinities
39
+ # https://github.com/cupy/cupy/issues/7424
37
40
array_api_tests/test_searching_functions.py::test_argmax
41
+ array_api_tests/test_searching_functions.py::test_argmin
42
+ array_api_tests/test_statistical_functions.py::test_min
43
+ array_api_tests/test_statistical_functions.py::test_max
44
+
45
+ # testsuite incorrectly thinks meshgrid doesn't have indexing argument
46
+ # (https://github.com/data-apis/array-api-tests/issues/171)
38
47
array_api_tests/test_signatures.py::test_func_signature[meshgrid]
48
+
49
+ # We cannot add array attributes
39
50
array_api_tests/test_signatures.py::test_array_method_signature[__array_namespace__]
40
51
array_api_tests/test_signatures.py::test_array_method_signature[__index__]
41
52
array_api_tests/test_signatures.py::test_array_method_signature[to_device]
42
- array_api_tests/test_sorting_functions.py::test_argsort
43
- array_api_tests/test_sorting_functions.py::test_sort
53
+
54
+ # We do not attempt to workaround special cases (and the operator method ones
55
+
44
56
array_api_tests/test_special_cases.py::test_unary[abs(x_i is -0) -> +0]
45
57
array_api_tests/test_special_cases.py::test_unary[__abs__(x_i is -0) -> +0]
46
58
array_api_tests/test_special_cases.py::test_unary[asin(x_i is -0) -> -0]
@@ -148,4 +160,3 @@ array_api_tests/test_special_cases.py::test_iop[__imod__(isfinite(x1_i) and x1_i
148
160
array_api_tests/test_special_cases.py::test_iop[__imod__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> x2_i]
149
161
array_api_tests/test_special_cases.py::test_iop[__imod__(isfinite(x1_i) and x1_i < 0 and x2_i is +infinity) -> x2_i]
150
162
array_api_tests/test_special_cases.py::test_iop[__imod__(isfinite(x1_i) and x1_i < 0 and x2_i is -infinity) -> x1_i]
151
- array_api_tests/test_statistical_functions.py::test_min
0 commit comments