You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ar...@apache.org on 2021/11/19 18:14:32 UTC

[tvm] branch main updated (6832309 -> 53cb5ea)

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

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


    from 6832309  [AlterLayout] Respect input layout for dense op if explicitly specified (#9535)
     add 53cb5ea  [TVMC][microTVM] Add new micro context (#9229)

No new revisions were added by this update.

Summary of changes:
 .../template_project/microtvm_api_server.py        |  30 +-
 .../zephyr/template_project/microtvm_api_server.py |  42 ++-
 python/tvm/driver/tvmc/__init__.py                 |   3 +-
 python/tvm/driver/tvmc/autotuner.py                |   2 +-
 python/tvm/driver/tvmc/common.py                   | 232 ++++++++++++++
 python/tvm/driver/tvmc/compiler.py                 |   2 +-
 python/tvm/driver/tvmc/fmtopt.py                   | 116 +++++++
 python/tvm/driver/tvmc/main.py                     |   8 +-
 python/tvm/driver/tvmc/micro.py                    | 300 +++++++++++++++++++
 python/tvm/driver/tvmc/runner.py                   | 332 +++++++++++++++------
 python/tvm/micro/project.py                        |  11 +
 python/tvm/micro/project_api/server.py             |  15 +-
 python/tvm/micro/session.py                        |   2 +-
 src/runtime/crt/common/crt_runtime_api.c           |  13 +-
 src/runtime/crt/host/microtvm_api_server.py        |   5 +-
 tests/python/unittest/test_micro_project_api.py    |  32 +-
 16 files changed, 1028 insertions(+), 117 deletions(-)
 create mode 100644 python/tvm/driver/tvmc/fmtopt.py
 create mode 100644 python/tvm/driver/tvmc/micro.py