Skip to content

Commit

Permalink
Slightly loosen a test so that linalg tests pass when using MKL (#42315)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah authored and KristofferC committed Sep 28, 2021
1 parent c7d39b7 commit ceddb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/test/matmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ end
for vf in (copy(vvf), view(vvf, 1:3)), C in (copy(CC), view(CC, 1:3, 1:3))
@test mul!(C, vf, transpose(vf)) == vf*vf'
C .= C0 = rand(eltype(C), size(C))
@test mul!(C, vf, transpose(vf), 2, 3) == 2vf*vf' .+ 3C0
@test mul!(C, vf, transpose(vf), 2, 3) 2vf*vf' .+ 3C0
end
end

Expand Down

0 comments on commit ceddb0d

Please sign in to comment.