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 2023/01/21 05:02:41 UTC

[tvm] branch nightly updated (6c2d485a01 -> d907de3b35)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 6c2d485a01 [TVMScript] `T.match_buffer` syntax sugar in arguments for TVMScript printer (#13801)
     add 5e36ae331c [TIR][Schedule] Improve cache_index to cache common subexpressions (#13700)
     add 8f80e42114 [TVMScript] `T.allocate` with `T.decl_buffer` syntax sugar for TVMScript printer (#13813)
     add 8f738d001b [TESTING] Enable execution of test_packed_8x8x32_resnet50 (#13799)
     add c8973a5507 [COMMUNITY] alanmacd -> Reviewer (#13814)
     add fe372a7309 [docker][microTVM]Update zephyr version to 3.2 and Zephyr SDK to 0.15.2 (#13806)
     add efa5a388ce [CI] Update rerun list for tvm-bot (#13817)
     add d907de3b35 [Frontend][PaddlePaddle] Add topk op and Fix bug, when the output is a dimension, it … (#13701)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTORS.md                                    |   1 +
 ci/scripts/github/github_tvmbot.py                 |   1 +
 docker/install/ubuntu_init_zephyr_project.sh       |   2 +-
 docker/install/ubuntu_install_paddle.sh            |   2 +-
 docker/install/ubuntu_install_zephyr.sh            |   1 -
 docker/install/ubuntu_install_zephyr_sdk.sh        |  14 +-
 docker/python/ci-constraints.txt                   |   2 +-
 include/tvm/tir/schedule/schedule.h                |   6 +-
 python/tvm/relay/frontend/paddlepaddle.py          |  35 +-
 python/tvm/tir/schedule/schedule.py                |  21 +-
 src/meta_schedule/database/database_utils.cc       |   2 +
 src/script/printer/tir/function.cc                 |  43 +--
 src/script/printer/tir/stmt.cc                     |  24 ++
 src/script/printer/tir/utils.h                     |  45 +++
 src/tir/schedule/concrete_schedule.cc              |   5 +-
 src/tir/schedule/concrete_schedule.h               |   3 +-
 src/tir/schedule/primitive.h                       |   5 +-
 src/tir/schedule/primitive/cache_index.cc          | 147 +++++---
 src/tir/schedule/traced_schedule.cc                |   7 +-
 src/tir/schedule/traced_schedule.h                 |   3 +-
 .../metaschedule_e2e/test_resnet50_int8.py         |   2 +-
 tests/python/frontend/paddlepaddle/test_forward.py |  42 +++
 .../unittest/test_tir_schedule_cache_index.py      | 402 ++++++++++++++++++++-
 .../python/unittest/test_tvmscript_printer_tir.py  |  92 ++---
 24 files changed, 736 insertions(+), 171 deletions(-)