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/17 00:00:47 UTC

[tvm] branch nightly-docker-update updated (4145042f1e -> a1f6a4877c)

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 4145042f1e [ci][docker] Nightly Docker image update
     add c96cc1101f [community] Fix outdated contributor GitHub usernames (#12799)
     add e6525a30e6 [TIR] Add extra simpliciation in region cover analysis (#12800)
     add 02c2eae510 [MetaSchedule] Enable Clone Function for Task-Level Classes (#12796)
     add 77d0a288df [MetaSchedule][Test] MLT uses SEqual tests (#12805)
     add c0d2734056 [TVMScript] IRBuilder methods for `Axis` (#12808)
     add 9b17f344a3 [ci][docker] Fix nightly Docker tests (#12804)
     add 6b3be496e6 [MetaSchedule][Minor]Fix Random State Fork in TuneContext Clone Function (#12811)
     add 8f8b6d8837 Fix for import requests and import caffe failures (#12813)
     add 43d9a3b93b [Hexagon] Reduce the number of tests run for VTCM testing in order to… (#12783)
     add 7c96e255ce [Hexagon] [runtime] Protect access to global HexagonBufferManager map (#12807)
     add 5d0a16749c [ci] Fix docs push (#12810)
     add e037ae4992 [ci] Add bot to post welcome comment (#12695)
     add aded9d43ba [Testing] Add decorator tvm.testing.requires_cuda_compute_version (#12778)
     add bb80f19ea8 [Hexagon] Add debug option to hexagon pytest (#12795)
     add 38f53e8c95 [Hexagon] [runtime] Improve runtime resource management (#12727)
     add a1f6a4877c [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   (4145042f1e)
            \
             N -- N -- N   refs/heads/nightly-docker-update (a1f6a4877c)

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/PULL_REQUEST_TEMPLATE.md                   |    1 -
 .github/workflows/docs_bot.yml                     |   18 -
 .../{tag_teams.yml => pr_comment_bot.yml}          |   39 +-
 .github/workflows/tag_teams.yml                    |    7 -
 .github/workflows/tests_bot.yml                    |   21 -
 CONTRIBUTORS.md                                    |   12 +-
 Jenkinsfile                                        |   29 +-
 ci/jenkins/Deploy.groovy.j2                        |    3 +-
 ci/jenkins/Jenkinsfile.j2                          |   20 +-
 ci/jenkins/Prepare.groovy.j2                       |    2 +-
 {apps/uma/_template => ci/scripts}/__init__.py     |    7 +-
 ci/scripts/git_utils.py                            |   60 +-
 ci/scripts/github_commenter.py                     |  132 +++
 ci/scripts/github_docs_comment.py                  |   83 +-
 ci/scripts/github_pr_comment.py                    |  141 +++
 ci/scripts/github_skipped_tests_comment.py         |  142 +--
 ci/scripts/github_tag_teams.py                     |   85 +-
 docker/install/ubuntu_install_caffe.sh             |    8 +-
 include/tvm/meta_schedule/mutator.h                |   88 +-
 include/tvm/meta_schedule/postproc.h               |   86 +-
 include/tvm/meta_schedule/schedule_rule.h          |   86 +-
 include/tvm/meta_schedule/search_strategy.h        |  114 +-
 include/tvm/meta_schedule/space_generator.h        |   78 +-
 include/tvm/meta_schedule/tune_context.h           |    6 +
 include/tvm/script/ir_builder/tir/ir.h             |   49 +
 python/tvm/contrib/hexagon/build.py                |    9 +-
 python/tvm/contrib/hexagon/pytest_plugin.py        |   21 +-
 python/tvm/contrib/hexagon/session.py              |   15 +-
 python/tvm/meta_schedule/mutator/mutator.py        |   24 +-
 python/tvm/meta_schedule/postproc/postproc.py      |   24 +-
 .../meta_schedule/schedule_rule/schedule_rule.py   |   32 +-
 .../search_strategy/search_strategy.py             |   23 +
 .../space_generator/space_generator.py             |   24 +-
 python/tvm/meta_schedule/testing/dummy_object.py   |    3 +
 python/tvm/meta_schedule/testing/schedule_rule.py  |  138 +--
 python/tvm/meta_schedule/tune_context.py           |   10 +
 python/tvm/script/ir_builder/tir/ir.py             |  157 ++-
 python/tvm/testing/utils.py                        |   44 +
 .../mutator/mutate_compute_location.cc             |    5 +
 src/meta_schedule/mutator/mutate_parallel.cc       |    5 +
 src/meta_schedule/mutator/mutate_thread_binding.cc |    5 +
 src/meta_schedule/mutator/mutate_tile_size.cc      |    5 +
 src/meta_schedule/mutator/mutate_unroll.cc         |    5 +
 src/meta_schedule/mutator/mutator.cc               |    8 +
 .../postproc/disallow_dynamic_loop.cc              |    5 +
 src/meta_schedule/postproc/postproc.cc             |    8 +
 .../postproc/rewrite_cooperative_fetch.cc          |    5 +
 src/meta_schedule/postproc/rewrite_layout.cc       |    5 +
 .../postproc/rewrite_parallel_vectorize_unroll.cc  |    6 +
 .../postproc/rewrite_reduction_block.cc            |    5 +
 src/meta_schedule/postproc/rewrite_tensorize.cc    |    5 +
 .../postproc/rewrite_unbound_block.cc              |    5 +
 src/meta_schedule/postproc/verify_gpu_code.cc      |    6 +
 src/meta_schedule/schedule_rule/add_rfactor.cc     |    6 +
 src/meta_schedule/schedule_rule/auto_bind.cc       |    6 +
 src/meta_schedule/schedule_rule/auto_inline.cc     |    6 +
 .../schedule_rule/cross_thread_reduction.cc        |    6 +
 .../schedule_rule/multi_level_tiling.cc            |    6 +
 .../schedule_rule/multi_level_tiling.h             |    3 +
 .../multi_level_tiling_tensor_core.cc              |   11 +-
 .../multi_level_tiling_with_intrin.cc              |    7 +
 .../schedule_rule/parallel_vectorize_unroll.cc     |    7 +
 .../schedule_rule/random_compute_location.cc       |    6 +
 src/meta_schedule/schedule_rule/schedule_rule.cc   |    9 +
 .../search_strategy/evolutionary_search.cc         |   18 +
 src/meta_schedule/search_strategy/replay_func.cc   |   10 +
 src/meta_schedule/search_strategy/replay_trace.cc  |   11 +
 .../search_strategy/search_strategy.cc             |   11 +-
 .../space_generator/post_order_apply.cc            |    9 +
 src/meta_schedule/space_generator/schedule_fn.cc   |    5 +
 .../space_generator/space_generator.cc             |   12 +-
 .../space_generator/space_generator_union.cc       |    9 +
 src/meta_schedule/tune_context.cc                  |   27 +
 src/meta_schedule/utils.h                          |   35 +-
 src/runtime/hexagon/hexagon_buffer_manager.h       |   25 +-
 src/runtime/hexagon/hexagon_device_api.cc          |   26 +-
 src/runtime/hexagon/hexagon_device_api.h           |   27 +-
 src/script/ir_builder/tir/ir.cc                    |   86 ++
 src/tir/schedule/state.cc                          |    5 +
 .../hexagon/hexagon_device_api_tests.cc            |   18 +
 tests/python/ci/test_ci.py                         |  262 ++++-
 .../test_hexagon/test_parallel_hvx_load_vtcm.py    |   25 +-
 .../contrib/test_hexagon/test_vtcm_bandwidth.py    |   30 +-
 .../test_meta_schedule_schedule_rule_auto_bind.py  |   22 +-
 ...test_meta_schedule_schedule_rule_auto_inline.py |   19 +-
 ...chedule_schedule_rule_cross_thread_reduction.py |   17 +-
 .../test_meta_schedule_schedule_rule_mlt.py        |  529 +++++++++
 .../test_meta_schedule_schedule_rule_mlt_intrin.py |  418 +++++++
 .../test_meta_schedule_schedule_rule_mlt_tc.py     |  957 ++++++++++++++++
 ...ta_schedule_schedule_rule_multi_level_tiling.py | 1205 --------------------
 tests/python/unittest/test_tir_ptx_cp_async.py     |    7 +-
 tests/python/unittest/test_tir_ptx_ldmatrix.py     |    8 +-
 tests/python/unittest/test_tir_ptx_mma.py          |  146 +--
 tests/python/unittest/test_tir_ptx_mma_sp.py       |   14 +-
 .../test_tir_schedule_state_cached_flags.py        |   86 +-
 .../test_tir_schedule_tensorize_ldmatrix_mma.py    |   13 +-
 .../unittest/test_tvmscript_ir_builder_tir.py      |   43 +
 97 files changed, 4021 insertions(+), 2111 deletions(-)
 delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md
 delete mode 100644 .github/workflows/docs_bot.yml
 copy .github/workflows/{tag_teams.yml => pr_comment_bot.yml} (55%)
 delete mode 100644 .github/workflows/tests_bot.yml
 copy {apps/uma/_template => ci/scripts}/__init__.py (84%)
 create mode 100644 ci/scripts/github_commenter.py
 create mode 100755 ci/scripts/github_pr_comment.py
 create mode 100644 tests/python/unittest/test_meta_schedule_schedule_rule_mlt.py
 create mode 100644 tests/python/unittest/test_meta_schedule_schedule_rule_mlt_intrin.py
 create mode 100644 tests/python/unittest/test_meta_schedule_schedule_rule_mlt_tc.py
 delete mode 100644 tests/python/unittest/test_meta_schedule_schedule_rule_multi_level_tiling.py