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/03 20:06:02 UTC

[tvm] branch last-successful updated (0d553127e5 -> 47da418fbf)

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 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)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   3 +
 python/tvm/relay/op/contrib/ethosn.py              |  55 +++++--
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |  17 +++
 .../backend/contrib/ethosn/inline_partitions.cc    | 126 ++++++++++++++++
 src/runtime/contrib/ethosn/ethosn_device.cc        |  70 +++++----
 src/runtime/contrib/ethosn/ethosn_runtime.h        |  33 ++++
 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 +++++---
 21 files changed, 593 insertions(+), 78 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