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 72f2468 commit e842f27Copy full SHA for e842f27
test/linalg/lapack.jl
@@ -148,7 +148,7 @@ end
148
B = rand(elty, 10, 10)
149
C, j = LAPACK.gelsd!(copy(A),copy(B))
150
D, k = LAPACK.gelsy!(copy(A),copy(B))
151
- @test C ≈ D rtol=eps(cond(A))
+ @test C ≈ D rtol=2*eps(cond(A))
152
@test_throws DimensionMismatch LAPACK.gelsd!(A,rand(elty,12,10))
153
@test_throws DimensionMismatch LAPACK.gelsy!(A,rand(elty,12,10))
154
end
0 commit comments