You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by sa...@apache.org on 2023/06/24 09:04:57 UTC

[tvm] branch main updated: [TIR] Fix typo in code example (#15150)

This is an automated email from the ASF dual-hosted git repository.

sanirudh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 512d35ab11 [TIR] Fix typo in code example (#15150)
512d35ab11 is described below

commit 512d35ab11fbf39100e52c27eb606c715d6fb344
Author: Luke Hutton <lu...@arm.com>
AuthorDate: Sat Jun 24 10:04:50 2023 +0100

    [TIR] Fix typo in code example (#15150)
    
    Change-Id: If241561fc85c6737ff726a1e7150a6a496d88b30
---
 python/tvm/te/operation.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/tvm/te/operation.py b/python/tvm/te/operation.py
index 1a28f9bb3d..b6da01b558 100644
--- a/python/tvm/te/operation.py
+++ b/python/tvm/te/operation.py
@@ -606,7 +606,7 @@ def create_prim_func(
             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():