You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mb...@apache.org on 2022/01/20 10:43:07 UTC

[tvm] branch main updated (73aa415 -> bcdc345)

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

mbaret pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 73aa415  [CMSIS-NN] Separated symmetric and asymmetric padding tests for Conv2D (#9963)
     add bcdc345  [microNPU][2d] Add more Part matchers to cascader (#9785)

No new revisions were added by this update.

Summary of changes:
 .../tvm/contrib/ethosu/cascader/device_config.py   | 156 +++++++++++++--
 .../contrib/ethosu/te/binary_elementwise.py        | 153 ++++++++++++++-
 .../relay/backend/contrib/ethosu/te/convolution.py |   4 +-
 .../relay/backend/contrib/ethosu/te/depthwise.py   | 162 +++++++++++++++-
 .../tvm/relay/backend/contrib/ethosu/te/pooling.py | 139 +++++++++++++-
 .../backend/contrib/ethosu/te/unary_elementwise.py | 118 +++++++++++-
 src/contrib/ethosu/cascader/parts/ethosu.cc        |   8 +-
 .../contrib/test_ethosu/cascader/conftest.py       |  65 ++++++-
 tests/python/contrib/test_ethosu/cascader/infra.py |  63 +++++--
 .../test_ethosu_binary_elementwise_matcher.py      | 209 +++++++++++++++++++++
 .../cascader/test_ethosu_block_config.py           |  97 ++++++++--
 .../cascader/test_ethosu_conv2d_matcher.py         |   7 +-
 ...tcher.py => test_ethosu_depthwise2d_matcher.py} |  34 ++--
 .../cascader/test_ethosu_part_performance.py       |  37 +++-
 ...d_matcher.py => test_ethosu_pooling_matcher.py} |  57 ++----
 .../test_ethosu_unary_elementwise_matcher.py       | 158 ++++++++++++++++
 .../contrib/test_ethosu/cascader/test_graph.py     |  24 +++
 17 files changed, 1373 insertions(+), 118 deletions(-)
 create mode 100644 tests/python/contrib/test_ethosu/cascader/test_ethosu_binary_elementwise_matcher.py
 copy tests/python/contrib/test_ethosu/cascader/{test_ethosu_conv2d_matcher.py => test_ethosu_depthwise2d_matcher.py} (82%)
 copy tests/python/contrib/test_ethosu/cascader/{test_ethosu_conv2d_matcher.py => test_ethosu_pooling_matcher.py} (59%)
 create mode 100644 tests/python/contrib/test_ethosu/cascader/test_ethosu_unary_elementwise_matcher.py