@@ -71,20 +71,25 @@ array_api_tests/test_signatures.py::test_func_signature[argmin]
71
71
# type promotion issues
72
72
array_api_tests/test_manipulation_functions.py::test_concat
73
73
array_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)]
74
75
array_api_tests/test_operators_and_elementwise_functions.py::test_add[__iadd__(x, s)]
75
76
array_api_tests/test_operators_and_elementwise_functions.py::test_add[add(x1, x2)]
76
77
array_api_tests/test_operators_and_elementwise_functions.py::test_atan2
77
78
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x, s)]
78
79
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_and[__and__(x1, x2)]
79
80
array_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)]
80
82
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_left_shift[__ilshift__(x, s)]
81
83
array_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)]
82
86
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__ior__(x, s)]
83
87
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x, s)]
84
88
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[__or__(x1, x2)]
85
89
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_or[bitwise_or(x1, x2)]
86
90
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[__irshift__(x, s)]
87
91
array_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)]
88
93
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_right_shift[bitwise_right_shift(x1, x2)]
89
94
array_api_tests/test_operators_and_elementwise_functions.py::test_bitwise_xor[__ixor__(x, s)]
90
95
array_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
94
99
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x, s)]
95
100
array_api_tests/test_operators_and_elementwise_functions.py::test_divide[__truediv__(x1, x2)]
96
101
array_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)]
97
104
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x, s)]
98
105
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__floordiv__(x1, x2)]
99
106
array_api_tests/test_operators_and_elementwise_functions.py::test_floor_divide[__ifloordiv__(x, s)]
100
107
array_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)]
101
111
array_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)]
102
116
array_api_tests/test_operators_and_elementwise_functions.py::test_logaddexp
117
+ array_api_tests/test_operators_and_elementwise_functions.py::test_maximum
103
118
array_api_tests/test_operators_and_elementwise_functions.py::test_minimum
104
119
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__imul__(x, s)]
105
120
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x, s)]
106
121
array_api_tests/test_operators_and_elementwise_functions.py::test_multiply[__mul__(x1, x2)]
107
122
array_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)]
108
125
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__ipow__(x, s)]
109
126
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x, s)]
110
127
array_api_tests/test_operators_and_elementwise_functions.py::test_pow[__pow__(x1, x2)]
0 commit comments