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

[tvm] branch main updated (0d27ba0 -> f76e141)

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

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


    from 0d27ba0  Fix Google Mock differences between Ubuntu 18.04 and 16.04 (#9141)
     add f76e141  [Meta Schedule][M3b] Runner (#9111)

No new revisions were added by this update.

Summary of changes:
 include/tvm/meta_schedule/runner.h                 | 169 +++++-
 python/tvm/meta_schedule/__init__.py               |   5 +-
 python/tvm/meta_schedule/builder/local_builder.py  |  17 +-
 python/tvm/meta_schedule/runner/__init__.py        |   9 +-
 python/tvm/meta_schedule/runner/config.py          | 190 +++++++
 python/tvm/meta_schedule/runner/rpc_runner.py      | 567 ++++++++++++++++++++
 python/tvm/meta_schedule/runner/runner.py          | 111 ++++
 python/tvm/meta_schedule/testing.py                |  74 +++
 python/tvm/meta_schedule/tune_context.py           |   4 +-
 python/tvm/meta_schedule/utils.py                  |  37 +-
 src/meta_schedule/runner/runner.cc                 |  45 +-
 tests/python/unittest/test_meta_schedule_runner.py | 571 +++++++++++++++++++++
 12 files changed, 1776 insertions(+), 23 deletions(-)
 create mode 100644 python/tvm/meta_schedule/runner/config.py
 create mode 100644 python/tvm/meta_schedule/runner/rpc_runner.py
 create mode 100644 python/tvm/meta_schedule/testing.py
 create mode 100644 tests/python/unittest/test_meta_schedule_runner.py