blob: 4f986ca71a396651b45b6e8e1c2c6a618012930e [file] [log] [blame]
Anton Moberg456566d2021-03-17 10:19:26 +01001#
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
Jonathan Strandbergd2afc512021-03-19 10:31:18 +010019set(BAREMETAL_PATH "" CACHE PATH "Path to input, output and network for baremetal")
20
21if (IS_DIRECTORY ${BAREMETAL_PATH})
22 ethosu_add_executable_test(baremetal_custom PRIVATE
Kristofer Jonsson5eb3dc32021-06-09 15:09:01 +020023 SOURCES main.cpp
24 LIBRARIES ethosu_monitor)
Jonathan Strandbergd2afc512021-03-19 10:31:18 +010025 target_include_directories(baremetal_custom PRIVATE ${BAREMETAL_PATH})
26endif()
27
Anton Moberg456566d2021-03-17 10:19:26 +010028ethosu_add_executable_test(baremetal_keyword_cnn PRIVATE
Jens Elofsson74eefce2021-05-25 13:47:13 +020029 SOURCES main.cpp
30 LIBRARIES ethosu_monitor)
Anton Mobergd1213562021-03-17 15:45:27 +010031target_include_directories(baremetal_keyword_cnn PRIVATE models/keyword_spotting_cnn_small_int8)
32
33ethosu_add_executable_test(baremetal_keyword_dnn PRIVATE
Jens Elofsson74eefce2021-05-25 13:47:13 +020034 SOURCES main.cpp
35 LIBRARIES ethosu_monitor)
Anton Mobergad2d25e2021-03-17 16:06:21 +010036target_include_directories(baremetal_keyword_dnn PRIVATE models/keyword_spotting_dnn_medium_int8)
37
38ethosu_add_executable_test(baremetal_keyword_ds_dnn PRIVATE
Jens Elofsson74eefce2021-05-25 13:47:13 +020039 SOURCES main.cpp
40 LIBRARIES ethosu_monitor)
Jonathan Strandbergd2afc512021-03-19 10:31:18 +010041target_include_directories(baremetal_keyword_ds_dnn PRIVATE models/keyword_spotting_ds_dnn_large_clustered_int8)