You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/10/31 13:24:11 UTC

[incubator-tvm] branch main updated (ceef616 -> f956c38)

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

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


    from ceef616  Extract channels from weight shape for conv2d. (#6805)
     add f956c38  [µTVM] Add serial transport, parameterize µTVM Zephyr test, run on physical HW (#6789)

No new revisions were added by this update.

Summary of changes:
 python/tvm/exec/microtvm_debug_shell.py            | 152 ++++++++++++++++++
 python/tvm/micro/contrib/zephyr.py                 |  37 ++---
 python/tvm/micro/debugger.py                       | 173 +++++++++++++++++++--
 python/tvm/micro/session.py                        |  36 +++--
 python/tvm/micro/transport/base.py                 |  20 ++-
 python/tvm/micro/transport/debug.py                |   4 +-
 python/tvm/micro/transport/file_descriptor.py      |   2 +-
 python/tvm/micro/transport/serial.py               | 128 +++++++++++++++
 python/tvm/rpc/server.py                           |  12 +-
 python/tvm/target/target.py                        |  17 +-
 src/runtime/micro/micro_session.cc                 |  13 +-
 src/runtime/rpc/rpc_endpoint.cc                    |   8 +
 tests/micro/qemu/.gitignore                        |   2 +-
 .../micro/qemu/conftest.py                         |  21 ++-
 tests/micro/qemu/test_zephyr.py                    |  46 +++---
 15 files changed, 561 insertions(+), 110 deletions(-)
 create mode 100644 python/tvm/exec/microtvm_debug_shell.py
 create mode 100644 python/tvm/micro/transport/serial.py
 copy python/tvm/relay/frontend/pytorch_utils.py => tests/micro/qemu/conftest.py (63%)