You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2021/12/06 21:02:22 UTC

[tvm] branch main updated (3f1c931 -> 260c95d)

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

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


    from 3f1c931  [7/10] Code generation for Pooling and Fully Connected via CMSIS-NN (#9531)
     add 260c95d  [microNPU] Add support for TFLite concatenate (#9589)

No new revisions were added by this update.

Summary of changes:
 .../tvm/relay/backend/contrib/ethosu/legalize.py   |  43 +++++
 .../contrib/ethosu/tir/binary_elementwise.py       |   6 +-
 .../relay/backend/contrib/ethosu/tir/compiler.py   |  18 +-
 .../backend/contrib/ethosu/tir/convolution.py      |   5 +-
 .../relay/backend/contrib/ethosu/tir/depthwise.py  |   5 +-
 python/tvm/relay/backend/contrib/ethosu/tir/dma.py |  14 +-
 .../relay/backend/contrib/ethosu/tir/identity.py   |  17 +-
 .../tvm/relay/backend/contrib/ethosu/tir/passes.py | 196 +++++++++++++++++++--
 .../relay/backend/contrib/ethosu/tir/pooling.py    |   5 +-
 .../relay/backend/contrib/ethosu/tir/scheduler.py  |   2 +
 .../relay/backend/contrib/ethosu/tir/transform.py  |   7 +-
 .../contrib/ethosu/tir/unary_elementwise.py        |   6 +-
 python/tvm/relay/op/contrib/ethosu.py              |  55 +++++-
 tests/python/contrib/test_ethosu/test_codegen.py   |  19 ++
 tests/python/contrib/test_ethosu/test_legalize.py  |  78 ++++++++
 .../test_ethosu/test_remove_concatenates.py        |  81 +++++++++
 16 files changed, 521 insertions(+), 36 deletions(-)
 create mode 100644 tests/python/contrib/test_ethosu/test_remove_concatenates.py