Skip to content

Commit f757722

Browse files
committed
CI: test_jacobi_svd: Reduce dim from 100 to 30
1 parent 866750e commit f757722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_jacobi_svd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
@pytest.mark.parametrize("cls", _classes)
3030
@pytest.mark.parametrize("options", _options)
3131
def test_jacobi(cls, options):
32-
dim = 100
32+
dim = 30
3333
rng = np.random.default_rng()
3434
A = rng.random((dim, dim))
3535
A = (A + A.T) * 0.5 + np.diag(10.0 + rng.random(dim))

0 commit comments

Comments
 (0)