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

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

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 865607305d [ci][docker] Nightly Docker image update
     add 421f9d756a [ci] Skip broken android_rpc failures (#12192)
     add 5711c35ae0 [TIR Pass] decouple flatten buffer to lower opaque block pass and flatten buffer. (#12172)
     add 97269fa479 Update to 0.10.0 (#12190)
     add 584b0f31d8 [TVMScript] ExprDoc (#12048)
     add 03aed787df [microTVM] Fix timeout of -1 breaking Arduino transport (#12189)
     add ca30e5e2e4 TIR Schedule primitive - decompose_padding (#12174)
     add 88bbb40540 fix pooling documents (#12201)
     add c94ebf9206 [runtime][hexagon] improved file-copy logic (#12194)
     add 69dc721759 [hexagon][testing] filesystem-friendly test IDs (#12195)
     add 98d5feb297 [docs] Update tlcpack-sphinx-addon (#12188)
     add 96b151751a [OpenCL] Fix profiling hang for OpenCL device (#12173)
     add 85aa597245 [JIT] Force finalization of JITed code, expose sf/hf runtime functions (#12187)
     add ae3e2a8537 Use std::move to avoid warnings on clang-13 (#12196)
     add 465b579e3b [ci][docker] Use RFC image tags only (#11938)
     add 7b6cb60fcb [Target] Improve string interpretation in Target creation (#12152)
     add 10b81c274f [ci][lint] Consolidate image lookup logic (#12206)
     add fcec5f4a76 [TVMScript] StmtDoc Definitions (#12111)
     add 8e982dd4ae [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   (865607305d)
            \
             N -- N -- N   refs/heads/nightly-docker-update (8e982dd4ae)

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/workflows/main.yml                         |   6 +
 Jenkinsfile                                        |  16 +-
 NOTICE                                             |   2 +-
 apps/microtvm/arduino/template_project/boards.json |   5 +-
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 conda/recipe/meta.yaml                             |   2 +-
 docker/dev_common.sh                               |   8 +-
 docker/install/ubuntu_install_python_package.sh    |   2 +-
 docs/conf.py                                       |   2 +-
 include/tvm/runtime/builtin_fp16.h                 |   2 +
 include/tvm/runtime/c_runtime_api.h                |   2 +-
 include/tvm/script/printer/doc.h                   | 988 +++++++++++++++++++++
 include/tvm/tir/schedule/schedule.h                |   9 +
 include/tvm/tir/transform.h                        |  11 +-
 python/tvm/_ffi/libinfo.py                         |   2 +-
 python/tvm/micro/testing/evaluation.py             |   4 +-
 python/tvm/script/printer/_ffi_api.py              |   2 +-
 python/tvm/script/printer/doc.py                   | 444 ++++++++-
 python/tvm/script/printer/doc_printer.py           |   5 +-
 python/tvm/script/tir/scope_handler.py             |  10 +-
 python/tvm/tir/schedule/schedule.py                |  78 ++
 python/tvm/tir/transform/transform.py              |  16 +-
 python/tvm/topi/nn/pooling.py                      |   9 +
 src/driver/driver_api.cc                           |   1 +
 src/meta_schedule/postproc/verify_gpu_code.cc      |   1 +
 src/relay/backend/vm/manifest_lifetimes.cc         |   2 +-
 src/relay/quantize/calibrate.cc                    |   2 +-
 src/relay/transforms/device_planner.cc             |   2 +-
 src/runtime/builtin_fp16.cc                        |   3 +
 src/runtime/file_utils.cc                          |  22 +-
 src/runtime/file_utils.h                           |   8 +
 .../graph_executor/debug/graph_executor_debug.cc   |   2 +-
 src/runtime/hexagon/hexagon_module.cc              |   5 +-
 src/runtime/opencl/opencl_common.h                 |  33 +-
 src/runtime/opencl/opencl_device_api.cc            |   2 +
 src/script/printer/base_doc_printer.cc             |  20 +
 src/script/printer/base_doc_printer.h              |  50 ++
 src/script/printer/doc.cc                          | 317 +++++++
 src/script/printer/python_doc_printer.cc           | 203 +++++
 src/target/llvm/llvm_module.cc                     |   6 +
 src/target/target.cc                               | 258 ++++--
 src/te/operation/create_primfunc.cc                |   2 +-
 src/tir/schedule/concrete_schedule.cc              |   9 +
 src/tir/schedule/concrete_schedule.h               |   2 +
 src/tir/schedule/error.h                           |  32 +-
 src/tir/schedule/primitive.h                       |  11 +
 src/tir/schedule/primitive/blockize_tensorize.cc   |   2 +-
 src/tir/schedule/primitive/cache_read_write.cc     |   6 +-
 src/tir/schedule/primitive/decompose_padding.cc    | 574 ++++++++++++
 src/tir/schedule/primitive/reduction.cc            |  27 +-
 src/tir/schedule/schedule.cc                       |   5 +
 src/tir/schedule/traced_schedule.cc                |  12 +
 src/tir/schedule/traced_schedule.h                 |   2 +
 src/tir/transforms/flatten_buffer.cc               | 139 +--
 .../{flatten_buffer.cc => lower_opaque_block.cc}   | 139 +--
 .../remove_weight_layout_rewrite_block.cc          |   2 +-
 src/tir/usmp/transform/assign_pool_info.cc         |   4 +-
 tests/cpp-runtime/opencl/opencl_timer_test.cc      |  61 ++
 tests/cpp/target_test.cc                           |  86 ++
 tests/micro/arduino/test_arduino_workflow.py       |   2 +-
 tests/python/ci/test_ci.py                         |  20 +-
 tests/python/contrib/test_hexagon/pytest_util.py   |   4 +-
 tests/python/unittest/test_tir_buffer.py           |   1 +
 .../test_tir_schedule_decompose_padding.py         | 313 +++++++
 .../unittest/test_tir_transform_flatten_buffer.py  | 261 ++----
 .../test_tir_transform_inject_ptx_async_copy.py    |   2 +
 .../unittest/test_tir_transform_loop_partition.py  |   1 +
 ...py => test_tir_transform_lower_opaque_block.py} | 131 +--
 .../python/unittest/test_tvmscript_printer_doc.py  | 477 +++++++++-
 .../test_tvmscript_printer_python_doc_printer.py   | 380 +++++++-
 tests/scripts/open_docker_update_pr.py             |   6 +
 version.py                                         |   2 +-
 web/package.json                                   |   2 +-
 73 files changed, 4578 insertions(+), 717 deletions(-)
 create mode 100644 src/tir/schedule/primitive/decompose_padding.cc
 copy src/tir/transforms/{flatten_buffer.cc => lower_opaque_block.cc} (56%)
 create mode 100644 tests/cpp-runtime/opencl/opencl_timer_test.cc
 create mode 100644 tests/python/unittest/test_tir_schedule_decompose_padding.py
 copy tests/python/unittest/{test_tir_transform_flatten_buffer.py => test_tir_transform_lower_opaque_block.py} (67%)