|
| 1 | +# asarray(copy=False) is not yet implemented |
| 2 | +array_api_tests/test_creation_functions.py::test_asarray_arrays |
| 3 | + |
| 4 | +# finfo(float32).eps returns float32 but should return float |
| 5 | +array_api_tests/test_data_type_functions.py::test_finfo[float32] |
| 6 | + |
| 7 | +# Array methods and attributes not already on np.ndarray cannot be wrapped |
| 8 | +array_api_tests/test_has_names.py::test_has_names[array_method-to_device] |
| 9 | +array_api_tests/test_has_names.py::test_has_names[array_attribute-device] |
| 10 | + |
| 11 | +# linalg tests require cleanups |
| 12 | +# https://github.com/data-apis/array-api-tests/pull/101 |
| 13 | +array_api_tests/test_linalg.py::test_solve |
| 14 | + |
| 15 | +# NumPy deviates in some special cases for floordiv |
| 16 | +array_api_tests/test_special_cases.py::test_binary[floor_divide(x1_i is +infinity and isfinite(x2_i) and x2_i > 0) -> +infinity] |
| 17 | +array_api_tests/test_special_cases.py::test_binary[floor_divide(x1_i is +infinity and isfinite(x2_i) and x2_i < 0) -> -infinity] |
| 18 | +array_api_tests/test_special_cases.py::test_binary[floor_divide(x1_i is -infinity and isfinite(x2_i) and x2_i > 0) -> -infinity] |
| 19 | +array_api_tests/test_special_cases.py::test_binary[floor_divide(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity] |
| 20 | +array_api_tests/test_special_cases.py::test_binary[floor_divide(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0] |
| 21 | +array_api_tests/test_special_cases.py::test_binary[floor_divide(isfinite(x1_i) and x1_i < 0 and x2_i is +infinity) -> -0] |
| 22 | +array_api_tests/test_special_cases.py::test_binary[__floordiv__(x1_i is +infinity and isfinite(x2_i) and x2_i > 0) -> +infinity] |
| 23 | +array_api_tests/test_special_cases.py::test_binary[__floordiv__(x1_i is +infinity and isfinite(x2_i) and x2_i < 0) -> -infinity] |
| 24 | +array_api_tests/test_special_cases.py::test_binary[__floordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i > 0) -> -infinity] |
| 25 | +array_api_tests/test_special_cases.py::test_binary[__floordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity] |
| 26 | +array_api_tests/test_special_cases.py::test_binary[__floordiv__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0] |
| 27 | +array_api_tests/test_special_cases.py::test_binary[__floordiv__(isfinite(x1_i) and x1_i < 0 and x2_i is +infinity) -> -0] |
| 28 | +array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is +infinity and isfinite(x2_i) and x2_i > 0) -> +infinity] |
| 29 | +array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is +infinity and isfinite(x2_i) and x2_i < 0) -> -infinity] |
| 30 | +array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i > 0) -> -infinity] |
| 31 | +array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(x1_i is -infinity and isfinite(x2_i) and x2_i < 0) -> +infinity] |
| 32 | +array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i > 0 and x2_i is -infinity) -> -0] |
| 33 | +array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and x1_i < 0 and x2_i is +infinity) -> -0] |
| 34 | + |
| 35 | +# https://github.com/numpy/numpy/issues/21213 |
| 36 | +array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is -infinity and x2_i > 0 and not (x2_i.is_integer() and x2_i % 2 == 1)) -> +infinity] |
| 37 | +array_api_tests/test_special_cases.py::test_binary[__pow__(x1_i is -0 and x2_i > 0 and not (x2_i.is_integer() and x2_i % 2 == 1)) -> +0] |
| 38 | +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] |
| 39 | +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] |
| 40 | +array_api_tests/meta/test_hypothesis_helpers.py::test_symmetric_matrices |
| 41 | + |
| 42 | +# The test suite is incorrectly checking sums that have loss of significance |
| 43 | +# (https://github.com/data-apis/array-api-tests/issues/168) |
| 44 | +array_api_tests/test_statistical_functions.py::test_sum |
| 45 | + |
| 46 | +# fft functions are not yet supported |
| 47 | +# (https://github.com/data-apis/array-api-compat/issues/67) |
| 48 | +array_api_tests/test_fft.py::test_fft |
| 49 | +array_api_tests/test_fft.py::test_ifft |
| 50 | +array_api_tests/test_fft.py::test_fftn |
| 51 | +array_api_tests/test_fft.py::test_ifftn |
| 52 | +array_api_tests/test_fft.py::test_rfft |
| 53 | +array_api_tests/test_fft.py::test_irfft |
| 54 | +array_api_tests/test_fft.py::test_rfftn |
| 55 | +array_api_tests/test_fft.py::test_irfftn |
| 56 | +array_api_tests/test_fft.py::test_hfft |
| 57 | +array_api_tests/test_fft.py::test_ihfft |
0 commit comments