Skip to content
Snippets Groups Projects
Commit f9c17997 authored by Tatsuya Nishiyama's avatar Tatsuya Nishiyama Committed by Tianqi Chen
Browse files

Fix tutorial to follow a change of elemwise_sum (#1374)

parent 5e018774
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ d = a * b # same as topi.broadcast_mul
# we can schedule the following series of operations ending with :code:`topi.sum` using only
# :code:`topi.generic.schedule_reduce`
#
e = topi.elemwise_sum([c, d], num_args=2)
e = topi.elemwise_sum([c, d])
f = e / 2.0
g = topi.sum(f)
with tvm.target.cuda():
......
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