diff options
| author | Matti Picus <matti.picus@gmail.com> | 2021-07-16 09:38:50 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-16 09:38:50 +0300 |
| commit | 93a9ed22b6fb6ecd6c4a10382306b1e5c6d06abc (patch) | |
| tree | 85e83ac2157d2dcec1bdf063fa72577c1fa15a36 /numpy | |
| parent | a4e931f15e87cada0b9bb9ad80378115e72ba7ba (diff) | |
| parent | 4b65ab61d47c7b537aa0807545c1b67e7e7abb0e (diff) | |
| download | numpy-93a9ed22b6fb6ecd6c4a10382306b1e5c6d06abc.tar.gz | |
Merge pull request #19491 from charris/disable-blas64_dot-test
MAINT: Disable test_blas64_dot.
Diffstat (limited to 'numpy')
| -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) |
