File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[__sub
34
34
array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x, s)]
35
35
# floating point inaccuracy
36
36
array_api_tests/test_operators_and_elementwise_functions.py::test_remainder[remainder(x1, x2)]
37
+ # incomplete NEP50 support in CuPy 13.x (fixed in 14.0.0a1)
38
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[pow]
39
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[logaddexp]
40
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[nextafter]
41
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[hypot]
37
42
38
43
# cupy (arg)min/max wrong with infinities
39
44
# https://github.com/cupy/cupy/issues/7424
@@ -182,7 +187,6 @@ array_api_tests/test_signatures.py::test_func_signature[from_dlpack]
182
187
array_api_tests/test_signatures.py::test_array_method_signature[__dlpack__]
183
188
184
189
# 2024.12 support
185
- array_api_tests/test_signatures.py::test_func_signature[count_nonzero]
186
190
array_api_tests/test_signatures.py::test_func_signature[bitwise_and]
187
191
array_api_tests/test_signatures.py::test_func_signature[bitwise_left_shift]
188
192
array_api_tests/test_signatures.py::test_func_signature[bitwise_or]
Original file line number Diff line number Diff line change @@ -123,6 +123,13 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_subtract[subtr
123
123
array_api_tests/test_searching_functions.py::test_where
124
124
array_api_tests/test_special_cases.py::test_iop[__iadd__(x1_i is -0 and x2_i is -0) -> -0]
125
125
126
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[add]
127
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[divide]
128
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[hypot]
129
+ array_api_tests/test_operators_and_elementwise_functions.py::test_binary_with_scalars_real[subtract]
130
+
131
+ array_api_tests/test_operators_and_elementwise_functions.py::test_where_with_scalars
132
+
126
133
# 2023.12 support
127
134
array_api_tests/test_has_names.py::test_has_names[creation-from_dlpack]
128
135
array_api_tests/test_signatures.py::test_func_signature[from_dlpack]
Original file line number Diff line number Diff line change @@ -50,6 +50,8 @@ array_api_tests/test_signatures.py::test_func_signature[bitwise_right_shift]
50
50
array_api_tests/test_signatures.py::test_func_signature[bitwise_xor]
51
51
array_api_tests/test_data_type_functions.py::TestResultType::test_with_scalars
52
52
53
+ array_api_tests/test_operators_and_elementwise_functions.py::test_where_with_scalars
54
+
53
55
# Stubs have a comment: (**note**: libraries may return ``NaN`` to match Python behavior.); Apparently, NumPy does just that
54
56
array_api_tests/test_special_cases.py::test_binary[floor_divide(x1_i is +infinity and isfinite(x2_i) and x2_i > 0) -> +infinity]
55
57
array_api_tests/test_special_cases.py::test_binary[floor_divide(x1_i is +infinity and isfinite(x2_i) and x2_i < 0) -> -infinity]
You can’t perform that action at this time.
0 commit comments