Skip to content
Snippets Groups Projects
Commit 18e4a1bd authored by Wei Chen's avatar Wei Chen Committed by Tianqi Chen
Browse files

[DOCS] Fix tag_scope example (#581)

parent 12218358
No related branches found
No related tags found
No related merge requests found
......@@ -54,9 +54,9 @@ def tag_scope(tag):
n = tvm.var('n')
m = tvm.var('m')
l = tvm.var('m')
l = tvm.var('l')
A = tvm.placeholder((n, l), name='A')
B = tvm.placeholder((m, l), name='A')
B = tvm.placeholder((m, l), name='B')
k = tvm.reduce_axis((0, l), name='k')
with tvm.tag_scope(tag='matmul'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment