@@ -71,20 +71,25 @@ array_api_tests/test_signatures.py::test_func_signature[argmin]
7171# type promotion issues
7272array_api_tests/test_manipulation_functions.py::test_concat
7373array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x, s)]
74+ array_api_tests/test_operators_and_elementwise_functions.py::test_add[__add__(x1, x2)]
7475array_api_tests/test_operators_and_elementwise_functions.py::test_add[__iadd__(x, s)]
7576array_api_tests/test_operators_and_elementwise_functions.py::test_add[add(x1, x2)]
7677array_api_tests/test_operators_and_elementwise_functions.py::test_atan2
7778array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x, s)]
7879array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x1, x2)]
7980array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__iand__(x, s)]
81+ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[bitwise_and(x1, x2)]
8082array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__ilshift__(x, s)]
8183array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__lshift__(x, s)]
84+ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__lshift__(x1, x2)]
85+ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[bitwise_left_shift(x1, x2)]
8286array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__ior__(x, s)]
8387array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x, s)]
8488array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x1, x2)]
8589array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[bitwise_or(x1, x2)]
8690array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__irshift__(x, s)]
8791array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__rshift__(x, s)]
92+ array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__rshift__(x1, x2)]
8893array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[bitwise_right_shift(x1, x2)]
8994array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__ixor__(x, s)]
9095array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__xor__(x, s)]
@@ -94,17 +99,29 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_copysign
9499array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
95100array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
96101array_api_tests/test_operators_and_elementwise_functions.py::test_divide[divide(x1, x2)]
102+ array_api_tests/test_operators_and_elementwise_functions.py::test_equal[__eq__(x1, x2)]
103+ array_api_tests/test_operators_and_elementwise_functions.py::test_equal[equal(x1, x2)]
97104array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x, s)]
98105array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x1, x2)]
99106array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
100107array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[floor_divide(x1, x2)]
108+ array_api_tests/test_operators_and_elementwise_functions.py::test_greater[__gt__(x1, x2)]
109+ array_api_tests/test_operators_and_elementwise_functions.py::test_greater[greater(x1, x2)]
110+ array_api_tests/test_operators_and_elementwise_functions.py::test_greater_equal[greater_equal(x1, x2)]
101111array_api_tests/test_operators_and_elementwise_functions.py::test_hypot
112+ array_api_tests/test_operators_and_elementwise_functions.py::test_less[__lt__(x1, x2)]
113+ array_api_tests/test_operators_and_elementwise_functions.py::test_less[less(x1, x2)]
114+ array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[__le__(x1, x2)]
115+ array_api_tests/test_operators_and_elementwise_functions.py::test_less_equal[less_equal(x1, x2)]
102116array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
117+ array_api_tests/test_operators_and_elementwise_functions.py::test_maximum
103118array_api_tests/test_operators_and_elementwise_functions.py::test_minimum
104119array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
105120array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
106121array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
107122array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[multiply(x1, x2)]
123+ array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[__ne__(x1, x2)]
124+ array_api_tests/test_operators_and_elementwise_functions.py::test_not_equal[not_equal(x1, x2)]
108125array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__ipow__(x, s)]
109126array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x, s)]
110127array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x1, x2)]
0 commit comments