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

mehrdadh 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 cc19cdd711 [microTVM][Zephyr] Add recommended heap size for NRF and 
qemu_x86 (#12585)
cc19cdd711 is described below

commit cc19cdd711b620582baacff82318d3adf5b15115
Author: Mehrdad Hessar <mhes...@octoml.ai>
AuthorDate: Thu Aug 25 07:22:37 2022 -0700

    [microTVM][Zephyr] Add recommended heap size for NRF and qemu_x86 (#12585)
    
    This PR sets recommended heap size for qemu_x86 and NRF board to fix memory 
size with models like VWW using AoT host driven executor.
---
 apps/microtvm/zephyr/template_project/boards.json | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/apps/microtvm/zephyr/template_project/boards.json 
b/apps/microtvm/zephyr/template_project/boards.json
index dcca9c8002..28cbee54d6 100644
--- a/apps/microtvm/zephyr/template_project/boards.json
+++ b/apps/microtvm/zephyr/template_project/boards.json
@@ -38,7 +38,8 @@
         "is_qemu": false,
         "fpu": true,
         "vid_hex": "1366",
-        "pid_hex": "1055"
+        "pid_hex": "1055",
+        "recommended_heap_size_bytes": 368640
     },
     "nucleo_f746zg": {
         "board": "nucleo_f746zg",
@@ -55,7 +56,7 @@
         "fpu": true,
         "vid_hex": "0483",
         "pid_hex": "374b",
-        "recommended_heap_size_bytes": 512000
+        "recommended_heap_size_bytes": 524288
     },
     "qemu_cortex_r5": {
         "board": "qemu_cortex_r5",
@@ -87,7 +88,8 @@
         "is_qemu": true,
         "fpu": true,
         "vid_hex": "",
-        "pid_hex": ""
+        "pid_hex": "",
+        "recommended_heap_size_bytes": 524288
     },
     "stm32f746g_disco": {
         "board": "stm32f746g_disco",

Reply via email to