Skip to content

Commit

Permalink
check in (#2627)
Browse files Browse the repository at this point in the history
  • Loading branch information
eqy authored and yzhliu committed Feb 20, 2019
1 parent 615fd69 commit c3d9631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tvm/relay/op/nn/_nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,13 +313,13 @@ def compute_contrib_conv2d_NCHWc(attrs, inputs, out_dtype, target):
padding = attrs.get_int_tuple("padding")
strides = attrs.get_int_tuple("strides")
dilation = attrs.get_int_tuple("dilation")
data_layout = attrs.get_str("data_layout")
out_layout = attrs.get_str("out_layout")
out_dtype = attrs.get_str("out_dtype")
out_dtype = inputs[0].dtype if out_dtype == "" else out_dtype

out = topi.nn.conv2d_NCHWc(inputs[0], inputs[1], strides, padding, dilation,
out_layout, out_dtype)

data_layout, out_layout, out_dtype)
return [out]

@reg.register_schedule("nn.contrib_conv2d_NCHWc")
Expand Down

0 comments on commit c3d9631

Please sign in to comment.