Skip to content

Commit

Permalink
change a, n, l to A, N, L (apache#8027)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuyuanjia2014 authored and trevor-m committed Jun 17, 2021
1 parent 37464de commit a567a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/get_started/autotvm_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a567a43

Please sign in to comment.