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/04/21 20:25:12 UTC

[tvm] branch last-successful updated (876e253227 -> c07a46327c)

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 876e253227 [TIR] StmtFunctor RenewDefs (#10843)
     add c07a46327c [microNPU] Integrate rolling buffers in Arm(R) Ethos(TM)-U (#10344)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/backend/contrib/ethosu/codegen.py |  13 +-
 .../contrib/ethosu/tir/binary_elementwise.py       |  22 +--
 .../relay/backend/contrib/ethosu/tir/compiler.py   |   1 +
 .../backend/contrib/ethosu/tir/convolution.py      |  15 +-
 .../relay/backend/contrib/ethosu/tir/depthwise.py  |  20 +-
 python/tvm/relay/backend/contrib/ethosu/tir/dma.py | 212 ++++++++++++++++++---
 .../relay/backend/contrib/ethosu/tir/identity.py   |  34 ++--
 .../tvm/relay/backend/contrib/ethosu/tir/passes.py |  60 +++---
 .../relay/backend/contrib/ethosu/tir/pooling.py    |  20 +-
 .../contrib/ethosu/tir/producers_consumers.py      |  78 ++++++++
 .../relay/backend/contrib/ethosu/tir/scheduler.py  |  39 +++-
 .../relay/backend/contrib/ethosu/tir/transform.py  |  11 +-
 .../contrib/ethosu/tir/unary_elementwise.py        |  15 +-
 .../backend/contrib/ethosu/tir_to_cs_translator.py |  12 +-
 src/tir/transforms/inject_rolling_buffer.cc        |   4 +-
 .../contrib/test_ethosu/test_create_tiles.py       | 170 +++++++++++++++++
 .../contrib/test_ethosu/test_encode_constants.py   |  24 +--
 .../python/contrib/test_ethosu/test_lower_to_te.py |   6 +-
 .../contrib/test_ethosu/test_replace_conv2d.py     |   2 +-
 .../contrib/test_ethosu/test_replace_copy.py       |   8 +-
 .../contrib/test_ethosu/test_rolling_buffer.py     | 103 ++++++++++
 .../test_tir_transform_inject_rolling_buffer.py    |   4 +-
 22 files changed, 687 insertions(+), 186 deletions(-)
 create mode 100644 python/tvm/relay/backend/contrib/ethosu/tir/producers_consumers.py
 create mode 100644 tests/python/contrib/test_ethosu/test_create_tiles.py
 create mode 100644 tests/python/contrib/test_ethosu/test_rolling_buffer.py