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 cfefa90a96 [Adreno] Update conv2d_nhwc test to use winograd (#12214)
add 195e60b97a [FIX,ROOFLINE] Handle mismatched compiled and TIR hash
(#12219)
add 9a4d80c5fe Removing header arm_math.h which has disappeared after
CMSIS upgrade (#12217)
add 578ef035b2 Fix comments. (#12220)
add aeda760e5e [TIR] Disallow unused rhs vars in GetAutoTensorizeMapping
(#12225)
add d183a4f306 [microTVM][Zephyr][projectAPI] Minimize project build
commands (#12209)
add d19570fb23 [UX] highlight tvm script (#12197)
add c6d733a7eb [TOPI][HEXAGON] Implement depthwise conv2d slice op.
(#12218)
add e7e29b450b [ci] Fix build android rpc failure (#12216)
No new revisions were added by this update.
Summary of changes:
.github/workflows/main.yml | 11 +-
.../template_project/CMakeLists.txt.template | 2 +-
.../zephyr/template_project/microtvm_api_server.py | 94 +++++++-----
docker/install/ubuntu_install_python_package.sh | 1 +
gallery/how_to/work_with_microtvm/micro_tvmc.sh | 14 +-
python/tvm/ir/module.py | 15 ++
python/tvm/meta_schedule/tune.py | 2 +-
python/tvm/script/highlight.py | 136 +++++++++++++++++
python/tvm/tir/function.py | 13 ++
.../arm_cpu/mprofile/dsp/micro_kernel/common.py | 1 -
python/tvm/topi/hexagon/slice_ops/__init__.py | 1 +
python/tvm/topi/hexagon/slice_ops/dwconv2d.py | 162 +++++++++++++++++++++
python/tvm/utils/roofline.py | 4 +-
.../space_generator/post_order_apply.cc | 2 +-
src/tir/schedule/analysis/analysis.cc | 5 +
tests/micro/common/test_tvmc.py | 44 +++---
...test_conv2d_slice.py => test_dwconv2d_slice.py} | 143 ++++++++----------
.../python/unittest/test_tir_schedule_analysis.py | 24 +++
.../unittest/test_tvmscript_printer_highlight.py | 47 ++++++
19 files changed, 562 insertions(+), 159 deletions(-)
create mode 100644 python/tvm/script/highlight.py
create mode 100644 python/tvm/topi/hexagon/slice_ops/dwconv2d.py
copy tests/python/contrib/test_hexagon/topi/{test_conv2d_slice.py =>
test_dwconv2d_slice.py} (72%)
mode change 100755 => 100644
create mode 100644 tests/python/unittest/test_tvmscript_printer_highlight.py