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 8e11852 commit 767aa19Copy full SHA for 767aa19
benchmark/bench_mat_mul.jl
@@ -74,7 +74,7 @@ for N in [2, 4, 8, 10, 16]
74
for (wrapper_a, wrapper_a_name) in mul_wrappers, (wrapper_b, wrapper_b_name) in mul_wrappers
75
thrown = false
76
try
77
- wrapper_a(A) * wrapper_b(B)
+ mul!(C, wrapper_a(A), wrapper_b(B))
78
catch e
79
thrown = true
80
end
0 commit comments