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 1e5a830784 [microTVM]Refactor crt_config.h header file generation
(#13955)
add a6f4694bf9 [CI][Flaky] Skip zephyr_qemu-x86 tests that are part of
task_python_microtvm (#14005)
add 967d2bb807 [Build] Fix find_include_path when using TVM python package
(#14007)
add aa927df6b3 [Metaschedule] EvolutionarySearchNode::State constructor
typo fix (#14002)
add e7ad4bc071 [CLML] Changes corresponding to OpenCL workspace
refactorization (#13972)
add 0dd3d4aab6 [ACL][TESTING] Use pytest.mark.parametrize in ACL conv2d
tests (#14011)
add 0c965f442a [ONNX] Support ScatterElements with reduction (#13894)
add d7253fbc7e [TIR] Add cp.async support for tir.if_then_else (#13966)
No new revisions were added by this update.
Summary of changes:
include/tvm/relay/attrs/transform.h | 12 +
python/tvm/_ffi/libinfo.py | 8 +-
python/tvm/relay/frontend/onnx.py | 52 ++-
python/tvm/relay/op/_transform.py | 10 +
python/tvm/relay/op/op_attrs.py | 5 +
python/tvm/relay/op/strategy/cuda.py | 14 +
python/tvm/relay/op/strategy/generic.py | 22 ++
python/tvm/relay/op/transform.py | 35 ++
python/tvm/topi/__init__.py | 1 +
python/tvm/topi/cuda/__init__.py | 1 +
python/tvm/topi/cuda/scatter_elements.py | 167 +++++++++
python/tvm/topi/scatter_elements.py | 150 ++++++++
.../search_strategy/evolutionary_search.cc | 2 +-
src/relay/op/tensor/transform.cc | 56 +++
src/runtime/contrib/clml/clml_runtime.cc | 127 ++++---
src/runtime/opencl/opencl_common.h | 2 +
src/target/source/codegen_cuda.cc | 8 +-
src/target/source/ptx.cc | 31 ++
src/target/source/ptx.h | 16 +
src/tir/ir/expr.cc | 4 +-
src/tir/transforms/inject_ptx_async_copy.cc | 156 ++++----
tests/micro/common/test_tvmc.py | 1 +
.../contrib/test_arm_compute_lib/test_conv2d.py | 395 +++++++++++----------
tests/python/frontend/onnx/test_forward.py | 80 ++++-
.../unittest/test_cp_async_in_if_then_else.py | 238 +++++++++++++
25 files changed, 1265 insertions(+), 328 deletions(-)
create mode 100644 python/tvm/topi/cuda/scatter_elements.py
create mode 100644 python/tvm/topi/scatter_elements.py
create mode 100644 tests/python/unittest/test_cp_async_in_if_then_else.py