This is an automated email from the ASF dual-hosted git repository.
masahi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.
from d17f753 Support aten::flip (#8398)
add d3fc562 [Relay][TOPI] Resize 1D (#8346)
No new revisions were added by this update.
Summary of changes:
docs/langref/relay_op.rst | 4 +-
include/tvm/relay/attrs/image.h | 107 +-
python/tvm/relay/frontend/keras.py | 1 +
python/tvm/relay/frontend/mxnet.py | 2 +-
python/tvm/relay/frontend/onnx.py | 59 +-
python/tvm/relay/frontend/pytorch.py | 16 +-
python/tvm/relay/frontend/tensorflow_ops.py | 6 +-
python/tvm/relay/frontend/tflite.py | 6 +-
python/tvm/relay/op/dyn/image/_image.py | 26 +-
python/tvm/relay/op/image/_image.py | 149 ++-
python/tvm/relay/op/image/image.py | 148 ++-
python/tvm/relay/op/op_attrs.py | 21 +-
python/tvm/topi/image/resize.py | 1191 +++++++++++---------
python/tvm/topi/nn/upsampling.py | 6 +-
python/tvm/topi/testing/__init__.py | 4 +-
python/tvm/topi/testing/bilinear_resize_python.py | 105 --
python/tvm/topi/testing/resize_python.py | 294 +++++
.../tvm/topi/testing/trilinear_resize3d_python.py | 111 --
python/tvm/topi/testing/upsampling_python.py | 136 ---
python/tvm/topi/utils.py | 10 +
src/relay/op/dyn/image/resize.cc | 30 +-
src/relay/op/image/resize.cc | 129 ++-
src/relay/op/make_op.h | 6 +-
src/relay/transforms/dynamic_to_static.cc | 10 +-
tests/python/frontend/coreml/test_forward.py | 11 +-
tests/python/frontend/onnx/test_forward.py | 97 +-
tests/python/relay/dyn/test_dynamic_op_level2.py | 33 +-
tests/python/relay/dyn/test_dynamic_op_level5.py | 25 +-
tests/python/relay/test_any.py | 8 +-
tests/python/relay/test_op_level2.py | 34 +-
tests/python/relay/test_op_level5.py | 89 +-
tests/python/relay/test_pass_convert_op_layout.py | 20 +-
tests/python/relay/test_pass_dynamic_to_static.py | 29 +-
tests/python/topi/python/test_topi_image.py | 74 +-
tests/python/topi/python/test_topi_upsampling.py | 32 +-
35 files changed, 1813 insertions(+), 1216 deletions(-)
delete mode 100644 python/tvm/topi/testing/bilinear_resize_python.py
create mode 100644 python/tvm/topi/testing/resize_python.py
delete mode 100644 python/tvm/topi/testing/trilinear_resize3d_python.py
delete mode 100644 python/tvm/topi/testing/upsampling_python.py