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

Commit 0901ad7

Browse files
author
Nicolas Vasilache
committed
Fix typo in LHS index
1 parent 68bb856 commit 0901ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_python/test_c2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
MATMUL_LANG = """
3333
def matmul(float(M,N) A, float(N,K) B) -> (output) {
34-
output(m, n) +=! A(m, r_n) * B(r_n, k)
34+
output(m, k) +=! A(m, r_n) * B(r_n, k)
3535
}
3636
"""
3737

0 commit comments

Comments
 (0)