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

[tvm] branch nightly-docker-update updated (8e982dd4ae -> e5c7e22e03)

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 8e982dd4ae [ci][docker] Nightly Docker image update
     add c35c9fd3a5 [Relay][PyTorch] Add aten::lerp (#12167)
     add 4bcaecf979 [Adreno] Fix winograd tests and accuracy (#12202)
     add 724764ae40 [TFLite] Fix _test_tflite2_quantized_depthwise_convolution is unused (#12145)
     add 1131c92233 [TVMScript] StmtDoc Printing (#12112)
     add ee319d9d23 [MetaSchedule] Integration test for CUDA AutoTensorization (#12142)
     add 06748583eb [ci] Fix docker post-merge builds on main (#12210)
     add 3c737fbd5b [TIR] Asynchronous stage in software pipeline (#12171)
     add ebbce649f0 [microTVM][tutorial] AOT host-driven tutorial with TFLite model (#12182)
     add cfefa90a96 [Adreno] Update conv2d_nhwc test to use winograd (#12214)
     add 195e60b97a [FIX,ROOFLINE] Handle mismatched compiled and TIR hash (#12219)
     add e5c7e22e03 [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   (8e982dd4ae)
            \
             N -- N -- N   refs/heads/nightly-docker-update (e5c7e22e03)

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                                        |  14 +-
 ci/jenkins/Jenkinsfile.j2                          |  14 +-
 docs/conf.py                                       |   1 +
 gallery/how_to/work_with_microtvm/micro_aot.py     | 180 ++++++
 include/tvm/tir/stmt.h                             |  27 +
 python/tvm/meta_schedule/default_config.py         |  52 ++
 python/tvm/relay/frontend/pytorch.py               |  11 +
 python/tvm/topi/adreno/conv2d_winograd_common.py   |  16 +-
 python/tvm/utils/roofline.py                       |   4 +-
 src/meta_schedule/schedule_rule/auto_bind.cc       |   3 +
 src/script/printer/base_doc_printer.cc             |  22 +
 src/script/printer/base_doc_printer.h              |  63 ++-
 src/script/printer/python_doc_printer.cc           | 212 ++++++-
 src/target/source/codegen_cuda.cc                  |  18 +
 src/tir/transforms/inject_software_pipeline.cc     | 448 +++++++++++++--
 src/tir/transforms/ir_utils.cc                     |   7 +
 src/tir/transforms/ir_utils.h                      |   5 +
 src/tir/transforms/remove_no_op.cc                 |  16 +
 src/tir/transforms/thread_storage_sync.cc          |  45 ++
 tests/python/frontend/pytorch/test_forward.py      |  15 +
 tests/python/frontend/tflite/test_forward.py       |  76 ++-
 .../test_meta_schedule_auto_tensorize.py           |  74 ++-
 tests/python/relay/test_conv2d_nchw_texture.py     |  60 +-
 tests/python/relay/test_conv2d_nhwc_texture.py     |  11 +-
 tests/python/relay/utils/adreno_utils.py           |  25 +-
 .../test_tir_transform_inject_software_pipeline.py | 469 ++++++++++++++--
 .../test_tvmscript_printer_python_doc_printer.py   | 615 ++++++++++++++++++++-
 tests/scripts/git_change_docker.sh                 |   3 +-
 tests/scripts/task_python_microtvm.sh              |   2 +
 29 files changed, 2382 insertions(+), 126 deletions(-)
 create mode 100644 gallery/how_to/work_with_microtvm/micro_aot.py