We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e3e0e0 commit 29c2d79Copy full SHA for 29c2d79
test/linalg/lapack.jl
@@ -145,7 +145,7 @@ end
145
B = rand(elty, 10, 10)
146
C, j = LAPACK.gelsd!(copy(A),copy(B))
147
D, k = LAPACK.gelsy!(copy(A),copy(B))
148
- @test C ≈ D rtol=eps(cond(A))
+ @test C ≈ D rtol=2*eps(cond(A))
149
@test_throws DimensionMismatch LAPACK.gelsd!(A,rand(elty,12,10))
150
@test_throws DimensionMismatch LAPACK.gelsy!(A,rand(elty,12,10))
151
end
0 commit comments