Skip to content

Commit 93a9ed2

Browse files
authored
Merge pull request numpy#19491 from charris/disable-blas64_dot-test
MAINT: Disable test_blas64_dot.
2 parents a4e931f + 4b65ab6 commit 93a9ed2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

numpy/linalg/tests/test_linalg.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2113,10 +2113,11 @@ def test_unsupported_commontype():
21132113
linalg.cholesky(arr)
21142114

21152115

2116-
@pytest.mark.slow
2117-
@pytest.mark.xfail(not HAS_LAPACK64, run=False,
2118-
reason="Numpy not compiled with 64-bit BLAS/LAPACK")
2119-
@requires_memory(free_bytes=16e9)
2116+
#@pytest.mark.slow
2117+
#@pytest.mark.xfail(not HAS_LAPACK64, run=False,
2118+
# reason="Numpy not compiled with 64-bit BLAS/LAPACK")
2119+
#@requires_memory(free_bytes=16e9)
2120+
@pytest.mark.skip(reason="Bad memory reports lead to OOM in ci testing")
21202121
def test_blas64_dot():
21212122
n = 2**32
21222123
a = np.zeros([1, n], dtype=np.float32)

0 commit comments

Comments
 (0)