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 03fecba6c8 [Bugfix][Frontend][Keras] Add a check to reject the invalid
input shape (#15335)
add 0fadb98731 [CI] Add ml_dypes dependency for all docker images (#15226)
add 48fe2f36c0 Revert "[topi] Add `arm_cpu` specific pooling schedules"
(#15371)
add 7d88352c3c [Relay][Pytorch] Add aten::view_as (#15370)
add d8c06767e3 [Hexagon] Simplify Mul->Sub->Conv to Conv->Add when
possible (#15367)
add 7ebc802d38 [Relay] Introduce arguments limit to FuseOps pass (#15137)
add 5029477268 [TIR] Allreduce broadcast result to each thread in
multi-warp case (#15373)
add e4af30220f [Target] Add Jetson Orin Nano tag (#15380)
No new revisions were added by this update.
Summary of changes:
.../install/ubuntu2004_install_python_package.sh | 3 +-
include/tvm/relay/transform.h | 5 +-
include/tvm/topi/transform.h | 2 +-
python/tvm/contrib/hexagon/transform.py | 94 ++++++++-
python/tvm/relay/frontend/pytorch.py | 13 ++
python/tvm/relay/op/strategy/arm_cpu.py | 17 +-
python/tvm/relay/op/tensor.py | 9 +-
python/tvm/relay/transform/transform.py | 9 +-
python/tvm/target/target.py | 2 +-
python/tvm/topi/arm_cpu/mprofile/dsp/__init__.py | 2 -
python/tvm/topi/arm_cpu/mprofile/dsp/pool.py | 30 +--
python/tvm/topi/arm_cpu/pooling.py | 93 +--------
src/relay/analysis/graph_partitioner.cc | 136 +++++++++++++
src/relay/analysis/graph_partitioner.h | 46 ++++-
src/relay/backend/build_module.cc | 2 +-
src/relay/backend/vm/compiler.cc | 7 +
src/relay/transforms/fuse_ops.cc | 23 ++-
src/relay/transforms/split_args.cc | 96 ++++++---
src/target/source/codegen_metal.cc | 4 +-
src/target/tag.cc | 12 ++
src/target/target_kind.cc | 5 +
src/tir/transforms/lower_thread_allreduce.cc | 94 ++++-----
.../test_hexagon/test_relay_simplify_conv_pat.py | 224 +++++++++++++++++++++
tests/python/frontend/pytorch/test_forward.py | 15 ++
.../opencl_texture/test_conv2d_nchw_texture.py | 4 +-
tests/python/relay/test_pass_fuse_ops.py | 116 +++++++++++
tests/python/relay/test_pass_split_args.py | 96 ++++-----
tests/python/topi/python/test_topi_pooling.py | 1 -
.../python/unittest/test_target_codegen_opencl.py | 211 ++++++++++++++++++-
.../test_tir_transform_lower_thread_all_reduce.py | 52 +++--
30 files changed, 1131 insertions(+), 292 deletions(-)
create mode 100644
tests/python/contrib/test_hexagon/test_relay_simplify_conv_pat.py