File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ array_api_tests/test_set_functions.py::test_unique_counts
76
76
array_api_tests/test_set_functions.py::test_unique_inverse
77
77
array_api_tests/test_set_functions.py::test_unique_values
78
78
79
+ # The test suite is incorrectly checking sums that have loss of significance
80
+ # (https://github.com/data-apis/array-api-tests/issues/168)
81
+ array_api_tests/test_statistical_functions.py::test_sum
82
+
79
83
# NumPy 1.21 doesn't support NPY_PROMOTION_STATE=weak, so many tests fail with
80
84
# type promotion issues
81
85
array_api_tests/test_manipulation_functions.py::test_concat
@@ -149,8 +153,10 @@ array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is +0 and x2_i <
149
153
array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is +0 and x2_i > 0) -> +0]
150
154
array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is -0 and x2_i < 0) -> -0]
151
155
array_api_tests/test_special_cases.py::test_binary[__mod__(x1_i is -0 and x2_i > 0) -> +0]
156
+ array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) < 1 and x2_i is +infinity) -> +0]
152
157
array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) < 1 and x2_i is -infinity) -> +infinity]
153
158
array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) > 1 and x2_i is +infinity) -> +infinity]
159
+ array_api_tests/test_special_cases.py::test_binary[__pow__(abs(x1_i) > 1 and x2_i is -infinity) -> +0]
154
160
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i < 0 and isfinite(x1_i) and isfinite(x2_i) and not x2_i.is_integer()) -> NaN]
155
161
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is +0 and x2_i < 0) -> +infinity]
156
162
array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is +0 and x2_i > 0) -> +0]
Original file line number Diff line number Diff line change @@ -46,3 +46,7 @@ array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is -0 and x2_i >
46
46
array_api_tests/test_special_cases.py::test_iop[__ipow__(x1_i is -infinity and x2_i > 0 and not (x2_i.is_integer() and x2_i % 2 == 1)) -> +infinity]
47
47
array_api_tests/test_special_cases.py::test_iop[__ipow__(x1_i is -0 and x2_i > 0 and not (x2_i.is_integer() and x2_i % 2 == 1)) -> +0]
48
48
array_api_tests/meta/test_hypothesis_helpers.py::test_symmetric_matrices
49
+
50
+ # The test suite is incorrectly checking sums that have loss of significance
51
+ # (https://github.com/data-apis/array-api-tests/issues/168)
52
+ array_api_tests/test_statistical_functions.py::test_sum
You can’t perform that action at this time.
0 commit comments