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/18 00:01:00 UTC

[tvm] branch nightly-docker-update updated (35e28df7a0 -> 118598799f)

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 35e28df7a0 [ci][docker] Nightly Docker image update
     add eca361de4f [MetaSchedule] Fix segfault in gradient based scheduler (#13399)
     add 59abd9e106 [Build] Fix MSVC compile option /bigobj (#13411)
     add ad5c811411 [TIR] Unify index data type when creating prim func (#13327)
     add c98f3cd6f8 [ACL] Enable int8 data type in QNN ADD (#13407)
     add 5b1d2cc3e8 [usmp] Hill Climb greedy layout size check relaxed (#13369)
     add 25ad54058a [CI] Update minor git options (#13398)
     add 01a4725b6b [MetaSchedule][Fix] Fix Empty Run Time Issue when Benchmarking Result (#13406)
     add 118598799f [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   (35e28df7a0)
            \
             N -- N -- N   refs/heads/nightly-docker-update (118598799f)

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                                     |   2 +-
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 .../install/ubuntu_install_ethosn_driver_stack.sh  |   7 +-
 .../install/ubuntu_install_ethosu_driver_stack.sh  |  10 +-
 docker/install/ubuntu_install_papi.sh              |   6 +-
 include/tvm/tir/data_type_rewriter.h               | 155 ++++++++
 include/tvm/tir/stmt.h                             |   1 +
 include/tvm/tir/stmt_functor.h                     |  50 ---
 python/tvm/relay/op/contrib/arm_compute_lib.py     |   2 +-
 python/tvm/te/operation.py                         |   8 +-
 .../measure_callback/update_cost_model.cc          |   5 +-
 src/meta_schedule/task_scheduler/gradient_based.cc |  17 +-
 .../backend/contrib/arm_compute_lib/codegen.cc     |   2 +-
 src/relay/backend/utils.cc                         |   2 +-
 src/runtime/contrib/arm_compute_lib/acl_utils.cc   |   2 +
 src/te/operation/create_primfunc.cc                |  25 +-
 src/te/operation/create_primfunc.h                 |   8 +-
 src/tir/ir/data_type_rewriter.cc                   | 389 ++++++++++++++++++++-
 src/tir/ir/stmt_functor.cc                         |   1 +
 src/tir/schedule/primitive/blockize_tensorize.cc   |  15 +
 src/tir/transforms/lower_match_buffer.cc           |   4 +-
 src/tir/transforms/narrow_datatype.cc              | 139 ++------
 src/tir/usmp/algo/hill_climb.cc                    |  78 ++++-
 tests/cpp/data_type_rewriter_test.cc               |   2 +-
 .../contrib/test_arm_compute_lib/test_add.py       |   4 +-
 .../test_meta_schedule_measure_callback.py         |  26 ++
 .../test_meta_schedule_relay_integration.py        |  36 +-
 .../unittest/test_meta_schedule_task_scheduler.py  |  85 +++++
 tests/python/unittest/test_te_create_primfunc.py   |  25 +-
 .../python/unittest/test_tir_schedule_tensorize.py |  20 +-
 .../unittest/test_tir_transform_narrow_datatype.py |  33 +-
 32 files changed, 893 insertions(+), 306 deletions(-)
 create mode 100644 include/tvm/tir/data_type_rewriter.h