We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4e931f + 4b65ab6 commit 93a9ed2Copy full SHA for 93a9ed2
numpy/linalg/tests/test_linalg.py
@@ -2113,10 +2113,11 @@ def test_unsupported_commontype():
2113
linalg.cholesky(arr)
2114
2115
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)
+#@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)
2120
+@pytest.mark.skip(reason="Bad memory reports lead to OOM in ci testing")
2121
def test_blas64_dot():
2122
n = 2**32
2123
a = np.zeros([1, n], dtype=np.float32)
0 commit comments