Skip to content

Commit

Permalink
[TIR] Fix typo in code example (#15150)
Browse files Browse the repository at this point in the history
Change-Id: If241561fc85c6737ff726a1e7150a6a496d88b30
  • Loading branch information
lhutton1 authored Jun 24, 2023
1 parent 8c297a6 commit 512d35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/te/operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def tir_matmul(a: T.handle, b: T.handle, c: T.handle) -> None:
B = T.match_buffer(b, (128, 128))
C = T.match_buffer(c, (128, 128))
for i, j, k in T.grip(128, 128, 128):
for i, j, k in T.grid(128, 128, 128):
with T.block():
vi, vj, vk = T.axis.remap("SSR", [i, j, k])
with T.init():
Expand Down

0 comments on commit 512d35a

Please sign in to comment.