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

[tvm] branch nightly-docker-update updated (8d88dd9d7f -> e927f2a70e)

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 8d88dd9d7f [ci][docker] Nightly Docker image update
     add a75dcabd3f [MetaSchedule] PyDatabase Complete Function Reload Support (#12838)
     add e18b48bed8 [Fix] naming outputs of graph nodes by op_name:output_index (#12809)
     add 18909a4c13 [ONNX] Upgrade onnx and onnxruntime (#12729)
     add ecd003c742 [ci] Lint PR title/body for @ tags (#12840)
     add d9f7cf3539 Revert "[ci] Lint PR title/body for @ tags (#12840)" (#12848)
     add 5dfa8da00e [Hexagon] 2-Stage Pipeline; Lower Async TIR primitives to Hexagon User DMA (#12785)
     add 534378b935 [Containers] Add Array::Map (#12692)
     add 52dbf102cd Fix caffe, boost install in Python venvs by creating python3.X link (#12828)
     add e927f2a70e [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   (8d88dd9d7f)
            \
             N -- N -- N   refs/heads/nightly-docker-update (e927f2a70e)

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 +-
 docker/install/ubuntu_install_boost.sh             |   3 +
 docker/install/ubuntu_install_caffe.sh             |   4 +-
 docker/install/ubuntu_install_onnx.sh              |   4 +-
 docker/install/ubuntu_install_python.sh            |   7 +
 include/tvm/meta_schedule/database.h               |  70 +++++++
 include/tvm/runtime/container/array.h              | 198 +++++++++++++++----
 include/tvm/tir/builtin.h                          |  10 +
 include/tvm/tir/transform.h                        |   5 +
 python/tvm/meta_schedule/database/database.py      |  81 ++++++++
 src/driver/driver_api.cc                           |  12 +-
 src/ir/type_functor.cc                             |   9 +-
 src/meta_schedule/database/database.cc             |   6 +
 src/runtime/graph_executor/graph_executor.cc       |   4 +-
 src/runtime/hexagon/hexagon_device_api.cc          |  25 +++
 src/te/operation/create_primfunc.cc                |   2 +-
 src/tir/analysis/device_constraint_utils.cc        |   5 +-
 src/tir/ir/buffer.cc                               |   4 +-
 src/tir/ir/expr.cc                                 |   3 +-
 src/tir/ir/expr_functor.cc                         |  14 +-
 src/tir/ir/functor_common.h                        |   3 +-
 src/tir/ir/index_map.cc                            |   5 +-
 src/tir/ir/specialize.cc                           |  19 +-
 src/tir/ir/stmt_functor.cc                         |   3 +-
 src/tir/op/builtin.cc                              |   6 +
 src/tir/schedule/primitive/decompose_padding.cc    |  15 +-
 src/tir/schedule/transform.cc                      |   8 +-
 src/tir/transforms/inject_virtual_thread.cc        |   4 +-
 src/tir/transforms/lower_async_dma.cc              | 194 +++++++++++++++++++
 src/tir/transforms/lower_match_buffer.cc           |   8 +-
 src/tir/transforms/lower_tvm_builtin.cc            |  30 +++
 src/tir/transforms/renew_defs.cc                   |  37 ++--
 src/tir/transforms/vectorize_loop.cc               |   6 +-
 tests/cpp/container_test.cc                        | 135 +++++++++++++
 .../test_hexagon/test_software_pipeline_async.py   |  86 +++++++++
 tests/python/frontend/onnx/test_forward.py         |  64 +++++++
 .../python/unittest/test_meta_schedule_database.py | 211 ++++++++++++++++++++-
 .../test_tir_transform_inject_ptx_async_copy.py    |   4 +-
 .../test_tir_transform_inject_software_pipeline.py |   2 +-
 40 files changed, 1186 insertions(+), 160 deletions(-)
 create mode 100644 src/tir/transforms/lower_async_dma.cc
 create mode 100644 tests/python/contrib/test_hexagon/test_software_pipeline_async.py