You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2021/05/12 22:08:50 UTC

[tvm] branch main updated: change a, n, l to A, N, L (#8027)

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

tqchen 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 76fb2af  change a, n, l to A, N, L (#8027)
76fb2af is described below

commit 76fb2afbf8f6f38c8dcea62f50b60bba1e7cfb74
Author: Yuanjia Xu <xu...@otcaix.iscas.ac.cn>
AuthorDate: Thu May 13 06:08:25 2021 +0800

    change a, n, l to A, N, L (#8027)
---
 tutorials/get_started/autotvm_matmul.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tutorials/get_started/autotvm_matmul.py b/tutorials/get_started/autotvm_matmul.py
index 930e003..b63f693 100644
--- a/tutorials/get_started/autotvm_matmul.py
+++ b/tutorials/get_started/autotvm_matmul.py
@@ -86,7 +86,7 @@ from tvm import autotvm
 
 def matmul_basic(N, L, M, dtype):
 
-    a = te.placeholder((n, l), name="a", dtype=dtype)
+    A = te.placeholder((N, L), name="A", dtype=dtype)
     B = te.placeholder((L, M), name="B", dtype=dtype)
 
     k = te.reduce_axis((0, L), name="k")