Skip to content

Commit

Permalink
Slightly relax LAPACK gelsy test tolerance. (#25418)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha0 authored and fredrikekre committed Jan 6, 2018
1 parent fb52730 commit 08620e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/linalg/lapack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ end
B = rand(elty, 10, 10)
C, j = LAPACK.gelsd!(copy(A),copy(B))
D, k = LAPACK.gelsy!(copy(A),copy(B))
@test C D rtol=eps(cond(A))
@test C D rtol=4*eps(cond(A))
@test_throws DimensionMismatch LAPACK.gelsd!(A,rand(elty,12,10))
@test_throws DimensionMismatch LAPACK.gelsy!(A,rand(elty,12,10))
end
Expand Down

0 comments on commit 08620e5

Please sign in to comment.