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 2022/01/31 16:06:14 UTC

[tvm] branch main updated (1d01e28 -> 02a7a41)

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 1d01e28  [CI] Update DGL in gpu image (#10111)
     add 02a7a41  [microNPU] Add support for nearest neighbor and bilinear upsampling (#9841)

No new revisions were added by this update.

Summary of changes:
 .../tvm/relay/backend/contrib/ethosu/legalize.py   |  96 ++++++++++++
 .../contrib/ethosu/te/binary_elementwise.py        |  10 +-
 .../relay/backend/contrib/ethosu/te/convolution.py |   5 +-
 .../relay/backend/contrib/ethosu/te/depthwise.py   |   5 +-
 python/tvm/relay/backend/contrib/ethosu/te/dma.py  |  38 ++++-
 .../tvm/relay/backend/contrib/ethosu/te/pooling.py |  10 +-
 .../backend/contrib/ethosu/te/unary_elementwise.py |   5 +-
 python/tvm/relay/backend/contrib/ethosu/tir/dma.py |  27 ++++
 .../relay/backend/contrib/ethosu/tir/pooling.py    |   2 +-
 .../relay/backend/contrib/ethosu/tir/scheduler.py  |   3 +-
 .../backend/contrib/ethosu/tir_to_cs_translator.py |   8 +-
 python/tvm/relay/op/contrib/ethosu.py              | 102 +++++++++++-
 src/relay/op/contrib/ethosu/common.cc              |  17 ++
 src/relay/op/contrib/ethosu/common.h               |   6 +
 src/relay/op/contrib/ethosu/pooling.cc             |  18 ++-
 tests/python/contrib/test_ethosu/infra.py          |   3 +-
 tests/python/contrib/test_ethosu/test_codegen.py   |  41 +++++
 tests/python/contrib/test_ethosu/test_legalize.py  | 172 +++++++++++++++++++++
 .../contrib/test_ethosu/test_replace_pooling.py    |  46 ++++--
 tests/python/contrib/test_ethosu/test_scheduler.py |  16 +-
 .../contrib/test_ethosu/test_type_inference.py     |  17 ++
 21 files changed, 605 insertions(+), 42 deletions(-)