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
omit 15cbb190ae [ci][docker] Nightly Docker image update
add 0e21840553 [Hexagon] Fix chunk address table generation in
chunkify_hwio_16b (#13002)
add f28b0ca9c4 [CI] Update PyTorch to v1.12 in GPU image (#13160)
add 9aedb8bdda [Hexagon] refactor HexagonBufferManager class (#13145)
add 1311cac88b Fix typo in test_pipeline_executor.py (#13134)
add 100c050d60 [Relay] fix: trilu check op for i64/i32 (#13123)
add 46aa04f3f1 [ci] Wait longer during retries (#13102)
add eb8f225226 [ci] Ignore JUnit upload failures (#13142)
add 81e6e17ff0 [skip ci][ci] Ignore certain files for triggering docker
builds (#13167)
add e7a72af0c1 [microTVM] Improve code reuse in Corstone300 conv2d tests
(#13051)
add eeb8b7067e [Docker][CI] Remove mounting local download path to docker
(#13108)
add ad117809a1 [Hexagon] Skip
HexagonThreadManagerTest.thread_order_signal_wait unit test (#13171)
add e024b0d207 [Hexagon] Add power manager (#13162)
add 3948944745 [ci] Disable flaky Java RPC tests (#13170)
add e42e4bba28 [Hexagon] Adjust Hexagon pytest port range (#13172)
add f4fdc136b9 [Hexagon] [runtime] Allow creation of thread manager
without hardware resources (#13174)
add a6e6ef7bf2 [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 (15cbb190ae)
\
N -- N -- N refs/heads/nightly-docker-update (a6e6ef7bf2)
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:
Jenkinsfile | 427 +++++++++++++++------
ci/jenkins/Jenkinsfile.j2 | 20 +-
ci/jenkins/Prepare.groovy.j2 | 5 +-
ci/jenkins/macros.j2 | 20 +-
ci/scripts/git_change_docker.sh | 14 +
ci/scripts/retry.sh | 2 +-
docker/bash.sh | 10 -
python/tvm/contrib/hexagon/pytest_plugin.py | 2 +-
python/tvm/relay/op/strategy/arm_cpu.py | 6 +-
python/tvm/topi/arm_cpu/conv2d.py | 6 +-
python/tvm/topi/arm_cpu/depthwise_conv2d.py | 8 +-
.../topi/arm_cpu/mprofile/dsp/tensordot_conv2ds.py | 39 +-
python/tvm/topi/transform.py | 7 +
python/tvm/topi/utils.py | 27 --
src/runtime/hexagon/hexagon_buffer_manager.h | 16 +-
src/runtime/hexagon/hexagon_common.h | 1 +
src/runtime/hexagon/hexagon_device_api.cc | 4 +-
src/runtime/hexagon/hexagon_device_api.h | 14 +-
src/runtime/hexagon/hexagon_htp.cc | 34 +-
src/runtime/hexagon/hexagon_htp.h | 5 -
src/runtime/hexagon/hexagon_power_manager.cc | 108 ++++++
.../{hexagon_htp.h => hexagon_power_manager.h} | 37 +-
src/runtime/hexagon/hexagon_thread_manager.cc | 29 +-
src/runtime/hexagon/hexagon_thread_manager.h | 17 +-
src/runtime/hexagon/ops/conv_utils.cc | 4 +-
.../hexagon/hexagon_thread_manager_tests.cc | 18 +-
tests/python/relay/strategy/arm_cpu/test_conv2d.py | 133 +++++++
.../relay/strategy/arm_cpu/test_conv2d_nchw.py | 110 ------
.../relay/strategy/arm_cpu/test_conv2d_nhwc.py | 180 ---------
.../strategy/arm_cpu/test_depthwise_conv2d.py | 235 ++++--------
.../strategy/arm_cpu/test_generalized_conv2d.py | 152 ++++++++
.../relay/strategy/arm_cpu/test_group_conv2d.py | 142 ++-----
tests/python/relay/test_op_level3.py | 20 +
tests/python/relay/test_pipeline_executor.py | 25 +-
tests/scripts/task_java_unittest.sh | 35 +-
35 files changed, 1068 insertions(+), 844 deletions(-)
create mode 100644 src/runtime/hexagon/hexagon_power_manager.cc
copy src/runtime/hexagon/{hexagon_htp.h => hexagon_power_manager.h} (60%)
create mode 100644 tests/python/relay/strategy/arm_cpu/test_conv2d.py
delete mode 100644 tests/python/relay/strategy/arm_cpu/test_conv2d_nchw.py
delete mode 100644 tests/python/relay/strategy/arm_cpu/test_conv2d_nhwc.py
create mode 100644
tests/python/relay/strategy/arm_cpu/test_generalized_conv2d.py