diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-07-15 18:53:18 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2021-07-15 19:12:35 -0600 |
commit | 4b65ab61d47c7b537aa0807545c1b67e7e7abb0e (patch) | |
tree | 85e83ac2157d2dcec1bdf063fa72577c1fa15a36 /numpy/linalg/tests | |
parent | a4e931f15e87cada0b9bb9ad80378115e72ba7ba (diff) | |
download | numpy-4b65ab61d47c7b537aa0807545c1b67e7e7abb0e.tar.gz |
MAINT: Disable test_blas64_dot.
This test is failing due to system oom during amd64 wheel tests
with ILP64 OpenBLAS. Should not be run on account of memory
restrictions, but evidently those are not reliably reported
to the docker container running the tests.
Diffstat (limited to 'numpy/linalg/tests')
-rw-r--r-- | numpy/linalg/tests/test_linalg.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/numpy/linalg/tests/test_linalg.py b/numpy/linalg/tests/test_linalg.py index 4c54c0b53..dd059fb63 100644 --- a/numpy/linalg/tests/test_linalg.py +++ b/numpy/linalg/tests/test_linalg.py @@ -2113,10 +2113,11 @@ def test_unsupported_commontype(): linalg.cholesky(arr) -@pytest.mark.slow -@pytest.mark.xfail(not HAS_LAPACK64, run=False, - reason="Numpy not compiled with 64-bit BLAS/LAPACK") -@requires_memory(free_bytes=16e9) +#@pytest.mark.slow +#@pytest.mark.xfail(not HAS_LAPACK64, run=False, +# reason="Numpy not compiled with 64-bit BLAS/LAPACK") +#@requires_memory(free_bytes=16e9) +@pytest.mark.skip(reason="Bad memory reports lead to OOM in ci testing") def test_blas64_dot(): n = 2**32 a = np.zeros([1, n], dtype=np.float32) |