You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/11/09 00:01:08 UTC

[tvm] branch nightly-docker-update updated (8dc4c97086 -> fc90a21f30)

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 8dc4c97086 [ci][docker] Nightly Docker image update
     add 904ae7748f [Frontend][PaddlePaddle] Add test case for interpolate op convert func… (#13277)
     add f8691180e0 [BugFix][Driver] Correctly propogate simple-mode flag in LowerSchedule (#13311)
     add e43841d2ef [microTVM] Fix RPC session close on runtime side (#13310)
     add b807613c79 [Hexagon] [runtime] Move lock/unlock to HexagonHtp temporarily (#13318)
     add c898dc6b55 [TIR] Add thread sync if access index doesn't depend on thread index (#13314)
     add 79093a1718 [ETHOSN] Consolidate target string usage (#13159)
     add be30238947 [Adreno][Textures] Fix static memory planner  (#13253)
     add bf77e793ab Fixup libtorch backend build (#13320)
     add 15752e4009 [TVMScript] Hide trailing return type if None (#13308)
     add 750ba9f742 [OpenCL][unit tests] Fix opencl cpp unit tests (#13254)
     add 16bb1a6c2e [microTVM][CRT] Add memory size as project option (#13313)
     add fc90a21f30 [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   (8dc4c97086)
            \
             N -- N -- N   refs/heads/nightly-docker-update (fc90a21f30)

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                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 cmake/modules/StandaloneCrt.cmake                  |   2 +-
 python/tvm/contrib/hexagon/pytest_plugin.py        |   8 -
 python/tvm/driver/tvmc/composite_target.py         |  12 -
 python/tvm/micro/project_api/client.py             |   6 +-
 python/tvm/micro/session.py                        |   2 +
 python/tvm/relay/op/contrib/ethosn.py              |  17 +-
 python/tvm/testing/plugin.py                       |  10 +
 src/driver/driver_api.cc                           |   5 +-
 src/printer/tvmscript_printer.cc                   |   9 +-
 src/relay/backend/contrib/ethosn/codegen.cc        |  85 ++---
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |   9 +-
 .../backend/contrib/libtorch/libtorch_codegen.cc   |  11 +-
 src/relay/backend/graph_plan_memory.cc             | 243 +-------------
 src/relay/backend/token_allocator.cc               | 201 ++++++++++++
 src/relay/backend/token_allocator.h                | 161 ++++++++++
 .../crt/host/{Makefile => Makefile.template}       |   3 +-
 src/runtime/crt/host/main.cc                       |   2 +-
 src/runtime/crt/host/microtvm_api_server.py        |  44 ++-
 src/runtime/hexagon/hexagon_htp.cc                 |  12 +-
 src/runtime/hexagon/hexagon_thread_manager.cc      |  10 +-
 src/tir/transforms/thread_storage_sync.cc          |  31 +-
 tests/cpp/relay/backend/graph_plan_token_alloc.cc  | 351 +++++++++++++++++++++
 tests/lint/check_file_type.py                      |   2 +
 tests/lint/cpplint.sh                              |   3 +-
 tests/python/contrib/test_ethosn/infrastructure.py |  39 +--
 tests/python/contrib/test_ethosn/test_addition.py  |  22 +-
 tests/python/contrib/test_ethosn/test_codegen.py   |  52 +++
 .../python/contrib/test_ethosn/test_concatenate.py |  11 +-
 .../contrib/test_ethosn/test_depth_to_space.py     |  11 +-
 .../python/contrib/test_ethosn/test_leaky_relu.py  |  11 +-
 tests/python/contrib/test_ethosn/test_multiply.py  |   9 +-
 .../contrib/test_ethosn/test_partition_params.py   |  82 -----
 tests/python/contrib/test_ethosn/test_relu.py      |  11 +-
 .../python/contrib/test_ethosn/test_requantize.py  |  18 +-
 tests/python/contrib/test_ethosn/test_reshape.py   |  17 +-
 tests/python/contrib/test_ethosn/test_split.py     |   9 +-
 tests/python/contrib/test_ethosn/test_tanh.py      |  11 +-
 .../python/contrib/test_ethosn/test_topologies.py  |  35 +-
 tests/python/contrib/test_opencl/conftest.py       |  29 --
 tests/python/frontend/paddlepaddle/test_forward.py |   9 +-
 .../unittest/test_tir_transform_thread_sync.py     |  36 ++-
 tests/python/unittest/test_tvmscript_roundtrip.py  |  15 +
 tests/scripts/task_python_ethosn_tests.sh          |   7 +-
 45 files changed, 1173 insertions(+), 540 deletions(-)
 create mode 100644 src/relay/backend/token_allocator.cc
 create mode 100644 src/relay/backend/token_allocator.h
 rename src/runtime/crt/host/{Makefile => Makefile.template} (96%)
 create mode 100644 tests/cpp/relay/backend/graph_plan_token_alloc.cc
 create mode 100644 tests/python/contrib/test_ethosn/test_codegen.py
 delete mode 100644 tests/python/contrib/test_ethosn/test_partition_params.py
 delete mode 100644 tests/python/contrib/test_opencl/conftest.py