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 83b0b13dd7 [ci][docker] Nightly Docker image update
add cbca28da00 [MetaSchedule] Consolidate module hashing and equality
testing (#13050)
add e8ba1dc4cc [CI] Update Docker Image tag to 20221013-060115-61c9742ea
(#13078)
add 3f0d3f24b7 [AOT] Sanitize input/output name in runtime (#13046)
add b1c8c90384 [skip ci] Added label tags links to the wiki page in issue
templates to align with Issue Tracking RFC (#12988)
add 34c43d43ea [MetaSchedule] Introduce a variant of ModuleEquality to
enable ignoring NDArray raw data (#13091)
add 42d9c38a4d [Doc] Fix typo in the document of installing from_source
(#13090)
add 69ba30e509 [TIR][FIX] Fix crash when using 'if' without 'else' in
TVMScript (#13054)
add 5dd786b3c9 [Hexagon] [runtime] VTCM bugfix, runtime buffer
clarification (#13066)
add 4074127b71 quic-sanirudh -> Reviewer (#13098)
add c14f5e1e50 [ONNX] Handle multiple imports (#13065)
add f4e9179601 [TIR] Fix handling of int64 extent in blockize and
tensorize (#13069)
add e3d3a1a62e [Relay][Frontend][ONNX] Add LayerNormalization operator
(#13074)
add 8ccc43445a [Hexagon] Async DMA pipelining test suite (#13005)
add 8d2e887dbb [HotFix] Fix python import (#13099)
add 187dec99ea [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 (83b0b13dd7)
\
N -- N -- N refs/heads/nightly-docker-update (187dec99ea)
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/ISSUE_TEMPLATE/bug-report.md | 4 +-
.github/ISSUE_TEMPLATE/ci-problem.md | 4 +-
.github/ISSUE_TEMPLATE/documentation.md | 4 +-
.github/ISSUE_TEMPLATE/feature-tracking.md | 4 +-
.github/ISSUE_TEMPLATE/flaky-test.md | 4 +-
CONTRIBUTORS.md | 1 +
Jenkinsfile | 20 +-
ci/jenkins/Jenkinsfile.j2 | 20 +-
docs/install/from_source.rst | 2 +-
include/tvm/meta_schedule/database.h | 63 +++-
.../libtorch_runtime.h => name_transforms.h} | 21 +-
python/tvm/meta_schedule/database/database.py | 2 +
python/tvm/meta_schedule/database/json_database.py | 10 +-
.../tvm/meta_schedule/database/memory_database.py | 20 +-
.../meta_schedule/database/schedule_fn_database.py | 17 +-
python/tvm/meta_schedule/relay_integration.py | 19 +-
python/tvm/meta_schedule/tune.py | 11 +-
python/tvm/relay/backend/name_transforms.py | 11 -
python/tvm/relay/frontend/onnx.py | 48 ++-
python/tvm/relay/frontend/tflite.py | 2 +-
python/tvm/relay/op/reduce.py | 7 +-
.../__init__.py => runtime/name_transforms.py} | 19 +-
python/tvm/topi/utils.py | 4 +-
src/arith/iter_affine_map.cc | 41 ++-
src/meta_schedule/database/database.cc | 20 +-
src/meta_schedule/database/json_database.cc | 22 +-
src/meta_schedule/database/memory_database.cc | 13 +-
src/meta_schedule/database/schedule_fn_database.cc | 7 +-
src/meta_schedule/module_equality.cc | 87 +++++
src/meta_schedule/module_equality.h | 75 +++++
.../search_strategy/evolutionary_search.cc | 33 +-
src/node/ndarray_hash_equal.h | 52 +++
src/node/structural_equal.cc | 35 ++
src/node/structural_hash.cc | 51 ++-
src/relay/backend/aot/aot_lower_main.cc | 5 +-
src/relay/backend/aot_executor_codegen.cc | 3 +-
src/relay/backend/name_transforms.cc | 12 +-
src/relay/backend/name_transforms.h | 7 -
src/relay/backend/task_extraction.cc | 34 +-
src/relay/transforms/partition_graph.cc | 5 +-
src/runtime/aot_executor/aot_executor.cc | 11 +-
src/runtime/hexagon/hexagon_device_api.cc | 4 +
src/runtime/hexagon/hexagon_vtcm_pool.cc | 6 +-
.../helper_cuda_kernels.h => name_transforms.cc} | 31 +-
src/target/source/interface_c.cc | 1 +
src/target/source/source_module.cc | 9 +-
src/tir/analysis/estimate_flops.cc | 6 +-
src/tir/schedule/ir_comparator.cc | 12 +-
src/tir/schedule/primitive/blockize_tensorize.cc | 2 +-
.../schedule/primitive/layout_transformation.cc | 11 +-
.../cpp-runtime/hexagon/hexagon_vtcm_pool_tests.cc | 33 +-
tests/cpp/name_transforms_test.cc | 1 +
.../test_hexagon/test_async_dma_pipeline.py | 353 +++++++++++++++++++++
tests/python/frontend/onnx/test_forward.py | 19 --
tests/python/relay/aot/test_cpp_aot.py | 41 ++-
tests/python/relay/test_name_transforms.py | 4 +-
.../test_meta_schedule_relay_integration.py | 59 ++++
.../test_tir_analysis_estimate_tir_flops.py | 15 +
.../python/unittest/test_tir_schedule_blockize.py | 35 ++
.../python/unittest/test_tir_schedule_tensorize.py | 85 +++++
60 files changed, 1304 insertions(+), 253 deletions(-)
copy include/tvm/runtime/{contrib/libtorch_runtime.h => name_transforms.h}
(65%)
copy python/tvm/{script/printer/__init__.py => runtime/name_transforms.py}
(73%)
create mode 100644 src/meta_schedule/module_equality.cc
create mode 100644 src/meta_schedule/module_equality.h
create mode 100644 src/node/ndarray_hash_equal.h
copy src/runtime/{contrib/curand/helper_cuda_kernels.h => name_transforms.cc}
(64%)
create mode 100644 tests/python/contrib/test_hexagon/test_async_dma_pipeline.py