Skip to content

Commit 6265056

Browse files
authored
relax tolerance in SGESDD benchmark (see discussion in Reference-LAPACK PR 1286)
1 parent a22ee97 commit 6265056

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmark/pybench/benchmarks/bench_blas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def test_gesdd(benchmark, mn, variant):
236236

237237
assert info == 0
238238

239-
atol = {'s': 1e-5, 'd': 1e-13}
239+
atol = {'s': 5e-5, 'd': 1e-13}
240240
np.testing.assert_allclose(u @ np.diag(s) @ vt, a, atol=atol[variant])
241241

242242

0 commit comments

Comments
 (0)