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 f53ee0cecf [Hexagon] Fix missing pytest import (#12565)
add 1afd059395 [TOPI][Hexagon] Implement quantized avgpool (#12340)
add 17989e8ab5 [microTVM] Fix `build` directory exists error (#12575)
add b8fbfe26ae [MicroTVM] fix compile error when the compiler implements
char as unsigned (#12519)
No new revisions were added by this update.
Summary of changes:
.../zephyr/template_project/microtvm_api_server.py | 2 +
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 ++++++++++++++
src/runtime/crt/graph_executor/load_json.c | 2 +-
.../python/contrib/test_hexagon/infrastructure.py | 55 +++++-
.../test_hexagon/test_fixed_point_conversion.py | 64 +++++++
.../test_hexagon/topi/test_avg_pool2d_slice.py | 209 +++++++++++++--------
11 files changed, 610 insertions(+), 95 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