This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git
from a3b51f11b2 [microTVM]Add test for MLPerfTiny models (#13978)
add be2bbe2cfb [COMMUNITY] Add new key for release signing (#14105)
add e0a825d636 [microTVM][Zephyr] Remove unnecessary use of
generate_c_interface_header (#14091)
add a8c5804c49 [CI] Add onnx dependency to
test_auto_tensorize.py::test_vnni_bert_int8 (#14102)
add c64f46212c [TOPI][Relay][ONNX] Replace scatter_add by
scatter_elements(reduction="add") (#14008)
add 125bbb271b [LLVM] Add support for DeclBufferNode (#14103)
add d5806eca76 [Frontend][Paddle] Add where_index op and add vm for paddle
frontend's unitest (#14099)
No new revisions were added by this update.
Summary of changes:
KEYS | 60 ++++
.../template_project/CMakeLists.txt.template | 4 +-
.../how_to/work_with_microtvm/micro_mlperftiny.py | 9 -
include/tvm/relay/attrs/transform.h | 8 -
python/tvm/relay/frontend/paddlepaddle.py | 11 +-
python/tvm/relay/frontend/pytorch.py | 41 ++-
python/tvm/relay/frontend/tensorflow_ops.py | 6 +-
python/tvm/relay/op/_transform.py | 10 -
python/tvm/relay/op/op_attrs.py | 5 -
python/tvm/relay/op/strategy/cuda.py | 13 -
python/tvm/relay/op/strategy/generic.py | 11 -
python/tvm/relay/op/transform.py | 27 +-
python/tvm/topi/__init__.py | 1 -
python/tvm/topi/cuda/scatter.py | 132 ---------
python/tvm/topi/cuda/scatter_elements.py | 323 +++++++++++++++------
python/tvm/topi/generic/search.py | 16 -
python/tvm/topi/scatter_add.py | 198 -------------
python/tvm/topi/scatter_elements.py | 63 ++--
src/relay/op/tensor/transform.cc | 48 ---
src/target/llvm/codegen_llvm.cc | 5 +
src/target/llvm/codegen_llvm.h | 1 +
tests/micro/zephyr/test_zephyr.py | 51 ++++
.../zephyr/test_zephyr_aot_exec_standalone.py | 49 ----
tests/micro/zephyr/utils.py | 15 -
tests/python/frontend/paddlepaddle/test_forward.py | 55 +++-
tests/python/frontend/pytorch/test_forward.py | 6 +
tests/python/integration/test_auto_tensorize.py | 1 +
tests/python/relay/test_op_level3.py | 2 +-
28 files changed, 497 insertions(+), 674 deletions(-)
delete mode 100644 python/tvm/topi/scatter_add.py