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 32658f851a [ACL] Update Compute Library to v23.05.1 (#15600)
add 483a8c3234 [Arith] Add tvm::arith::PresburgerSetNode to work with
Presburger Set in MLIR (#14690)
add d0c94d447b [Bugfix][Relay][Strategy] Enable compile time
transformation of weights matrix for arm_cpu NHWC quantized conv2d (#15584)
add 6166121de4 [CMake] Add NCCL to TVM and TVM Runtime (#15605)
No new revisions were added by this update.
Summary of changes:
CMakeLists.txt | 15 ++
cmake/config.cmake | 10 +
cmake/modules/LLVM.cmake | 3 +
cmake/modules/LibInfo.cmake | 1 +
cmake/utils/FindLLVM.cmake | 10 +
cmake/utils/FindNCCL.cmake | 56 +++++
python/tvm/arith/__init__.py | 1 +
python/tvm/arith/int_set.py | 8 +
python/tvm/relay/op/strategy/arm_cpu.py | 33 +--
python/tvm/topi/arm_cpu/conv2d_alter_op.py | 23 +-
src/arith/presburger_set.cc | 243 +++++++++++++++++++++
src/arith/presburger_set.h | 194 ++++++++++++++++
src/relay/op/nn/convolution.cc | 4 +-
src/support/libinfo.cc | 5 +
...is_side_effect.cc => arith_integer_set_test.cc} | 27 ++-
.../relay/strategy/test_select_implementation.py | 20 +-
tests/python/relay/test_pass_alter_op_layout.py | 2 +-
17 files changed, 611 insertions(+), 44 deletions(-)
create mode 100644 cmake/utils/FindNCCL.cmake
create mode 100644 src/arith/presburger_set.cc
create mode 100644 src/arith/presburger_set.h
copy tests/cpp/{tir_analysis_side_effect.cc => arith_integer_set_test.cc} (59%)