blob: dbc56d25aa23b8633183580d01a7132d89c680e8 [file] [log] [blame]
Lior Dekel489e40b2021-08-02 12:03:55 +03001#
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3#
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
34target_compile_definitions(
35 threadx_demo PRIVATE ETHOSU_FAST_MEMORY_SIZE=0xa0000)