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


 discard 123134e1b9 fixed tag
 discard ab914915c9 Testing a new GPU image
     add 0ab2285ef3 [test][hexagon] Fix pytest fixture resolution bug (#13124)
     add e1bebe3d05 [ci] Skip sccache for local hexagon builds (#13127)
     add 213fd768d7 [Hexagon] [runtime] Create objects to manage thread 
hardware resources (#13111)
     add 842f842add [MetaSchedule][Minor] Restore Relay Integration Unit Test 
(#13128)
     add 86fd99313a [MetaSchedule] Fix AddReadReuse for multiple consumer block 
case (#13093)
     add f3873d7717 [skip ci] Add Janet and Thomas to triagers to help with 
Issue Triage RFC (#13141)
     add f3ffc32482 [Hexagon] [runtime] Remove released buffer check for 
post-ReleaseResources calls to FreeDataSpace (#13139)
     add 687ef5b23d [MetaSchedule] Remove Exception Catch for Multithread 
Postproc Application (#13084)
     add 458ca81c01 [TIR] Allow IndexMap applied to arguments with different 
dtypes (#13085)
     add 59c0ef80b5 [Android] Fix cpp_rpc build for android with NDK>=23 
(#13118)
     add 3ae326cb76 [MetaSchedule] Support Tuning w/ No Cost Model & Fix 
Integration Test (#13151)
     add 308c20a4ca [Target] Add Target Parser for Arm(R) Cortex(R) A-Profile 
CPUs (#12454)
     add 026c2db544 Remove assert to fix onnx frontent unit tests for PyTorch 
1.12 (#13155)
     new 4b4e5c98e7 Testing a new GPU image
     new 4542fade2e fixed tag

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   (123134e1b9)
            \
             N -- N -- N   refs/heads/ci-docker-staging (4542fade2e)

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 2 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:
 .asf.yaml                                          |   3 +-
 apps/cpp_rpc/CMakeLists.txt                        |   6 -
 apps/hexagon_launcher/launcher_hexagon.cc          |  31 ---
 docker/with_the_same_user                          |   4 +
 include/tvm/tir/stmt_functor.h                     |  26 ++
 python/tvm/meta_schedule/cost_model/cost_model.py  |   8 +-
 .../schedule_rule/multi_level_tiling.cc            |   2 +-
 src/meta_schedule/utils.h                          |  10 +-
 src/runtime/hexagon/hexagon_buffer_manager.h       |  24 +-
 src/runtime/hexagon/hexagon_device_api.cc          |  11 +-
 src/runtime/hexagon/hexagon_device_api.h           |  10 -
 src/runtime/hexagon/hexagon_hmx.cc                 |  99 +++++++
 .../rpc_env.h => src/runtime/hexagon/hexagon_hmx.h |  69 ++---
 .../{rpc/rpc_channel.cc => hexagon/hexagon_hvx.cc} |  50 ++--
 .../runtime/hexagon/hexagon_hvx.h                  |  47 ++--
 src/runtime/hexagon/hexagon_thread_manager.cc      |  11 +
 src/runtime/hexagon/hexagon_thread_manager.h       |  10 +
 src/target/parsers/aprofile.cc                     | 160 +++++++++++
 src/target/parsers/{mprofile.h => aprofile.h}      |  14 +-
 src/tir/ir/index_map.cc                            |  25 +-
 src/tir/ir/stmt_functor.cc                         |  89 ++++++
 src/tir/schedule/primitive/cache_read_write.cc     |  18 +-
 .../hexagon/hexagon_thread_manager_tests.cc        |  10 +-
 tests/cpp/target/parsers/aprofile_test.cc          | 299 +++++++++++++++++++++
 .../test_hexagon/test_benchmark_maxpool2d.py       |   4 +
 tests/python/frontend/onnx/test_forward.py         |   1 -
 tests/python/integration/test_tuning.py            |  63 +++--
 tests/python/unittest/test_index_map.py            |  10 +
 .../test_meta_schedule_relay_integration.py        |  54 +++-
 .../test_meta_schedule_schedule_rule_mlt.py        |  23 ++
 .../unittest/test_tir_schedule_transform_layout.py |  35 +++
 tests/scripts/task_config_build_hexagon.sh         |  11 +-
 32 files changed, 1025 insertions(+), 212 deletions(-)
 create mode 100644 src/runtime/hexagon/hexagon_hmx.cc
 copy apps/cpp_rpc/rpc_env.h => src/runtime/hexagon/hexagon_hmx.h (52%)
 copy src/runtime/{rpc/rpc_channel.cc => hexagon/hexagon_hvx.cc} (52%)
 copy include/tvm/runtime/crt/rpc_common/write_stream.h => 
src/runtime/hexagon/hexagon_hvx.h (55%)
 create mode 100644 src/target/parsers/aprofile.cc
 copy src/target/parsers/{mprofile.h => aprofile.h} (79%)
 create mode 100644 tests/cpp/target/parsers/aprofile_test.cc

Reply via email to