Skip to content

Commit c8bb779

Browse files
authored
Update matrix_multiplication.md
There is a typo on the example
1 parent 9bab79c commit c8bb779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/examples/matrix_multiplication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function A_mul_B!(C, A, B)
99
@avx for n indices((C,B), 2), m indices((C,A), 1)
1010
Cmn = zero(eltype(C))
1111
for k indices((A,B), (2,1))
12-
Cmn += C[m,k] * B[k,n]
12+
Cmn += A[m,k] * B[k,n]
1313
end
1414
C[m,n] = Cmn
1515
end

0 commit comments

Comments
 (0)