@@ -119,6 +119,7 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__
119
119
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x, s)]
120
120
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x1, x2)]
121
121
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[bitwise_xor(x1, x2)]
122
+ array_api_tests/test_operators_and_elementwise_functions.py::test_copysign
122
123
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
123
124
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
124
125
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[divide(x1, x2)]
@@ -131,11 +132,13 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[f
131
132
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[__gt__(x1, x2)]
132
133
array_api_tests/test_operators_and_elementwise_functions.py::test_greater[greater(x1, x2)]
133
134
array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[greater_equal(x1, x2)]
135
+ array_api_tests/test_operators_and_elementwise_functions.py::test_hypot
134
136
array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
135
137
array_api_tests/test_operators_and_elementwise_functions.py::test_less[less(x1, x2)]
136
138
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[__le__(x1, x2)]
137
139
array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[less_equal(x1, x2)]
138
140
array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
141
+ array_api_tests/test_operators_and_elementwise_functions.py::test_minimum
139
142
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
140
143
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
141
144
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
@@ -246,3 +249,21 @@ array_api_tests/test_special_cases.py::test_binary[remainder(x1_i is +0 and x2_i
246
249
array_api_tests/test_special_cases.py::test_binary[remainder(x1_i is -0 and x2_i < 0) -> -0]
247
250
array_api_tests/test_special_cases.py::test_binary[remainder(x1_i is -0 and x2_i > 0) -> +0]
248
251
array_api_tests/test_special_cases.py::test_iop[__iadd__(x1_i is -0 and x2_i is -0) -> -0]
252
+
253
+ # 2023.12 support
254
+ array_api_tests/test_has_names.py::test_has_names[statistical-cumulative_sum]
255
+ array_api_tests/test_has_names.py::test_has_names[info-__array_namespace_info__]
256
+ array_api_tests/test_inspection_functions.py::test_array_namespace_info
257
+ array_api_tests/test_inspection_functions.py::test_array_namespace_info_dtypes
258
+ array_api_tests/test_searching_functions.py::test_searchsorted
259
+ array_api_tests/test_signatures.py::test_func_signature[cumulative_sum]
260
+ array_api_tests/test_signatures.py::test_func_signature[from_dlpack]
261
+ array_api_tests/test_signatures.py::test_func_signature[astype]
262
+ array_api_tests/test_signatures.py::test_func_signature[__array_namespace_info__]
263
+ array_api_tests/test_signatures.py::test_array_method_signature[__dlpack__]
264
+ array_api_tests/test_signatures.py::test_info_func_signature[capabilities]
265
+ array_api_tests/test_signatures.py::test_info_func_signature[default_device]
266
+ array_api_tests/test_signatures.py::test_info_func_signature[default_dtypes]
267
+ array_api_tests/test_signatures.py::test_info_func_signature[devices]
268
+ array_api_tests/test_signatures.py::test_info_func_signature[dtypes]
269
+ array_api_tests/test_statistical_functions.py::test_cumulative_sum
0 commit comments