Skip to content

Commit 89f8170

Browse files
committed
Slightly relax LAPACK gelsy test tolerance.
1 parent 7cab0cc commit 89f8170

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
@@ -145,7 +145,7 @@ end
145145
B = rand(elty, 10, 10)
146146
C, j = LAPACK.gelsd!(copy(A),copy(B))
147147
D, k = LAPACK.gelsy!(copy(A),copy(B))
148-
@test C D rtol=eps(cond(A))
148+
@test C D rtol=2*eps(cond(A))
149149
@test_throws DimensionMismatch LAPACK.gelsd!(A,rand(elty,12,10))
150150
@test_throws DimensionMismatch LAPACK.gelsy!(A,rand(elty,12,10))
151151
end

0 commit comments

Comments
 (0)