Skip to content

Commit 27aaaf3

Browse files
committed
Slightly relax LAPACK gelsy test tolerance.
1 parent 7c1395e commit 27aaaf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/linalg/lapack.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ end
148148
B = rand(elty, 10, 10)
149149
C, j = LAPACK.gelsd!(copy(A),copy(B))
150150
D, k = LAPACK.gelsy!(copy(A),copy(B))
151-
@test C D rtol=eps(cond(A))
151+
@test C D rtol=2*eps(cond(A))
152152
@test_throws DimensionMismatch LAPACK.gelsd!(A,rand(elty,12,10))
153153
@test_throws DimensionMismatch LAPACK.gelsy!(A,rand(elty,12,10))
154154
end

0 commit comments

Comments
 (0)