This is an automated email from the ASF dual-hosted git repository.
haichen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.
from 0ea9969 [ARITH][BACKPORT-0.6] fix a min/max simplify bug (#5749)
add aa80857 [TOPI][Relay][OP] support dynamic NMS(Non Maximum
Suppression), symbolic begin, end, and strides for strided_slice (#4312)
No new revisions were added by this update.
Summary of changes:
include/tvm/relay/attrs/transform.h | 18 +-
include/tvm/relay/attrs/vision.h | 4 +-
python/tvm/relay/_parser.py | 2 +-
python/tvm/relay/frontend/keras.py | 4 +-
python/tvm/relay/frontend/mxnet.py | 25 +-
python/tvm/relay/frontend/onnx.py | 13 +-
python/tvm/relay/frontend/pytorch.py | 16 +-
python/tvm/relay/frontend/tensorflow.py | 84 +++++-
python/tvm/relay/frontend/tflite.py | 2 +-
python/tvm/relay/op/_tensor_grad.py | 6 +-
python/tvm/relay/op/_transform.py | 69 +++++
python/tvm/relay/op/strategy/generic.py | 10 +-
python/tvm/relay/op/transform.py | 37 ++-
python/tvm/relay/op/vision/_vision.py | 37 +++
python/tvm/relay/op/vision/nms.py | 49 +++-
src/relay/analysis/util.cc | 7 +
src/relay/op/tensor/transform.cc | 305 ++++++++++++++-------
src/relay/op/vision/nms.cc | 25 +-
src/relay/transforms/combine_parallel_conv2d.cc | 17 +-
src/relay/transforms/pattern_util.h | 2 +-
tests/python/frontend/tensorflow/test_debugging.py | 7 +-
tests/python/frontend/tensorflow/test_forward.py | 28 +-
tests/python/relay/test_any.py | 51 +++-
tests/python/relay/test_op_level2.py | 2 +-
tests/python/relay/test_op_level4.py | 64 +++--
tests/python/relay/test_op_level5.py | 60 ++--
tests/python/relay/test_pass_alter_op_layout.py | 41 ++-
.../relay/test_pass_combine_parallel_conv2d.py | 58 +++-
topi/include/topi/transform.h | 24 +-
topi/python/topi/cuda/conv2d_alter_op.py | 3 +-
topi/python/topi/cuda/nms.py | 32 ++-
topi/python/topi/cuda/ssd/multibox.py | 2 +-
topi/python/topi/image/dilation2d.py | 12 +-
topi/python/topi/math.py | 12 +-
topi/python/topi/sort.py | 4 +-
topi/python/topi/testing/strided_slice_python.py | 32 ++-
topi/python/topi/transform.py | 17 +-
topi/python/topi/vision/nms.py | 226 ++++++++++++---
topi/python/topi/vision/ssd/multibox.py | 2 +-
topi/python/topi/x86/conv2d_alter_op.py | 4 +-
topi/python/topi/x86/conv3d.py | 6 +-
topi/src/transform.cc | 2 +-
topi/tests/python/test_topi_vision.py | 54 ++--
43 files changed, 1123 insertions(+), 352 deletions(-)