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/05/28 17:13:39 UTC

[tvm] branch main updated (2cde3dc -> dad59be)

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 2cde3dc  [COMMUNITY] New committer -- trevor-m (#8141)
     add dad59be  [microTVM] AOT Demo (#8075)

No new revisions were added by this update.

Summary of changes:
 .../{demo_runtime => aot_demo}/CMakeLists.txt      |   5 +-
 .../zephyr/{demo_runtime => aot_demo}/README.md    |   5 +-
 .../boards/mps2_an521.conf                         |   0
 .../boards/nrf5340dk_nrf5340_cpuapp.conf           |   4 +-
 .../boards/qemu_x86.conf                           |   2 +-
 .../{demo_runtime => aot_demo}/crt/crt_config.h    |   4 +-
 .../microtvm/zephyr/aot_demo/include/zephyr_uart.h |  46 +++--
 .../zephyr/{demo_runtime => aot_demo}/prj.conf     |   0
 apps/microtvm/zephyr/aot_demo/qemu-hack            |   1 +
 apps/microtvm/zephyr/aot_demo/src/main.c           | 228 +++++++++++++++++++++
 apps/microtvm/zephyr/aot_demo/src/zephyr_uart.c    |  81 ++++++++
 .../{demo_runtime => host_driven}/CMakeLists.txt   |   4 +-
 .../zephyr/{demo_runtime => host_driven}/README.md |   0
 .../boards/mps2_an521.conf                         |   0
 .../boards/nrf5340dk_nrf5340_cpuapp.conf           |   0
 .../boards/nucleo_f746zg.conf                      |   0
 .../boards/qemu_riscv32.conf                       |   0
 .../boards/qemu_riscv64.conf                       |   0
 .../boards/qemu_x86.conf                           |   0
 .../boards/stm32f746g_disco.conf                   |   0
 .../{demo_runtime => host_driven}/crt/crt_config.h |   0
 .../zephyr/{demo_runtime => host_driven}/prj.conf  |   0
 apps/microtvm/zephyr/host_driven/qemu-hack         |   1 +
 .../{demo_runtime => host_driven}/src/main.c       |   0
 .../{demo_runtime => }/qemu-hack/qemu-system-arm   |   0
 .../{demo_runtime => }/qemu-hack/qemu-system-i386  |   0
 .../qemu-hack/qemu-system-riscv32                  |   0
 .../qemu-hack/qemu-system-riscv64                  |   0
 python/tvm/micro/build.py                          |  28 ++-
 python/tvm/target/target.py                        |   5 +-
 tests/lint/check_file_type.py                      |  35 ++--
 tests/micro/zephyr/test_zephyr.py                  |  16 +-
 tests/micro/zephyr/test_zephyr_aot.py              | 221 ++++++++++++++++++++
 tutorials/micro/micro_tflite.py                    |   2 +-
 34 files changed, 624 insertions(+), 64 deletions(-)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/CMakeLists.txt (88%)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/README.md (85%)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/boards/mps2_an521.conf (100%)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/boards/nrf5340dk_nrf5340_cpuapp.conf (92%)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/boards/qemu_x86.conf (97%)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/crt/crt_config.h (96%)
 copy src/te/schedule/operation_inline.h => apps/microtvm/zephyr/aot_demo/include/zephyr_uart.h (53%)
 copy apps/microtvm/zephyr/{demo_runtime => aot_demo}/prj.conf (100%)
 create mode 120000 apps/microtvm/zephyr/aot_demo/qemu-hack
 create mode 100644 apps/microtvm/zephyr/aot_demo/src/main.c
 create mode 100644 apps/microtvm/zephyr/aot_demo/src/zephyr_uart.c
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/CMakeLists.txt (88%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/README.md (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/mps2_an521.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/nrf5340dk_nrf5340_cpuapp.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/nucleo_f746zg.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/qemu_riscv32.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/qemu_riscv64.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/qemu_x86.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/boards/stm32f746g_disco.conf (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/crt/crt_config.h (100%)
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/prj.conf (100%)
 create mode 120000 apps/microtvm/zephyr/host_driven/qemu-hack
 rename apps/microtvm/zephyr/{demo_runtime => host_driven}/src/main.c (100%)
 rename apps/microtvm/zephyr/{demo_runtime => }/qemu-hack/qemu-system-arm (100%)
 rename apps/microtvm/zephyr/{demo_runtime => }/qemu-hack/qemu-system-i386 (100%)
 rename apps/microtvm/zephyr/{demo_runtime => }/qemu-hack/qemu-system-riscv32 (100%)
 rename apps/microtvm/zephyr/{demo_runtime => }/qemu-hack/qemu-system-riscv64 (100%)
 create mode 100644 tests/micro/zephyr/test_zephyr_aot.py