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/11/04 00:00:55 UTC

[tvm] branch nightly-docker-update updated (e2b542dcb2 -> 8462678c46)

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 e2b542dcb2 [ci][docker] Nightly Docker image update
     add d998187e16 [Frontend][PaddlePaddle] Fix UnboundLocalError: local variable 'shape… (#13247)
     add e9ba9865a7 [skip ci] Revert "[ci] Protect release branches (#13208)" (#13274)
     add f15afd2251 [Docs] Minimal dependencies for Fedora/CentOS (#13248)
     add 9df3a33ff4 [build][doc] Fix clang doxygen warnings (#13270)
     add 0d553127e5 [build][tir] fix clang redundant-move warning (#13268)
     add 75921fb559 [ETHOSN] Inline non-compute-intensive partitions (#13092)
     add 47da418fbf [ETHOSN] Throw error message when inference fails (#13022)
     add 1d1db35236 [MetaSchedule] Fix Task Hanging in EvolutionarySearch (#13246)
     add 215f0e2fc2 [Bugfix][TIR] Fix version conflict with `typing` for Python 3.9  (#13269)
     add b98b9f92da [MetaSchedule] Improve the script for TorchBench model tuning & benchmarking (#13255)
     add 90ed632280 [Relay] Add tensor rank check for `nn.instance_norm` (#13280)
     add b1a099b213 [Relay] Enhancement for fold_scale_axis and simplify_expr (#13275)
     add 8462678c46 [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   (e2b542dcb2)
            \
             N -- N -- N   refs/heads/nightly-docker-update (8462678c46)

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:
 .asf.yaml                                          |   7 -
 CMakeLists.txt                                     |   3 +
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 docs/install/from_source.rst                       |   9 +
 include/tvm/meta_schedule/search_strategy.h        |   2 +
 .../search_strategy/evolutionary_search.py         |   4 +
 python/tvm/meta_schedule/testing/torchbench/run.py | 272 ++++++++++++++++-----
 .../tvm/meta_schedule/testing/torchbench/utils.py  |   8 +-
 python/tvm/relay/frontend/paddlepaddle.py          |   2 +-
 python/tvm/relay/op/contrib/ethosn.py              |  55 ++++-
 python/tvm/tir/schedule/_type_checker.py           |  49 +++-
 .../search_strategy/evolutionary_search.cc         |  18 +-
 src/relay/analysis/util.cc                         |   3 +-
 src/relay/backend/annotate_used_memory.cc          |   4 +
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |  17 ++
 .../backend/contrib/ethosn/inline_partitions.cc    | 126 ++++++++++
 src/relay/collage/mock_cost_estimator.h            |  10 +
 src/relay/ir/dataflow_matcher.cc                   |  10 -
 src/relay/op/nn/nn.cc                              |   1 +
 src/relay/transforms/pattern_utils.h               |  29 +++
 src/relay/transforms/simplify_expr.cc              |  32 +++
 src/runtime/contrib/ethosn/ethosn_device.cc        |  70 ++++--
 src/runtime/contrib/ethosn/ethosn_runtime.h        |  33 +++
 src/tir/transforms/profile_instrumentation.cc      |   2 +-
 tests/cpp/runtime/contrib/ethosn/inference_test.cc |  74 ++++++
 tests/python/contrib/test_ethosn/infrastructure.py |  28 ++-
 tests/python/contrib/test_ethosn/test_addition.py  |   4 +-
 .../python/contrib/test_ethosn/test_concatenate.py |   2 +-
 .../contrib/test_ethosn/test_depth_to_space.py     |   2 +-
 .../contrib/test_ethosn/test_inline_partitions.py  | 167 +++++++++++++
 .../python/contrib/test_ethosn/test_leaky_relu.py  |   2 +-
 tests/python/contrib/test_ethosn/test_multiply.py  |   4 +-
 tests/python/contrib/test_ethosn/test_networks.py  |   5 +-
 tests/python/contrib/test_ethosn/test_relu.py      |   2 +-
 .../python/contrib/test_ethosn/test_requantize.py  |   4 +-
 tests/python/contrib/test_ethosn/test_reshape.py   |   6 +-
 tests/python/contrib/test_ethosn/test_split.py     |   4 +-
 tests/python/contrib/test_ethosn/test_tanh.py      |   2 +-
 .../python/contrib/test_ethosn/test_topologies.py  |  61 +++--
 tests/python/relay/test_pass_fold_scale_axis.py    |  51 ++++
 tests/python/relay/test_pass_simplify_expr.py      |  15 ++
 .../unittest/test_meta_schedule_search_strategy.py |  56 +++++
 43 files changed, 1104 insertions(+), 191 deletions(-)
 create mode 100644 src/relay/backend/contrib/ethosn/inline_partitions.cc
 create mode 100644 tests/cpp/runtime/contrib/ethosn/inference_test.cc
 create mode 100644 tests/python/contrib/test_ethosn/test_inline_partitions.py