You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2019/12/24 05:04:46 UTC

[incubator-tvm] branch master updated (f9bc748 -> 9b92c53)

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

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


    from f9bc748  [DEPRECATION] Remove NNVM compiler (#4571)
     add 9b92c53  [Relay/Topi][Op] Added native DepthToSpace and SpaceToDepth Operators (#4566)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/attrs/nn.h                       |  20 ++++
 python/tvm/relay/frontend/onnx.py                  |  50 +--------
 python/tvm/relay/frontend/tensorflow.py            |  66 +-----------
 python/tvm/relay/op/nn/_nn.py                      |  22 ++++
 python/tvm/relay/op/nn/nn.py                       |  50 +++++++++
 python/tvm/relay/op/op_attrs.py                    |   5 +
 src/relay/op/nn/nn.cc                              | 118 +++++++++++++++++++++
 tests/python/relay/test_op_level5.py               |  65 ++++++++++++
 topi/python/topi/nn/__init__.py                    |   2 +
 topi/python/topi/nn/depth_to_space.py              |  88 +++++++++++++++
 topi/python/topi/nn/space_to_depth.py              |  80 ++++++++++++++
 topi/python/topi/testing/__init__.py               |   2 +
 topi/python/topi/testing/depth_to_space.py         |  54 ++++++++++
 .../{l2_normalize_python.py => space_to_depth.py}  |  36 ++++---
 topi/tests/python/test_topi_depth_to_space.py      |  86 +++++++++++++++
 topi/tests/python/test_topi_space_to_depth.py      |  85 +++++++++++++++
 16 files changed, 704 insertions(+), 125 deletions(-)
 create mode 100644 topi/python/topi/nn/depth_to_space.py
 create mode 100644 topi/python/topi/nn/space_to_depth.py
 create mode 100644 topi/python/topi/testing/depth_to_space.py
 copy topi/python/topi/testing/{l2_normalize_python.py => space_to_depth.py} (54%)
 create mode 100644 topi/tests/python/test_topi_depth_to_space.py
 create mode 100644 topi/tests/python/test_topi_space_to_depth.py