This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 5821c1240e [TIR] Add DeclBuffer IR node and functors (#12300)
add 1f97f1fbd5 [microTVM][ARM] Keep microtvm testing only in QEMU Image
(#11809)
add 2a7af612f7 [TIR][Schedule] Support annotate dict typed value (#12288)
add c4aab62c6d [TIR] Add tir::builtin::undef (#12266)
add fc411dc6fa Pass that removes reshapes post LowerTE (#12215)
add 9b86009553 [OpenCL] Use size_t instead of int64_t for OpenCL timer
count (#12328)
add b4e36c61fc [CI] Increase the number of shards for Cortex-M from 4 to
8. (#12334)
No new revisions were added by this update.
Summary of changes:
Jenkinsfile | 340 +++++++++++++++++++--
ci/jenkins/Test.groovy.j2 | 2 +-
docker/Dockerfile.ci_cpu | 9 -
include/tvm/relay/transform.h | 11 +
include/tvm/tir/builtin.h | 8 +
python/tvm/tir/schedule/_type_checker.py | 34 +++
python/tvm/tir/schedule/schedule.py | 11 +-
python/tvm/tir/transform/transform.py | 11 +
src/relay/backend/aot_executor_codegen.cc | 7 +-
src/relay/transforms/remove_standalone_reshapes.cc | 120 ++++++++
src/runtime/opencl/opencl_common.h | 8 +-
src/runtime/opencl/opencl_device_api.cc | 4 +-
src/tir/op/builtin.cc | 4 +
src/tir/schedule/concrete_schedule.cc | 15 +
src/tir/schedule/instruction_traits.h | 24 ++
src/tir/schedule/trace.cc | 8 +
src/tir/transforms/remove_store_undef.cc | 179 +++++++++++
tests/python/contrib/test_cmsisnn/test_conv2d.py | 1 +
tests/python/contrib/test_cmsisnn/test_pooling.py | 8 +-
.../contrib/test_cmsisnn/test_remove_reshapes.py | 169 ++++++++++
tests/python/contrib/test_ethosu/test_networks.py | 10 +-
tests/python/relay/aot/test_crt_aot.py | 2 +-
tests/python/relay/aot/test_crt_aot_usmp.py | 36 +--
.../test_pass_remove_standalone_reshapes.py | 260 ++++++++++++++++
.../python/unittest/test_tir_schedule_utilities.py | 8 +-
.../unittest/test_tir_transform_remove_undef.py | 94 ++++++
.../unittest/test_type_annotation_checker.py | 10 +-
tests/scripts/task_python_integration.sh | 8 +-
tests/scripts/task_python_microtvm.sh | 3 +
29 files changed, 1329 insertions(+), 75 deletions(-)
create mode 100644 src/relay/transforms/remove_standalone_reshapes.cc
create mode 100644 src/tir/transforms/remove_store_undef.cc
create mode 100644 tests/python/contrib/test_cmsisnn/test_remove_reshapes.py
create mode 100644
tests/python/relay/backend/test_pass_remove_standalone_reshapes.py
create mode 100644 tests/python/unittest/test_tir_transform_remove_undef.py