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/30 00:04:25 UTC

[tvm] branch nightly-docker-update updated (9ed93be1f0 -> 3048898c00)

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 9ed93be1f0 [ci][docker] Nightly Docker image update
     add 68f9509b0c [TIR] Fix int64 dtype mismatch in Reindex (#12934)
     add 8c88aab778 [Bugfix][CMake] Update the minimum CMake version to 3.18 (#12682)
     add 5f132fd6c1 [ETHOSN] Support conversion of add/mul to requantize where possible (#12887)
     add 5634a1a17a [CODEGEN][OPENCL] Compatibility for OpenCL version 3.0 (#12938)
     add 0d8c9cef72 [Relay] Extend split for blocked ConvertLayout pass (#12886)
     add 9a45141165 [TIR] Use buffer's dtype when converting pad_value to TIR (#12925)
     add 3e3d900c66 [Virtual Machine] Implementation of 'set_output_zero_copy' (#11358)
     add ea01e3ffb4 [TIR] Preserve loop annotations in inject_software_pipeline pass (#12937)
     add 2379917985 [MetaSchedule] Add Script for TorchBench Model Tuning & Benchmarking (#12914)
     add 595f0b3975 [HEXAGON][QHL] Clippling the inputs of HVX version of QHL Sigmoid operation (#12919)
     add 3048898c00 [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   (9ed93be1f0)
            \
             N -- N -- N   refs/heads/nightly-docker-update (3048898c00)

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:
 CMakeLists.txt                                     |   2 +-
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 docs/install/from_source.rst                       |   5 +-
 include/tvm/runtime/vm/vm.h                        |  91 ++-
 .../testing/torchbench}/__init__.py                |   0
 python/tvm/meta_schedule/testing/torchbench/run.py | 609 +++++++++++++++++++++
 .../tvm/meta_schedule/testing/torchbench/utils.py  | 103 ++++
 python/tvm/relay/op/contrib/ethosn.py              |  82 ++-
 python/tvm/runtime/vm.py                           |  36 ++
 python/tvm/tir/schedule/schedule.py                |  10 +-
 src/relay/backend/contrib/ethosn/codegen.cc        |  39 ++
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |   1 +
 .../backend/contrib/ethosn/convert_equivalent.cc   | 324 +++++++----
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |  36 ++
 src/relay/backend/contrib/ethosn/ethosn_api.h      |  16 +
 src/relay/op/tensor/transform.cc                   |  24 +-
 src/runtime/vm/vm.cc                               | 215 +++++++-
 src/target/llvm/intrin_rule_hexagon.cc             |  10 +-
 src/target/source/codegen_opencl.cc                |   3 +-
 src/tir/op/op.cc                                   |   2 +-
 src/tir/schedule/primitive/cache_read_write.cc     |  16 +-
 src/tir/transforms/inject_software_pipeline.cc     |  30 +-
 tests/python/contrib/test_ethosn/test_addition.py  |  70 ++-
 .../test_ethosn/test_convert_equivalents.py        | 318 ++++++++++-
 tests/python/contrib/test_ethosn/test_multiply.py  | 102 +++-
 tests/python/contrib/test_ethosn/test_networks.py  |  10 +-
 .../{topi/test_relu_slice.py => test_sigmoid.py}   |  88 ++-
 tests/python/relay/test_pass_convert_op_layout.py  |  49 ++
 tests/python/relay/test_vm.py                      |  92 +++-
 tests/python/unittest/test_tir_schedule_reindex.py |  51 ++
 .../unittest/test_tir_schedule_transform_layout.py |  41 +-
 .../test_tir_transform_inject_software_pipeline.py |  67 +++
 33 files changed, 2281 insertions(+), 301 deletions(-)
 copy python/tvm/{contrib/cuda_graph => meta_schedule/testing/torchbench}/__init__.py (100%)
 create mode 100644 python/tvm/meta_schedule/testing/torchbench/run.py
 create mode 100644 python/tvm/meta_schedule/testing/torchbench/utils.py
 copy tests/python/contrib/test_hexagon/{topi/test_relu_slice.py => test_sigmoid.py} (53%)