This is an automated email from the ASF dual-hosted git repository.
masahi pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git.
omit 07177cc address comments
omit 63b80e3 add more warnings
omit d35a262 trigger ci
omit 2bb5f58 trigger ci
omit c12013f trigger ci
omit 6ebcff3 trigger ci
omit 5f528e8 trigger ci
omit d1ed23a trigger ci
omit 1c87911 trigger ci
omit 997fd29 trigger ci
omit 07b2299 trigger ci
omit 5fa529c Use ci.py explicitly in docs building instructions
add e6af874 [PyTorch] Fix rsub type (#10090)
add 7b9fd1e [microNPU] Removing constant args from PrimFunc (#9951)
add 82d4d0f [Relay] fix incorrect binding of Lets in ANF conversion
(#10078)
add 3af9c30 [microTVM] Update Zephyr to 2.7 (#10094)
add 80d4d05 [Runtime][PipelineExecutor] Pipeline Executor Sequential
execution (#10082)
add 85d42f8 [MetaSchedule][M4a] Mutator: Mutate Parallel (#10096)
add 6a274af [Hexagon] Update hexagon API build instruction and cleanup
hexagon_proxy_rpc (#10068)
new 6c52594 validating ci_gpu:20220128-070420-fa317edf7
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 (07177cc)
\
N -- N -- N refs/heads/ci-docker-staging (6c52594)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Jenkinsfile | 6 +-
apps/hexagon_api/CMakeLists.txt | 2 +
apps/hexagon_proxy_rpc/Readme.md | 82 ------
apps/hexagon_proxy_rpc/cmake/HexagonRPC.cmake | 57 ----
.../hexagon_proxy_rpc/cmake/android/CMakeLists.txt | 104 -------
.../hexagon_proxy_rpc/cmake/hexagon/CMakeLists.txt | 81 -----
apps/hexagon_proxy_rpc/common.h | 59 ----
apps/hexagon_proxy_rpc/hexagon_core.cc | 204 -------------
apps/hexagon_proxy_rpc/hexagon_proxy_rpc.idl | 35 ---
apps/hexagon_proxy_rpc/rpc_env.cc | 326 ---------------------
cmake/modules/Hexagon.cmake | 15 +-
docker/install/ubuntu_install_zephyr.sh | 6 +-
docs/README.md | 67 ++---
include/tvm/tir/schedule/instruction.h | 3 +
python/tvm/contrib/hexagon/build.py | 2 +-
python/tvm/contrib/pipeline_executor.py | 10 +
python/tvm/meta_schedule/mutator/__init__.py | 1 +
...tate_compute_location.py => mutate_parallel.py} | 14 +-
python/tvm/relay/backend/contrib/ethosu/codegen.py | 14 +-
.../relay/backend/contrib/ethosu/tir/compiler.py | 1 +
.../tvm/relay/backend/contrib/ethosu/tir/passes.py | 37 +++
.../backend/contrib/ethosu/tir_to_cs_translator.py | 6 +-
python/tvm/relay/frontend/pytorch.py | 5 +-
src/meta_schedule/mutator/mutate_parallel.cc | 312 ++++++++++++++++++++
src/relay/transforms/to_a_normal_form.cc | 11 +
src/runtime/pipeline/pipeline_executor.cc | 34 ++-
src/runtime/pipeline/pipeline_executor.h | 12 +
src/runtime/pipeline/pipeline_scheduler.cc | 80 +++++
src/runtime/pipeline/pipeline_scheduler.h | 25 ++
src/runtime/pipeline/pipeline_struct.h | 82 +++++-
src/tir/schedule/analysis.h | 20 ++
src/tir/schedule/analysis/analysis.cc | 31 ++
src/tir/schedule/instruction.cc | 5 +
tests/python/contrib/test_ethosu/test_compiler.py | 55 ++--
.../contrib/test_ethosu/test_encode_constants.py | 200 ++++++-------
.../test_ethosu/test_remove_concatenates.py | 37 ++-
.../contrib/test_ethosu/test_replace_conv2d.py | 152 +++++-----
.../contrib/test_ethosu/test_replace_copy.py | 32 +-
tests/python/contrib/test_ethosu/test_scheduler.py | 20 +-
.../test_ethosu/test_tir_to_cs_translator.py | 316 +++++++++++---------
.../contrib/test_hexagon/proxy_rpc/__init__.py | 18 --
.../contrib/test_hexagon/proxy_rpc/test_matmul.py | 73 -----
.../contrib/test_hexagon/rpc/test_launcher.md | 45 ++-
tests/python/frontend/pytorch/test_forward.py | 7 +
tests/python/relay/test_pass_to_a_normal_form.py | 40 ++-
tests/python/relay/test_pipeline_executor.py | 120 +++++++-
... test_meta_schedule_mutator_mutate_parallel.py} | 31 +-
tests/scripts/ci.py | 8 +-
tests/scripts/task_python_docs.sh | 93 +-----
tests/scripts/task_sphinx_precheck.sh | 37 ++-
50 files changed, 1369 insertions(+), 1664 deletions(-)
delete mode 100644 apps/hexagon_proxy_rpc/Readme.md
delete mode 100644 apps/hexagon_proxy_rpc/cmake/HexagonRPC.cmake
delete mode 100644 apps/hexagon_proxy_rpc/cmake/android/CMakeLists.txt
delete mode 100644 apps/hexagon_proxy_rpc/cmake/hexagon/CMakeLists.txt
delete mode 100644 apps/hexagon_proxy_rpc/common.h
delete mode 100644 apps/hexagon_proxy_rpc/hexagon_core.cc
delete mode 100644 apps/hexagon_proxy_rpc/hexagon_proxy_rpc.idl
delete mode 100644 apps/hexagon_proxy_rpc/rpc_env.cc
copy python/tvm/meta_schedule/mutator/{mutate_compute_location.py =>
mutate_parallel.py} (69%)
create mode 100644 src/meta_schedule/mutator/mutate_parallel.cc
delete mode 100644 tests/python/contrib/test_hexagon/proxy_rpc/__init__.py
delete mode 100644 tests/python/contrib/test_hexagon/proxy_rpc/test_matmul.py
copy tests/python/unittest/{test_meta_schedule_mutator_mutate_unroll.py =>
test_meta_schedule_mutator_mutate_parallel.py} (83%)