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/20 00:00:56 UTC

[tvm] branch nightly-docker-update updated (b5a7bd4c20 -> b0aefd1a96)

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 b5a7bd4c20 [ci][docker] Nightly Docker image update
     add 1ff6e99556 [OPENCL][TEXTURE] Test case enhancements and fixes for RPC (#13408)
     add 24b7d9fdd0 [MetaSchedule] Fix Dynamic Loop from AutoBinding (#13421)
     add 76a6e7141f [TVMScript] Output elif where possible (#13433)
     add 26d9b5a7c6 [Hotfix] Skip Flaky Tests (Tracked in #13443) (#13444)
     add b0aefd1a96 [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   (b5a7bd4c20)
            \
             N -- N -- N   refs/heads/nightly-docker-update (b0aefd1a96)

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                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 .../tvm/meta_schedule/schedule/cuda/thread_bind.h  |   1 +
 python/tvm/relay/frontend/tflite.py                |   2 +-
 src/meta_schedule/schedule/cuda/thread_bind.cc     |   2 +-
 src/meta_schedule/schedule/cuda/winograd.cc        |   3 +-
 src/printer/tvmscript_printer.cc                   |  18 +-
 .../test_clml => relay/opencl_texture}/conftest.py |  21 +-
 .../opencl_texture/test_conv2d_nchw_texture.py     | 100 +++++----
 .../opencl_texture/test_conv2d_nhwc_texture.py     |  74 ++++---
 .../test_depthwise_conv2d_nchw_texture.py          |  24 +-
 .../test_depthwise_conv2d_nhwc_texture.py          |  24 +-
 tests/python/relay/opencl_texture/test_network.py  |  69 ++++++
 .../relay/opencl_texture/test_reduction_texture.py |  12 +-
 .../relay/opencl_texture/utils/adreno_utils.py     | 130 ++++++++---
 .../test_meta_schedule_space_cuda_winograd.py      | 241 +++++++++++++++++++++
 tests/python/unittest/test_tvmscript_roundtrip.py  |  42 ++++
 17 files changed, 654 insertions(+), 149 deletions(-)
 copy tests/python/{contrib/test_clml => relay/opencl_texture}/conftest.py (59%)
 create mode 100644 tests/python/relay/opencl_texture/test_network.py