Skip to content

Commit 4a8fc62

Browse files
committed
Test for 5-arg mul!
1 parent c437beb commit 4a8fc62

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/matmul.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,6 +1207,9 @@ end
12071207
A = ones(2,2)
12081208
S = Symmetric(ones(2,2))
12091209
@test mul!(similar(A), S, A, big(1), big(0)) S * A
1210+
C1 = mul!(similar(A), S, A, big(2), big(1))
1211+
C2 = mul!(similar(A), S, A, 2, 1)
1212+
@test C1 C2
12101213
end
12111214

12121215
end # module TestMatmul

0 commit comments

Comments
 (0)