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:27:30 UTC

[tvm] branch last-successful updated (d261fa8838 -> 90ed632280)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from d261fa8838 [Hexagon] Add pylint on tests (#13233)
     add 404d95f054 [build][relay][te][tir] remove unused vars / args (#13266)
     add ff6aaeb12a [Frontend][Tensorflow2] Import graph_def to default graph before calling function_def_to_graph_def (#13260)
     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)

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |   7 -
 CMakeLists.txt                                     |   3 +
 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/frontend/tensorflow2.py           |  30 ++-
 python/tvm/relay/op/contrib/ethosn.py              |  55 ++++-
 python/tvm/tir/schedule/_type_checker.py           |  49 +++-
 .../search_strategy/evolutionary_search.cc         |  18 +-
 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/backend/graph_plan_memory.cc             |   2 +-
 src/relay/backend/te_compiler_cache.cc             |   4 +-
 src/relay/collage/mock_cost_estimator.h            |  10 +
 src/relay/op/nn/nn.cc                              |   1 +
 src/relay/transforms/remove_standalone_reshapes.cc |   4 +-
 src/runtime/contrib/ethosn/ethosn_device.cc        |  70 ++++--
 src/runtime/contrib/ethosn/ethosn_runtime.h        |  33 +++
 src/te/operation/compute_op.cc                     |   4 +-
 src/tir/ir/data_type_rewriter.cc                   |   2 +-
 src/tir/schedule/primitive/cache_index.cc          |   2 +-
 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 +++--
 .../unittest/test_meta_schedule_search_strategy.py |  56 +++++
 42 files changed, 980 insertions(+), 183 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