blob: e37b8528bf12c25d0eea8fc040708b87e3117c83 [file] [log] [blame]
Lior Dekel489e40b2021-08-02 12:03:55 +03001#
Mikael Olssonad5b6f22024-01-22 14:48:28 +01002# SPDX-FileCopyrightText: Copyright 2021-2022, 2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
Lior Dekel489e40b2021-08-02 12:03:55 +03003#
4# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the License); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an AS IS BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
Ledion Daja05dd24d2022-08-15 11:49:22 +020019# Exclude this app if ThreadX target does not exist or if NPU configuration is not H128
Mikael Olssonf44f8b22024-01-24 13:33:34 +010020if (NOT TARGET threadx OR NOT TARGET ethosu_core_driver OR NOT ETHOSU_TARGET_NPU_CONFIG STREQUAL "ethos-u55-128" OR NOT ETHOSU_TARGET STREQUAL "corstone-300")
Lior Dekel489e40b2021-08-02 12:03:55 +030021 message("Skipping ThreadX application")
22 return()
23endif()
24
25ethosu_add_executable_test(threadx_demo PRIVATE
26 SOURCES main.cpp
Kristofer Jonsson8f813b32022-11-23 13:05:47 +010027 LIBRARIES inference_process threadx)
Lior Dekel489e40b2021-08-02 12:03:55 +030028target_include_directories(threadx_demo PRIVATE models/mobilenet_v2)
29
Mikael Olssonad5b6f22024-01-22 14:48:28 +010030# Make ThreadX's HardFault_Handler a weak symbol to use the platform target's handler instead
31add_custom_command(TARGET threadx_demo PRE_LINK
32 COMMAND ${CMAKE_OBJCOPY} -W HardFault_Handler $<TARGET_FILE:threadx>
33 DEPENDS threadx
34)
35
Lior Dekel489e40b2021-08-02 12:03:55 +030036# Use the fast memory to support both 11.12.57 and 11.13.x release
37# of the FVP
38# The size is defined to force the .bss.tensor_arena to be placed in DDR
Kristofer Jonsson93175812022-04-21 19:27:11 +020039target_compile_options(threadx_demo PRIVATE
40 -UETHOSU_FAST_MEMORY_SIZE -DETHOSU_FAST_MEMORY_SIZE=0xa0000
41 -UETHOSU_ARENA -DETHOSU_ARENA=1
42 -UETHOSU_MODEL -DETHOSU_MODEL=1)