From 8387b8f9f5346b97f2072ebb704908fd77054795 Mon Sep 17 00:00:00 2001 From: Yuanjia Xu Date: Thu, 13 May 2021 06:08:25 +0800 Subject: [PATCH] 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 930e003fe450c..b63f69361d9f0 100644 --- a/tutorials/get_started/autotvm_matmul.py +++ b/tutorials/get_started/autotvm_matmul.py @@ -86,7 +86,7 @@ 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")