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 d171b4af09 [SimplifyExpr] Add simplify for dq->arg funcs (#12580)
add d87fa854b8 [Hexagon] Initial support for meta schedule tuning (#12587)
No new revisions were added by this update.
Summary of changes:
apps/hexagon_api/CMakeLists.txt | 2 +
python/tvm/contrib/hexagon/meta_schedule.py | 166 ++++++++++++++++
python/tvm/contrib/hexagon/session.py | 8 +-
python/tvm/contrib/hexagon/tools.py | 7 +
python/tvm/meta_schedule/default_config.py | 6 +-
python/tvm/target/target.py | 5 +
python/tvm/tir/tensor_intrin/__init__.py | 2 +-
.../tvm/tir/tensor_intrin/{x86.py => hexagon.py} | 52 +++--
src/target/target_kind.cc | 1 +
.../contrib/test_hexagon/test_meta_schedule.py | 211 +++++++++++++++++++++
10 files changed, 426 insertions(+), 34 deletions(-)
create mode 100644 python/tvm/contrib/hexagon/meta_schedule.py
copy python/tvm/tir/tensor_intrin/{x86.py => hexagon.py} (55%)
create mode 100644 tests/python/contrib/test_hexagon/test_meta_schedule.py