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

[tvm] branch main updated (291dd2f063 -> b55ffcd18b)

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

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


    from 291dd2f063 support false-positive fast math (#12702)
     add b55ffcd18b [ETHOSN] Add support for transpose convolution (#12674)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/op/contrib/ethosn.py              |  18 ++
 src/relay/backend/contrib/ethosn/codegen.cc        |  39 ++++
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |   1 +
 .../backend/contrib/ethosn/convert_equivalent.cc   |  15 +-
 src/relay/backend/contrib/ethosn/ethosn_api.cc     | 126 +++++++++++
 src/relay/backend/contrib/ethosn/ethosn_api.h      |  23 ++
 tests/python/contrib/test_ethosn/infrastructure.py |  43 ++++
 tests/python/contrib/test_ethosn/test_conv2d.py    |  21 +-
 .../contrib/test_ethosn/test_conv2d_transpose.py   | 234 +++++++++++++++++++++
 9 files changed, 487 insertions(+), 33 deletions(-)
 create mode 100644 tests/python/contrib/test_ethosn/test_conv2d_transpose.py