This is an automated email from the ASF dual-hosted git repository.
mehrdadh pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
from f53ee0cecf [Hexagon] Fix missing pytest import (#12565)
add 1afd059395 [TOPI][Hexagon] Implement quantized avgpool (#12340)
No new revisions were added by this update.
Summary of changes:
python/tvm/topi/hexagon/__init__.py | 1 +
.../tvm/{script => topi/hexagon/qnn}/__init__.py | 5 +-
python/tvm/topi/hexagon/qnn/avg_pool2d.py | 205 ++++++++++++++++++++
python/tvm/topi/hexagon/slice_ops/__init__.py | 2 +-
python/tvm/topi/hexagon/slice_ops/avg_pool2d.py | 24 +--
python/tvm/topi/hexagon/utils.py | 136 ++++++++++++++
.../python/contrib/test_hexagon/infrastructure.py | 55 +++++-
.../test_hexagon/test_fixed_point_conversion.py | 64 +++++++
.../test_hexagon/topi/test_avg_pool2d_slice.py | 209 +++++++++++++--------
9 files changed, 607 insertions(+), 94 deletions(-)
copy python/tvm/{script => topi/hexagon/qnn}/__init__.py (85%)
create mode 100644 python/tvm/topi/hexagon/qnn/avg_pool2d.py
create mode 100644
tests/python/contrib/test_hexagon/test_fixed_point_conversion.py