diff --git a/nnvm/python/nnvm/top/nn.py b/nnvm/python/nnvm/top/nn.py index ae9853db7cff3e9d62310eb34d91821a49f766f3..80e2fb698163d771ae8a4d1fd2856e439d4acf3a 100644 --- a/nnvm/python/nnvm/top/nn.py +++ b/nnvm/python/nnvm/top/nn.py @@ -88,6 +88,8 @@ def compute_conv2d(attrs, inputs, _): (dilation_h, dilation_w) = dilation if dilation_h < 1 or dilation_w < 1: raise ValueError("dilation should be positive value") + elif dilation == (1, 1): + kernel = inputs[1] elif layout == "NCHW": kernel = topi.nn.dilate(inputs[1], [1, 1, dilation_h, dilation_w]) else: #layout == NHWC