Skip to content

Commit 767aa19

Browse files
committed
small matmul benchmark fix
1 parent 8e11852 commit 767aa19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/bench_mat_mul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ for N in [2, 4, 8, 10, 16]
7474
for (wrapper_a, wrapper_a_name) in mul_wrappers, (wrapper_b, wrapper_b_name) in mul_wrappers
7575
thrown = false
7676
try
77-
wrapper_a(A) * wrapper_b(B)
77+
mul!(C, wrapper_a(A), wrapper_b(B))
7878
catch e
7979
thrown = true
8080
end

0 commit comments

Comments
 (0)