Skip to content

Commit 86cfff0

Browse files
authored
Tabs to spaces
1 parent 76835cb commit 86cfff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/examples/matrix_multiplication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ LoopVectorization currently doesn't do any memory-modeling or memory-based optim
66
We can write a single function:
77
```julia
88
function A_mul_B!(C, A, B)
9-
@avx for n indices((C,B), 2), m indices((C,A), 1)
9+
@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))
1212
Cmn += C[m,k] * B[k,n]
1313
end
14-
C[m,n] = Cmn
14+
C[m,n] = Cmn
1515
end
1616
end
1717
```

0 commit comments

Comments
 (0)