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 8df8a891fa [ci][docker] Nightly Docker image update
     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)
     add 209e77c18b [tvmc] add instruments for PassContext (#13136)
     add 4fe8e96c77 [Hexagon] Set c++17 standard for launcher (#13140)
     add 57b9988922 [Hexagon] Add scripts for e2e MetaSchedule tuning 
demonstration (#13135)
     add 1dbd1fa4b8 [Hexagon] Support fetching and building Hexagon runtime 
with external runtime sources (#13138)
     add 9f4c7121b9 [Hexagon] [runtime] Clarify compute resources (#13149)
     add 15cbb190ae [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   (8df8a891fa)
            \
             N -- N -- N   refs/heads/nightly-docker-update (15cbb190ae)

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:
 CMakeLists.txt                                     |   1 +
 Jenkinsfile                                        |  18 +-
 apps/cpp_rpc/CMakeLists.txt                        |   6 -
 apps/hexagon_api/CMakeLists.txt                    |   2 +
 apps/hexagon_launcher/CMakeLists.txt               |   2 +
 ci/jenkins/Jenkinsfile.j2                          |  18 +-
 cmake/modules/Hexagon.cmake                        |  37 +++
 cmake/modules/LibInfo.cmake                        |   1 +
 python/tvm/driver/tvmc/compiler.py                 |  18 +-
 python/tvm/meta_schedule/cost_model/cost_model.py  |   8 +-
 python/tvm/tir/tensor_intrin/hexagon.py            |  50 ++++
 src/printer/tvmscript_printer.cc                   |   9 +-
 .../hexagon/{hexagon_hmx.cc => hexagon_htp.cc}     |  16 +-
 .../hexagon/{hexagon_hmx.h => hexagon_htp.h}       |  24 +-
 src/runtime/hexagon/hexagon_thread_manager.cc      |   4 +-
 src/runtime/hexagon/hexagon_thread_manager.h       |   8 +-
 src/support/libinfo.cc                             |   1 +
 src/target/parsers/aprofile.cc                     | 160 +++++++++++
 src/target/parsers/{mprofile.h => aprofile.h}      |  14 +-
 tests/cpp/target/parsers/aprofile_test.cc          | 299 +++++++++++++++++++++
 .../{ => metaschedule_e2e}/__init__.py             |   2 +-
 .../test_hexagon/metaschedule_e2e/export_models.py |  74 +++++
 .../metaschedule_e2e/test_resnet50_fp16.py         | 128 +++++++++
 .../metaschedule_e2e/test_resnet50_int8.py         | 186 +++++++++++++
 tests/python/driver/tvmc/test_compiler.py          |  23 ++
 tests/python/frontend/onnx/test_forward.py         |   1 -
 tests/python/integration/test_tuning.py            |  63 +++--
 27 files changed, 1085 insertions(+), 88 deletions(-)
 rename src/runtime/hexagon/{hexagon_hmx.cc => hexagon_htp.cc} (90%)
 rename src/runtime/hexagon/{hexagon_hmx.h => hexagon_htp.h} (73%)
 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
 copy tests/python/contrib/test_hexagon/{ => metaschedule_e2e}/__init__.py (93%)
 create mode 100644 
tests/python/contrib/test_hexagon/metaschedule_e2e/export_models.py
 create mode 100644 
tests/python/contrib/test_hexagon/metaschedule_e2e/test_resnet50_fp16.py
 create mode 100644 
tests/python/contrib/test_hexagon/metaschedule_e2e/test_resnet50_int8.py

Reply via email to