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/06/15 19:34:35 UTC

[tvm] branch last-successful updated (a5df28332c -> 9d98da2736)

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 a5df28332c [MetaSchedule] Include te/tensor.h instead of forward declaring te::Tensor (#11731)
     add 9d98da2736 [Hexagon] Implement avg_pool2d slice op (#11417)

No new revisions were added by this update.

Summary of changes:
 .../{vision/ssd => hexagon/slice_ops}/__init__.py  |   6 +-
 python/tvm/topi/hexagon/slice_ops/avg_pool2d.py    | 141 ++++++++
 python/tvm/topi/hexagon/utils.py                   |  52 +++
 .../python/contrib/test_hexagon/infrastructure.py  |  20 ++
 .../test_hexagon/topi/test_avg_pool2d_slice.py     | 369 +++++++++++++++++++++
 5 files changed, 585 insertions(+), 3 deletions(-)
 copy python/tvm/topi/{vision/ssd => hexagon/slice_ops}/__init__.py (86%)
 create mode 100644 python/tvm/topi/hexagon/slice_ops/avg_pool2d.py
 create mode 100644 python/tvm/topi/hexagon/utils.py
 create mode 100644 tests/python/contrib/test_hexagon/topi/test_avg_pool2d_slice.py