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/07/09 00:00:33 UTC

[tvm] branch nightly-docker-update updated (b06e042724 -> 323b3fef0b)

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 b06e042724 [ci][docker] Nightly Docker image update
     add 2c365b49b8 [TIR] fix crash when comparing IntImm to None (#12034)
     add 3c4d8870ca [MetaSchedule][Testing] Add unittests for C1D search space (#12036)
     add c412450f8e [TVMC] Updates TVMC tutorial with input shape information (#12031)
     add f769f4e2cc [microNPU] Test averge pool partitioning (#11965)
     add 684a838160 [TIR] Avoid unnecessary dtype escalation in loop splitting (#12035)
     add a81e69a68f [MetaSchedule][Test] Add unittests for C2D (#12043)
     add 07672d0b41 [Texture] Add memory scope entity into graph JSON/runtime (#11875)
     add 323b3fef0b [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   (b06e042724)
            \
             N -- N -- N   refs/heads/nightly-docker-update (323b3fef0b)

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                                        |  16 +-
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 gallery/tutorial/tvmc_command_line_driver.py       |   3 +-
 src/relay/backend/graph_executor_codegen.cc        |  27 +-
 src/runtime/graph_executor/graph_executor.cc       |  58 +++-
 src/runtime/graph_executor/graph_executor.h        |  14 +-
 src/target/source/codegen_opencl.cc                |   4 +-
 src/tir/op/op.cc                                   |   2 +
 src/tir/schedule/concrete_schedule.cc              |   3 +
 tests/python/contrib/test_ethosu/test_partition.py |  65 ++++
 .../unittest/test_meta_schedule_space_cpu.py       | 356 +++++++++++++++++++++
 .../unittest/test_meta_schedule_space_cuda.py      |  96 +++++-
 tests/python/unittest/test_tir_base.py             |  12 +
 .../unittest/test_tir_schedule_split_fuse.py       |   9 +
 14 files changed, 643 insertions(+), 38 deletions(-)
 create mode 100644 tests/python/contrib/test_ethosu/test_partition.py
 create mode 100644 tests/python/unittest/test_meta_schedule_space_cpu.py