aboutsummaryrefslogtreecommitdiff
path: root/applications/trustzone_inference
diff options
context:
space:
mode:
authorJonny Svärd <jonny.svaerd@arm.com>2021-03-01 14:35:49 +0100
committerJonny Svärd <jonny.svaerd@arm.com>2021-03-02 13:17:35 +0100
commitf521be94ac5017dc6be02e6344aef2bd68dc8343 (patch)
tree4fa5eddb350462821848a4c561c9e03613fb7f4e /applications/trustzone_inference
parent715c07b06aa3462ceeef38b777e8526d3bffe472 (diff)
downloadethos-u-core-platform-f521be94ac5017dc6be02e6344aef2bd68dc8343.tar.gz
Rename .bss.NoInit section to .bss.tensor_arena
Change-Id: I660cd5d2bc73eaf589598c4f0570f5e9293de28d
Diffstat (limited to 'applications/trustzone_inference')
-rw-r--r--applications/trustzone_inference/secure/main_secure.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/trustzone_inference/secure/main_secure.cpp b/applications/trustzone_inference/secure/main_secure.cpp
index 4c1b164..24d7dfb 100644
--- a/applications/trustzone_inference/secure/main_secure.cpp
+++ b/applications/trustzone_inference/secure/main_secure.cpp
@@ -44,7 +44,7 @@ funcptr_ns nonsecure_result_checker = 0;
****************************************************************************/
#define TENSOR_ARENA_SIZE 0xa0000
-__attribute__((section(".bss.NoInit"), aligned(16))) uint8_t TFLuTensorArena[TENSOR_ARENA_SIZE];
+__attribute__((section(".bss.tensor_arena"), aligned(16))) uint8_t TFLuTensorArena[TENSOR_ARENA_SIZE];
InferenceProcess::InferenceProcess inferenceProcess(TFLuTensorArena, TENSOR_ARENA_SIZE);