This is an automated email from the ASF dual-hosted git repository.

wuwei pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.


    from 9384353  Update legacy places from nnvm to relay. (#4535)
     add d430fbb  Implement 1d deconvolution (#4476)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/attrs/nn.h                       |  58 +++++++
 python/tvm/autotvm/task/relay_integration.py       |   1 +
 python/tvm/autotvm/task/topi_integration.py        |  12 ++
 python/tvm/relay/_parser.py                        |   1 +
 python/tvm/relay/frontend/mxnet.py                 |  20 +--
 python/tvm/relay/op/nn/_nn.py                      |  31 ++++
 python/tvm/relay/op/nn/nn.py                       |  66 ++++++++
 src/relay/op/nn/convolution.cc                     | 157 +++++++++++++++++
 src/relay/op/op_common.h                           |  12 ++
 tests/python/relay/test_op_level2.py               |  20 +++
 topi/python/topi/cuda/__init__.py                  |   2 +-
 topi/python/topi/cuda/conv1d_transpose_ncw.py      | 187 +++++++++++++++++++++
 topi/python/topi/generic/nn.py                     |  18 ++
 topi/python/topi/nn/__init__.py                    |   1 +
 topi/python/topi/nn/conv1d_transpose.py            |  83 +++++++++
 topi/python/topi/nn/util.py                        |  39 +++++
 topi/python/topi/testing/__init__.py               |   1 +
 .../topi/testing/conv1d_transpose_ncw_python.py    |  71 ++++++++
 ...e_nchw.py => test_topi_conv1d_transpose_ncw.py} |  44 ++---
 19 files changed, 790 insertions(+), 34 deletions(-)
 create mode 100644 topi/python/topi/cuda/conv1d_transpose_ncw.py
 create mode 100644 topi/python/topi/nn/conv1d_transpose.py
 create mode 100644 topi/python/topi/testing/conv1d_transpose_ncw_python.py
 copy topi/tests/python/{test_topi_conv2d_transpose_nchw.py => 
test_topi_conv1d_transpose_ncw.py} (61%)

Reply via email to