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

[incubator-tvm] branch master updated (12e51e6 -> 56416ed)

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

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


    from 12e51e6  [REFACTOR][IR] Initialize Unified IR Expr Data Structure (#4673)
     add 56416ed  [TOPI][RELAY][OP] add op crop_and_resize (#4417)

No new revisions were added by this update.

Summary of changes:
 docs/api/python/topi.rst                           |   2 +
 docs/langref/relay_op.rst                          |   2 +
 include/tvm/relay/attrs/image.h                    |  28 +
 python/tvm/relay/frontend/tensorflow.py            |  43 +-
 python/tvm/relay/op/image/_image.py                |  16 +-
 python/tvm/relay/op/image/image.py                 |  52 +-
 python/tvm/relay/op/op_attrs.py                    |   3 +
 src/lang/expr_operator.cc                          |  12 +-
 src/relay/op/image/resize.cc                       |  84 +++
 tests/python/frontend/tensorflow/test_forward.py   |  58 +-
 tests/python/relay/test_op_level5.py               |  44 +-
 topi/python/topi/image/resize.py                   | 696 +++++++++++++++++----
 topi/python/topi/testing/__init__.py               |   1 +
 topi/python/topi/testing/crop_and_resize_python.py | 114 ++++
 .../{test_topi_resize.py => test_topi_image.py}    |  65 +-
 15 files changed, 1018 insertions(+), 202 deletions(-)
 create mode 100644 topi/python/topi/testing/crop_and_resize_python.py
 rename topi/tests/python/{test_topi_resize.py => test_topi_image.py} (66%)