This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly-docker-update
in repository https://gitbox.apache.org/repos/asf/tvm.git
discard 219d98f2a3 [ci][docker] Nightly Docker image update
add 1c697d7460 [Frontend][Paddle] Add depthwise_conv2d_transpose op
mapping (#13214)
add cf2a8ea426 [Hexagon] Update tests to use AOT Executor (#13221)
add 187a2570ed [TIR][Schedule] Add cache_index to precompute index of
buffer load (#13192)
add 3cce9738bd [BugFix][TIR] Affine-binding check should not simplify
trivial iterators (#13203)
add e1ac5658ad [Hexagon]Pull and build specific LLVM sha for hexagon
docker CI (#13199)
add f42826eec4 [MetaSchedule] Enable anchor-block tuning (#13206)
add 602c194f25 [TIR][Arith] Implement kApplyConstraintsToBooleanBranches
extension (#13129)
add c0f33dfb97 [Logging][Hexagon] Improve logging on Hexagon (#13072)
add 3149ee5a73 [skip ci] Remove naut-thomas from .asf.yaml (#13231)
add 60e865a6fe [CI] Enable iOS RPC tests (#13229)
add 6cd1bb5e89 [Hexagon] Update search pattern to find .so address for on
device runs (#13230)
add b9e5c02d0b [TOPI][Hexagon] Implement quantized depthwise conv2d
(#12499)
add 20082614be [skip ci] Revert "[skip ci] Remove naut-thomas from
.asf.yaml (#13231)" (#13232)
add bb9dc6fa0a [ci][docker] Nightly Docker image update
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (219d98f2a3)
\
N -- N -- N refs/heads/nightly-docker-update (bb9dc6fa0a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/main.yml | 17 +-
Jenkinsfile | 20 +-
apps/android_camera/app/src/main/jni/tvm_runtime.h | 6 +-
apps/android_rpc/app/src/main/jni/tvm_runtime.h | 6 +-
apps/ios_rpc/tvmrpc/TVMRuntime.mm | 2 +-
ci/jenkins/Jenkinsfile.j2 | 20 +-
docker/install/ubuntu_install_hexagon.sh | 31 +-
include/tvm/arith/analyzer.h | 13 +
include/tvm/arith/int_set.h | 9 +
include/tvm/meta_schedule/database.h | 8 +
include/tvm/meta_schedule/schedule_rule.h | 5 +-
include/tvm/runtime/logging.h | 30 +-
include/tvm/tir/schedule/schedule.h | 8 +
python/tvm/contrib/hexagon/build.py | 50 +-
python/tvm/contrib/hexagon/hexagon_profiler.py | 13 +-
.../contrib/hexagon/profiling/process_lwp_data.py | 7 +-
python/tvm/contrib/hexagon/pytest_plugin.py | 13 +-
python/tvm/contrib/xcode.py | 4 +-
python/tvm/meta_schedule/__init__.py | 1 +
python/tvm/meta_schedule/database/json_database.py | 4 +
.../tvm/meta_schedule/database/memory_database.py | 4 +
.../meta_schedule/database/schedule_fn_database.py | 4 +
python/tvm/meta_schedule/relay_integration.py | 8 +
python/tvm/meta_schedule/trace_apply.py | 39 +
python/tvm/meta_schedule/tune.py | 4 +
python/tvm/relay/frontend/paddlepaddle.py | 1 +
python/tvm/script/tir/__init__.py | 5 +-
python/tvm/script/tir/ty.py | 2 +-
python/tvm/tir/schedule/analysis.py | 18 +
python/tvm/tir/schedule/schedule.py | 86 +
python/tvm/topi/hexagon/qnn/__init__.py | 1 +
.../topi/hexagon/qnn/qdepthwise_conv2d_slice.py | 217 ++
python/tvm/topi/hexagon/slice_ops/dwconv2d.py | 5 +-
python/tvm/topi/hexagon/utils.py | 19 +
src/arith/rewrite_simplify.cc | 137 +-
src/meta_schedule/module_equality.cc | 24 +
src/meta_schedule/module_equality.h | 4 +
src/meta_schedule/schedule_rule/auto_bind.cc | 5 +-
src/meta_schedule/schedule_rule/schedule_rule.cc | 18 +-
.../space_generator/space_generator.cc | 7 +-
src/meta_schedule/trace_apply.cc | 235 ++
src/meta_schedule/trace_apply.h | 48 +
src/meta_schedule/utils.h | 51 +-
src/relay/backend/task_extraction.cc | 75 +-
src/relay/backend/te_compiler_cache.cc | 20 +-
src/runtime/hexagon/hexagon_common.cc | 13 +-
src/runtime/hexagon/rpc/android_bash.sh.template | 3 +-
src/runtime/hexagon/rpc/hexagon/rpc_server.cc | 22 +-
src/runtime/logging.cc | 7 +
src/target/target_kind.cc | 3 +
src/tir/schedule/analysis/analysis.cc | 5 +-
src/tir/schedule/concrete_schedule.cc | 13 +
src/tir/schedule/concrete_schedule.h | 1 +
src/tir/schedule/primitive.h | 9 +
src/tir/schedule/primitive/cache_index.cc | 484 ++++
src/tir/schedule/primitive/cache_read_write.cc | 7 +-
src/tir/schedule/schedule.cc | 2 +
src/tir/schedule/traced_schedule.cc | 14 +
src/tir/schedule/traced_schedule.h | 1 +
src/tir/schedule/utils.h | 46 +
src/tir/transforms/simplify.cc | 11 +
.../metaschedule_e2e/test_resnet50_int8.py | 8 +-
.../test_hexagon/test_fixed_point_multiply.py | 34 +-
tests/python/contrib/test_hexagon/test_models.py | 73 +-
tests/python/contrib/test_hexagon/test_usmp.py | 10 +-
.../test_hexagon/test_wo_qnn_canonicalization.py | 16 +-
.../topi/test_depthwise_conv2d_slice.py | 337 +++
.../test_hexagon/topi/test_dwconv2d_slice.py | 314 ---
.../test_meta_schedule_relay_integration.py | 145 ++
.../unittest/test_meta_schedule_trace_apply.py | 2745 ++++++++++++++++++++
.../test_meta_schedule_vnni_integration.py | 2 +
.../unittest/test_tir_schedule_cache_index.py | 78 +
.../test_tir_schedule_state_cached_flags.py | 30 +
...t_tir_transform_lower_cross_thread_reduction.py | 54 +-
.../python/unittest/test_tir_transform_simplify.py | 144 +
web/emcc/wasm_runtime.cc | 10 +-
76 files changed, 5365 insertions(+), 580 deletions(-)
create mode 100644 python/tvm/meta_schedule/trace_apply.py
create mode 100644 python/tvm/topi/hexagon/qnn/qdepthwise_conv2d_slice.py
create mode 100644 src/meta_schedule/trace_apply.cc
create mode 100644 src/meta_schedule/trace_apply.h
create mode 100644 src/tir/schedule/primitive/cache_index.cc
create mode 100644
tests/python/contrib/test_hexagon/topi/test_depthwise_conv2d_slice.py
delete mode 100644
tests/python/contrib/test_hexagon/topi/test_dwconv2d_slice.py
create mode 100644 tests/python/unittest/test_meta_schedule_trace_apply.py
create mode 100644 tests/python/unittest/test_tir_schedule_cache_index.py