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

[tvm] branch nightly-docker-update updated (57717313f1 -> 9b421ded74)

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 57717313f1 [ci][docker] Nightly Docker image update
     add f7cc992a98 [MetaSchedule] Complete NCHW Conv2D Winograd Kernel Scheduling (#12648)
     add f114d55bee [TIR] Preserve annotations after lower opaque block (#12572)
     add c2824a84d5 [Testing] Allow NCHW layout in `relay_workload` (#12656)
     add acbbd9f15a [ETHOSN] Improve inferring new shape of the Reshape operator (#12594)
     add 0c374544a3 [TIR][TVMScript] Update printer / parser to make T.allocate return buffer var (#12412)
     add d54c0651ec [Torch][AArch64] Skip test_load_model___wrong_language__to_pytorch (#12660)
     add a399e6ce97 [ci] Add linter for PR title and body (#12367)
     add 9b421ded74 [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   (57717313f1)
            \
             N -- N -- N   refs/heads/nightly-docker-update (9b421ded74)

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                                        |  43 ++--
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 ci/jenkins/Prepare.groovy.j2                       |  21 +-
 ci/scripts/check_pr.py                             | 150 ++++++++++++++
 ci/scripts/git_skip_ci.py                          |   2 +-
 python/tvm/auto_scheduler/testing/tune_relay.py    |   6 +
 python/tvm/meta_schedule/testing/relay_workload.py |  43 ++--
 python/tvm/meta_schedule/testing/tune_relay.py     |   6 +
 python/tvm/relay/op/contrib/ethosn.py              |   2 -
 python/tvm/script/tir/scope_handler.py             |  57 +++---
 python/tvm/topi/cuda/conv2d_winograd.py            |   1 +
 src/meta_schedule/schedule_rule/winograd.cc        |  29 ++-
 src/printer/tvmscript_printer.cc                   | 128 ++++++------
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |  18 +-
 src/tir/transforms/lower_opaque_block.cc           |  60 ++++--
 tests/python/contrib/test_ethosn/test_networks.py  |   4 +-
 tests/python/contrib/test_ethosn/test_reshape.py   |  25 ++-
 .../test_ethosu/test_copy_compute_reordering.py    | 228 ++++++++++-----------
 .../contrib/test_ethosu/test_encode_constants.py   |  48 +++--
 .../contrib/test_ethosu/test_hoist_allocates.py    |  75 ++++---
 .../contrib/test_ethosu/test_merge_constants.py    | 158 +++++++++-----
 .../test_ethosu/test_remove_concatenates.py        |   3 +-
 .../contrib/test_ethosu/test_replace_conv2d.py     |  18 +-
 .../contrib/test_ethosu/test_replace_copy.py       |   9 +-
 tests/python/contrib/test_ethosu/test_scheduler.py |  12 +-
 .../test_ethosu/test_tir_to_cs_translator.py       |  31 +--
 tests/python/driver/tvmc/test_frontends.py         |   4 +
 .../test_meta_schedule_postproc_verify_gpu_code.py |  24 +--
 .../unittest/test_meta_schedule_space_cuda.py      |  13 +-
 .../unittest/test_meta_schedule_tune_relay.py      |  36 ++--
 .../test_tir_analysis_calculate_workspace.py       |  18 +-
 .../test_tir_analysis_detect_buffer_access_lca.py  |   2 +-
 tests/python/unittest/test_tir_ptx_mma.py          | 103 +++++-----
 tests/python/unittest/test_tir_ptx_mma_sp.py       |  32 +--
 tests/python/unittest/test_tir_renew_defs.py       |   3 +-
 .../unittest/test_tir_structural_equal_hash.py     |   2 +-
 .../test_tir_transform_convert_for_loops_serial.py |   4 +-
 .../test_tir_transform_extract_constants.py        |   9 +-
 .../unittest/test_tir_transform_flatten_buffer.py  |  36 ++--
 .../test_tir_transform_inject_virtual_thread.py    |  12 +-
 .../test_tir_transform_lower_opaque_block.py       |  55 ++++-
 ...test_tir_transform_renormalize_split_pattern.py |  18 +-
 .../unittest/test_tir_transform_storage_flatten.py |   4 +-
 .../unittest/test_tir_transform_storage_rewrite.py |   6 +-
 .../unittest/test_tir_transform_unroll_loop.py     |   9 +-
 tests/python/unittest/test_tir_usmp_algo.py        |  38 ++--
 .../test_tir_usmp_analysis_extract_bufferinfo.py   | 146 ++++++-------
 ...ransform_convert_pool_allocations_to_offsets.py |  49 +++--
 tests/python/unittest/test_tir_usmp_utils.py       |  12 +-
 tests/python/unittest/test_tvmscript_roundtrip.py  |  82 ++++++--
 50 files changed, 1236 insertions(+), 678 deletions(-)
 create mode 100644 ci/scripts/check_pr.py