blob: c18d739cddaf2f10501f613fc4b2faaaaa85494a [file] [log] [blame]
Lior Dekel489e40b2021-08-02 12:03:55 +03001#
Kristofer Jonsson93175812022-04-21 19:27:11 +02002# Copyright (c) 2021-2022 Arm Limited.
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
19# Exclude this app if ThreadX target does not exist
Kristofer Jonsson7cec9162021-11-26 12:44:32 +010020if (NOT TARGET threadx OR NOT TARGET ethosu_core_driver)
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
27 SOURCES tx_initialize_low_level.c
28 LIBRARIES threadx)
29target_include_directories(threadx_demo PRIVATE models/mobilenet_v2)
30
31# Use the fast memory to support both 11.12.57 and 11.13.x release
32# of the FVP
33# The size is defined to force the .bss.tensor_arena to be placed in DDR
Kristofer Jonsson93175812022-04-21 19:27:11 +020034target_compile_options(threadx_demo PRIVATE
35 -UETHOSU_FAST_MEMORY_SIZE -DETHOSU_FAST_MEMORY_SIZE=0xa0000
36 -UETHOSU_ARENA -DETHOSU_ARENA=1
37 -UETHOSU_MODEL -DETHOSU_MODEL=1)