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/09/22 00:01:26 UTC

[tvm] branch nightly-docker-update updated (e927f2a70e -> 4671a5743b)

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 e927f2a70e [ci][docker] Nightly Docker image update
     add fa5045bf69 [Metaschedule] MultiLevelTiling for wide vector architectures (#12845)
     add d4e3207cca [TIR] Enhance RemoveNoOp pass to remove negative loop (#12836)
     add b051cad9f4 [FIX,PROFILING] Fix gpu timer name and lookup (#12849)
     add fdc6894b7d [TVMScript][Fix] Correct round-trip of explicit root block (#12673)
     add da0e5e3be2 [Utils] Disable automatic move constructor for tvm::With (#12822)
     add 3c8a94bd4e [frontend][torch] Support aten::relu6 operator (#12855)
     add c0c7569529 Allow failures in pr_comment_bot for now (#12860)
     add 7aef584c0f [Hybrid] Fix sys version check (#12837)
     add 4671a5743b [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   (e927f2a70e)
            \
             N -- N -- N   refs/heads/nightly-docker-update (4671a5743b)

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:
 .github/workflows/pr_comment_bot.yml               |   2 +-
 Jenkinsfile                                        |  20 ++--
 ci/jenkins/Jenkinsfile.j2                          |  20 ++--
 include/tvm/meta_schedule/schedule_rule.h          |  15 +++
 include/tvm/support/with.h                         |   9 ++
 include/tvm/tir/stmt_functor.h                     |  32 ++++++
 python/tvm/meta_schedule/schedule_rule/__init__.py |   1 +
 .../schedule_rule/multi_level_tiling.py            |  37 +++++++
 python/tvm/relay/frontend/pytorch.py               |   5 +
 python/tvm/te/hybrid/parser.py                     |   2 +-
 .../schedule_rule/multi_level_tiling.cc            |  35 ++++--
 .../schedule_rule/multi_level_tiling.h             |   3 +
 .../multi_level_tiling_wide_vector.cc              | 120 +++++++++++++++++++++
 src/printer/tvmscript_printer.cc                   |  50 +++++++--
 src/runtime/cuda/cuda_device_api.cc                |  18 ++--
 src/runtime/profiling.cc                           |  13 +++
 src/tir/ir/script/script_complete.cc               |  37 +++++--
 src/tir/transforms/remove_no_op.cc                 |  11 ++
 tests/python/frontend/pytorch/test_forward.py      |   9 ++
 .../test_meta_schedule_schedule_rule_mlt.py        | 108 ++++++++++++++++++-
 .../unittest/test_tir_transform_remove_no_op.py    |  16 ++-
 tests/python/unittest/test_tvmscript_roundtrip.py  |  21 ++++
 22 files changed, 524 insertions(+), 60 deletions(-)
 create mode 100644 src/meta_schedule/schedule_rule/multi_level_tiling_wide_vector.cc