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

[tvm] branch main updated: [µTVM] Zephyr: Add MPS2-AN521 board as a test platform (#7864)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new ee5da50  [µTVM] Zephyr: Add MPS2-AN521 board as a test platform (#7864)
ee5da50 is described below

commit ee5da507448c52b1412dfe54a051d25e6525c769
Author: Gustavo Romero <gr...@users.noreply.github.com>
AuthorDate: Mon Apr 19 15:17:12 2021 -0300

    [µTVM] Zephyr: Add MPS2-AN521 board as a test platform (#7864)
    
    Now that MPS2-AN521 board is supported as a µTVM target, add it as test
    platform so tests can run against it by using:
    
    $ pytest test_zephyr.py --microtvm-platforms=mps2_an521
    
    Signed-off-by: Gustavo Romero <gu...@linaro.org>
---
 tests/micro/zephyr/conftest.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/micro/zephyr/conftest.py b/tests/micro/zephyr/conftest.py
index 83a76e7..17aeec4 100644
--- a/tests/micro/zephyr/conftest.py
+++ b/tests/micro/zephyr/conftest.py
@@ -27,6 +27,7 @@ PLATFORMS = {
     "stm32f746xx_nucleo": ("stm32f746xx", "nucleo_f746zg"),
     "stm32f746xx_disco": ("stm32f746xx", "stm32f746g_disco"),
     "nrf5340dk": ("nrf5340dk", "nrf5340dk_nrf5340_cpuapp"),
+    "mps2_an521": ("mps2_an521", "mps2_an521-qemu"),
 }