Skip to content

Commit

Permalink
Fix tutorial to follow the conv2d change (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
nishi-t authored and tqchen committed Jul 6, 2018
1 parent 941f684 commit cca57ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/topi/intro_topi.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
#
data = tvm.placeholder((1, 3, 224, 224))
kernel = tvm.placeholder((10, 3, 5, 5))
conv = topi.nn.conv2d(data, kernel, stride=1, padding=2)
conv = topi.nn.conv2d(data, kernel, strides=1, padding=2)
out = topi.nn.relu(conv)
with tvm.target.create("cuda"):
sconv = topi.generic.nn.schedule_conv2d_nchw(out)
Expand Down

0 comments on commit cca57ae

Please sign in to comment.