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/08/23 00:00:36 UTC

[tvm] branch nightly-docker-update updated (3cb2f17836 -> 7320d09f95)

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 3cb2f17836 [ci][docker] Nightly Docker image update
     add 262906516a [TVMScript] Printer: add boolean operators to OperationDoc (#12518)
     add e9aad35cf3 fix group conv3d pack kernel shape error (#12523)
     add 7c318d7196 [ETHOSN] Remove support for older versions of the driver stack (#12347)
     add 8146a9bf2c [TIR] Support AllocateConst nodes in TensorIR scheduling flow (#12489)
     add 48a8cbd57d [ONNX] Fix test to disable default ONNX frontend constant folding (#12532)
     add 389675668a [CI] Set test dependency on "transformers" package with pytest.importorskip (#12528)
     add 40fd43e24b [MicroTVM] expose project options in autotuning (#12479)
     add 3f56851264 [TIR][Schedule] Support for specific consumer block targeting in cache_read (#12505)
     add c1bd0227be [FIX] Fix bug in resize2d unittest func name (#12498)
     add 4d7e7a8b57 [ci] xfail failing ethosu codegen tests (#12508)
     add 66a31e97a7 [CI] Add alexnet and googlenet caffe model to request hook (#12510)
     add e5e05feee3 [LLVM] Add "cl-opt" attribute to target_kind "llvm" (#12440)
     add 902343a817 [BugFix][UMA] Fix order issue in uma_lower  (#12447)
     add 1e399fa451 [TIR] Add pass to check for out of bounds memory access (#12352)
     add 7320d09f95 [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   (3cb2f17836)
            \
             N -- N -- N   refs/heads/nightly-docker-update (7320d09f95)

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 +-
 apps/uma/_template/patterns.py                     |   5 +
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 include/tvm/meta_schedule/apply_history_best.h     |   4 +-
 include/tvm/meta_schedule/extracted_task.h         |  10 +-
 include/tvm/script/printer/doc.h                   |  51 +--
 include/tvm/tir/analysis.h                         |  11 +
 include/tvm/tir/schedule/schedule.h                |   4 +-
 python/tvm/meta_schedule/apply_history_best.py     |   2 +-
 python/tvm/meta_schedule/relay_integration.py      |   2 +-
 python/tvm/meta_schedule/testing/utils.py          |  13 +-
 python/tvm/micro/testing/evaluation.py             |  19 +-
 python/tvm/relay/backend/contrib/uma/api/lower.py  |  22 +-
 python/tvm/relay/op/contrib/ethosn.py              |  23 +-
 python/tvm/script/printer/doc.py                   |  55 +--
 python/tvm/testing/aot.py                          |  25 +-
 python/tvm/testing/utils.py                        |  24 ++
 python/tvm/tir/analysis/analysis.py                |  11 +
 python/tvm/tir/schedule/schedule.py                |  17 +-
 python/tvm/topi/x86/conv3d.py                      |  12 +-
 src/arith/int_set.cc                               |   4 +-
 src/ir/transform.cc                                |   2 +-
 src/meta_schedule/extracted_task.cc                |  27 +-
 src/printer/tvmscript_printer.cc                   |  19 +
 src/relay/backend/contrib/ethosn/codegen.cc        |   5 +-
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |   1 -
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |   1 -
 .../backend/contrib/ethosn/ethosn_api_version.h    |  58 ---
 src/relay/backend/task_extraction.cc               |  10 +-
 src/relay/backend/te_compiler_cache.cc             |  26 +-
 src/relay/backend/te_compiler_cache.h              |   7 +-
 src/runtime/contrib/ethosn/ethosn_device.cc        |  32 --
 src/runtime/contrib/ethosn/ethosn_device.h         |   7 -
 src/runtime/contrib/ethosn/ethosn_runtime.cc       |  12 -
 src/runtime/contrib/ethosn/ethosn_runtime.h        |   3 -
 src/script/printer/python_doc_printer.cc           |   6 +
 src/target/llvm/llvm_instance.cc                   | 430 ++++++++++++++++++++-
 src/target/llvm/llvm_instance.h                    | 194 ++++++++--
 src/target/llvm/llvm_module.cc                     |   4 +-
 src/target/target_kind.cc                          |  24 ++
 src/te/operation/create_primfunc.cc                |  12 +
 src/te/operation/create_primfunc.h                 |   8 +
 src/tir/analysis/estimate_flops.cc                 |   1 +
 src/tir/analysis/oob_checker.cc                    | 130 +++++++
 src/tir/schedule/concrete_schedule.cc              |  11 +-
 src/tir/schedule/concrete_schedule.h               |   4 +-
 src/tir/schedule/error.cc                          |   4 +-
 src/tir/schedule/primitive.h                       |   3 +-
 src/tir/schedule/primitive/cache_read_write.cc     |  61 ++-
 src/tir/schedule/trace.cc                          |   3 +
 src/tir/schedule/traced_schedule.cc                |   8 +-
 src/tir/schedule/traced_schedule.h                 |   4 +-
 src/tir/schedule/transform.cc                      |  19 +-
 src/tir/transforms/bind_params.cc                  |  79 ++--
 src/tir/transforms/inject_software_pipeline.cc     |   5 +-
 src/tir/transforms/ir_utils.h                      |  10 +
 .../plan_update_buffer_allocation_location.cc      |  36 +-
 tests/cpp/target_test.cc                           | 160 ++++++++
 tests/python/contrib/test_ethosn/infrastructure.py |  32 --
 tests/python/contrib/test_ethosn/test_conv2d.py    |   2 +-
 .../contrib/test_ethosn/test_fullyconnected.py     |   2 +-
 tests/python/contrib/test_ethosn/test_networks.py  |  50 +--
 tests/python/contrib/test_ethosn/test_split.py     |  14 +-
 .../python/contrib/test_ethosn/test_topologies.py  |  19 +-
 tests/python/contrib/test_ethosu/test_codegen.py   |  20 +-
 tests/python/contrib/test_uma/test_uma_pipeline.py |  82 ++++
 .../test_uma/test_uma_vanilla_accelerator.py       |   3 +-
 tests/python/driver/tvmc/test_frontends.py         |   2 +-
 tests/python/frontend/onnx/test_forward.py         |  11 +
 tests/python/relay/dyn/test_dynamic_op_level5.py   |   4 +-
 tests/python/unittest/test_arith_intset.py         |   2 +-
 tests/python/unittest/test_link_params.py          |  64 ++-
 .../unittest/test_meta_schedule_integration.py     |   4 +
 tests/python/unittest/test_target_target.py        |   7 +
 tests/python/unittest/test_tir_analysis_oob.py     |  78 ++++
 .../unittest/test_tir_schedule_cache_read_write.py |  42 ++
 .../test_tvmscript_printer_python_doc_printer.py   |  62 +++
 tests/scripts/request_hook/request_hook.py         |   3 +
 78 files changed, 1777 insertions(+), 506 deletions(-)
 delete mode 100644 src/relay/backend/contrib/ethosn/ethosn_api_version.h
 create mode 100644 src/tir/analysis/oob_checker.cc
 create mode 100644 tests/python/unittest/test_tir_analysis_oob.py