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/12/01 02:53:19 UTC

[tvm] branch main updated (6c32f97 -> 32e8012)

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 6c32f97  Add minimal forwarding RPC server for host driven python execution on Hexagon (#9526)
     add 32e8012  [microTVM][TVMC] Add TVMC test for Arduino and Zephyr (#9584)

No new revisions were added by this update.

Summary of changes:
 .../template_project/microtvm_api_server.py        |  56 +++---
 .../zephyr/template_project/microtvm_api_server.py |  29 ++-
 python/tvm/micro/project.py                        |  21 ++-
 .../dsp/micro_kernel => tests/micro}/__init__.py   |   0
 tests/micro/arduino/conftest.py                    |  84 +--------
 .../micro/arduino/test_arduino_error_detection.py  |   9 +-
 tests/micro/arduino/test_arduino_rpc_server.py     |  20 +--
 tests/micro/arduino/test_arduino_workflow.py       |   8 +-
 tests/micro/arduino/{conftest.py => test_utils.py} |  70 +-------
 .../micro/common}/__init__.py                      |   0
 tests/micro/common/conftest.py                     |  47 +++++
 tests/micro/common/test_tvmc.py                    | 199 +++++++++++++++++++++
 tests/scripts/task_python_microtvm.sh              |   4 +
 13 files changed, 344 insertions(+), 203 deletions(-)
 copy {python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel => tests/micro}/__init__.py (100%)
 copy tests/micro/arduino/{conftest.py => test_utils.py} (62%)
 copy {python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel => tests/micro/common}/__init__.py (100%)
 create mode 100644 tests/micro/common/conftest.py
 create mode 100644 tests/micro/common/test_tvmc.py