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/03/29 04:06:42 UTC

[tvm] branch main updated (18fa495 -> c39a6e2)

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 18fa495  [Logging] Bring back the stack size optimization (#7756)
     add c39a6e2  Clean up uTVM demo runtime, add ONNX model test and tutorial (#7557)

No new revisions were added by this update.

Summary of changes:
 apps/microtvm/README.md                            |  17 +-
 .../{reference-vm/zephyr => }/pyproject.toml       |  10 +-
 .../picojson => apps/microtvm/zephyr}/README.md    |   3 +-
 .../microtvm/zephyr/demo_runtime}/CMakeLists.txt   |   1 -
 .../microtvm/zephyr/demo_runtime}/README.md        |   7 +-
 .../boards/nrf5340dk_nrf5340_cpuapp.conf           |  18 +-
 .../zephyr/demo_runtime/boards/nucleo_f746zg.conf  |  26 +--
 .../zephyr/demo_runtime/boards/qemu_x86.conf       |   7 +-
 .../microtvm/zephyr/demo_runtime}/crt/crt_config.h |   2 +-
 .../microtvm/zephyr/demo_runtime}/prj.conf         |   7 +-
 .../demo_runtime}/qemu-hack/qemu-system-i386       |   0
 .../microtvm/zephyr/demo_runtime}/src/main.c       | 222 +++++++++++++--------
 docs/microtvm/index.rst                            |   2 +-
 python/tvm/micro/contrib/zephyr.py                 |   5 +-
 python/tvm/runtime/module.py                       |   2 +-
 python/tvm/target/target.py                        |  20 +-
 tests/lint/check_file_type.py                      |  13 +-
 tests/micro/qemu/.gitignore                        |   2 -
 tests/micro/qemu/zephyr-runtime/.gitignore         |   3 -
 tests/micro/qemu/zephyr-runtime/sample.yaml        |  22 --
 .../howto_deploy => tests/micro/zephyr}/README.md  |  29 ++-
 tests/micro/{qemu => zephyr}/conftest.py           |   3 +
 tests/micro/{qemu => zephyr}/test_zephyr.py        |  67 ++++++-
 tests/micro/zephyr/testdata/digit-2.jpg            | Bin 0 -> 572 bytes
 tests/micro/zephyr/testdata/digit-9.jpg            | Bin 0 -> 535 bytes
 tests/micro/zephyr/testdata/mnist-8.onnx           | Bin 0 -> 26454 bytes
 tests/scripts/task_python_microtvm.sh              |   2 +-
 tutorials/micro/micro_tflite.py                    |   7 +-
 28 files changed, 303 insertions(+), 194 deletions(-)
 rename apps/microtvm/{reference-vm/zephyr => }/pyproject.toml (95%)
 copy {3rdparty/picojson => apps/microtvm/zephyr}/README.md (90%)
 rename {tests/micro/qemu/zephyr-runtime => apps/microtvm/zephyr/demo_runtime}/CMakeLists.txt (99%)
 copy {3rdparty/picojson => apps/microtvm/zephyr/demo_runtime}/README.md (78%)
 copy python/tvm/autotvm/graph_tuner/_base.py => apps/microtvm/zephyr/demo_runtime/boards/nrf5340dk_nrf5340_cpuapp.conf (71%)
 copy rust/tvm/tests/basics/Cargo.toml => apps/microtvm/zephyr/demo_runtime/boards/nucleo_f746zg.conf (74%)
 copy python/tvm/auto_scheduler/_ffi_api.py => apps/microtvm/zephyr/demo_runtime/boards/qemu_x86.conf (78%)
 rename {tests/micro/qemu/zephyr-runtime => apps/microtvm/zephyr/demo_runtime}/crt/crt_config.h (98%)
 rename {tests/micro/qemu/zephyr-runtime => apps/microtvm/zephyr/demo_runtime}/prj.conf (87%)
 rename {tests/micro/qemu/zephyr-runtime => apps/microtvm/zephyr/demo_runtime}/qemu-hack/qemu-system-i386 (100%)
 rename {tests/micro/qemu/zephyr-runtime => apps/microtvm/zephyr/demo_runtime}/src/main.c (56%)
 delete mode 100644 tests/micro/qemu/.gitignore
 delete mode 100644 tests/micro/qemu/zephyr-runtime/.gitignore
 delete mode 100644 tests/micro/qemu/zephyr-runtime/sample.yaml
 copy {apps/howto_deploy => tests/micro/zephyr}/README.md (53%)
 rename tests/micro/{qemu => zephyr}/conftest.py (94%)
 rename tests/micro/{qemu => zephyr}/test_zephyr.py (81%)
 create mode 100644 tests/micro/zephyr/testdata/digit-2.jpg
 create mode 100644 tests/micro/zephyr/testdata/digit-9.jpg
 create mode 100644 tests/micro/zephyr/testdata/mnist-8.onnx