Skip to content

Commit ceddb0d

Browse files
ViralBShahKristofferC
authored andcommitted
Slightly loosen a test so that linalg tests pass when using MKL (#42315)
1 parent c7d39b7 commit ceddb0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/test/matmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ end
152152
for vf in (copy(vvf), view(vvf, 1:3)), C in (copy(CC), view(CC, 1:3, 1:3))
153153
@test mul!(C, vf, transpose(vf)) == vf*vf'
154154
C .= C0 = rand(eltype(C), size(C))
155-
@test mul!(C, vf, transpose(vf), 2, 3) == 2vf*vf' .+ 3C0
155+
@test mul!(C, vf, transpose(vf), 2, 3) 2vf*vf' .+ 3C0
156156
end
157157
end
158158

0 commit comments

Comments
 (0)