Commit 18e4a1bd by Wei Chen Committed by Tianqi Chen

[DOCS] Fix tag_scope example (#581)

parent 12218358
......@@ -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'):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment