Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit cea9a88

Browse files
authored
Merge pull request #21 from chr1sj0nes/patch-1
Fix typo in matrix-multiply example.
2 parents 18c911a + beae09b commit cea9a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Note the layout for B is transposed and matches the traditional layout of the we
6767
.. code::
6868
6969
def mm(float(X,Y) A, float(Y,Z) B) -> (R) {
70-
R(i,j) += A(i,j) * B(j,k)
70+
R(i,j) += A(i,k) * B(k,j)
7171
}
7272
7373
Simple 2-D convolution (no stride, no padding)

0 commit comments

Comments
 (0)