You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by li...@apache.org on 2020/01/06 03:53:56 UTC

[incubator-tvm] branch master updated (8e2f229 -> 34b98eb)

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

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


    from 8e2f229  [Topi]Allow empty tensor for reshape, tile and strided_slice (#4618)
     add 34b98eb  [CONV] Asymmetric padding (#4511)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/attrs/nn.h                       | 26 +++++--
 python/tvm/contrib/pickle_memoize.py               |  2 +-
 python/tvm/relay/frontend/tensorflow.py            | 19 +----
 src/relay/op/nn/bitserial.cc                       |  7 +-
 src/relay/op/nn/convolution.cc                     | 27 +++----
 src/relay/op/nn/convolution.h                      |  6 +-
 tests/python/contrib/test_nnpack.py                | 19 ++---
 topi/python/topi/arm_cpu/conv2d.py                 | 30 ++++----
 topi/python/topi/bifrost/conv2d.py                 |  8 +-
 topi/python/topi/cuda/conv2d.py                    | 17 +++--
 topi/python/topi/cuda/conv2d_winograd.py           |  8 +-
 topi/python/topi/intel_graphics/conv2d.py          |  6 +-
 topi/python/topi/mali/conv2d.py                    |  8 +-
 topi/python/topi/nn/conv2d.py                      | 88 +++++++++++++++-------
 topi/python/topi/rocm/conv2d.py                    | 10 ++-
 topi/python/topi/testing/conv2d_hwcn_python.py     | 27 +++----
 topi/python/topi/testing/conv2d_nchw_python.py     | 34 ++++-----
 topi/python/topi/testing/conv2d_nhwc_python.py     | 28 +++----
 .../topi/testing/deformable_conv2d_nchw_python.py  | 20 ++---
 topi/python/topi/x86/conv2d.py                     | 32 ++++----
 topi/python/topi/x86/conv2d_alter_op.py            |  7 +-
 topi/python/topi/x86/conv2d_int8.py                |  7 +-
 topi/python/topi/x86/depthwise_conv2d.py           |  6 +-
 topi/tests/python/test_topi_conv2d_NCHWc.py        | 31 ++++++--
 topi/tests/python/test_topi_conv2d_int8.py         | 30 ++++++--
 topi/tests/python/test_topi_conv2d_nchw.py         | 37 +++++++--
 topi/tests/python/test_topi_conv2d_nhwc.py         |  5 ++
 topi/tests/python/test_topi_conv2d_winograd.py     | 25 +++++-
 topi/tests/python/test_topi_conv3d_ncdhw.py        |  2 -
 29 files changed, 338 insertions(+), 234 deletions(-)