You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by co...@apache.org on 2021/09/20 21:29:09 UTC

[tvm] branch main updated (44b644c -> 44d3934)

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

comaniac pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 44b644c  [3/10] Moved TIR generation from Python to C++ for CMSIS-NN (#8951)
     add 44d3934  [Meta Schedule][M3b] Builder (#9044)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   1 +
 include/tvm/meta_schedule/builder.h                | 151 ++++++++++++++
 .../{_ffi/_ctypes => meta_schedule}/__init__.py    |   3 +-
 python/tvm/{arith => meta_schedule}/_ffi_api.py    |   7 +-
 .../builder/__init__.py}                           |  11 +-
 python/tvm/meta_schedule/builder/builder.py        | 131 ++++++++++++
 python/tvm/meta_schedule/builder/local_builder.py  | 229 +++++++++++++++++++++
 python/tvm/meta_schedule/utils.py                  |  97 +++++++++
 python/tvm/relay/transform/transform.py            |   2 +-
 src/meta_schedule/builder/builder.cc               |  69 +++++++
 .../utils.cc => meta_schedule/utils.h}             |  20 +-
 .../python/unittest/test_meta_schedule_builder.py  | 219 ++++++++++++++++++++
 tests/scripts/task_mypy.sh                         |   7 +-
 13 files changed, 919 insertions(+), 28 deletions(-)
 create mode 100644 include/tvm/meta_schedule/builder.h
 copy python/tvm/{_ffi/_ctypes => meta_schedule}/__init__.py (89%)
 copy python/tvm/{arith => meta_schedule}/_ffi_api.py (84%)
 copy python/tvm/{driver/tvmc/__main__.py => meta_schedule/builder/__init__.py} (77%)
 create mode 100644 python/tvm/meta_schedule/builder/builder.py
 create mode 100644 python/tvm/meta_schedule/builder/local_builder.py
 create mode 100644 python/tvm/meta_schedule/utils.py
 create mode 100644 src/meta_schedule/builder/builder.cc
 copy src/{auto_scheduler/utils.cc => meta_schedule/utils.h} (78%)
 mode change 100755 => 100644
 create mode 100644 tests/python/unittest/test_meta_schedule_builder.py