blob: 23de2121a0373dce6679097d1d903fe291ea9591 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001#----------------------------------------------------------------------------
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#----------------------------------------------------------------------------
17
alexander3c798932021-03-26 21:42:19 +000018USER_OPTION(${use_case}_FILE_PATH "Directory with custom WAV input files, or path to a single WAV file, to use in the evaluation application."
19 ${CMAKE_CURRENT_SOURCE_DIR}/resources/${use_case}/samples/
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010020 PATH_OR_FILE)
alexander3c798932021-03-26 21:42:19 +000021
22USER_OPTION(${use_case}_LABELS_TXT_FILE "Labels' txt file for the chosen model."
23 ${CMAKE_CURRENT_SOURCE_DIR}/resources/${use_case}/labels/ds_cnn_labels.txt
24 FILEPATH)
25
26USER_OPTION(${use_case}_AUDIO_RATE "Specify the target sampling rate. Default is 16000."
27 16000
28 STRING)
29
30USER_OPTION(${use_case}_AUDIO_MONO "Specify if the audio needs to be converted to mono. Default is ON."
31 ON
32 BOOL)
33
34USER_OPTION(${use_case}_AUDIO_OFFSET "Specify the offset to start reading after this time (in seconds). Default is 0."
35 0
36 STRING)
37
38USER_OPTION(${use_case}_AUDIO_DURATION "Specify the audio duration to load (in seconds). If set to 0 the entire audio will be processed."
39 0
40 STRING)
41
42USER_OPTION(${use_case}_AUDIO_RES_TYPE "Specify re-sampling algorithm to use. By default is 'kaiser_best'."
43 kaiser_best
44 STRING)
45
46USER_OPTION(${use_case}_AUDIO_MIN_SAMPLES "Specify the minimum number of samples to use. By default is 16000, if the audio is shorter will be automatically padded."
47 16000
48 STRING)
49
50USER_OPTION(${use_case}_MODEL_SCORE_THRESHOLD "Specify the score threshold [0.0, 1.0) that must be applied to the inference results for a label to be deemed valid."
51 0.9
52 STRING)
53
54# Generate input files
55generate_audio_code(${${use_case}_FILE_PATH} ${SRC_GEN_DIR} ${INC_GEN_DIR}
56 ${${use_case}_AUDIO_RATE}
57 ${${use_case}_AUDIO_MONO}
58 ${${use_case}_AUDIO_OFFSET}
59 ${${use_case}_AUDIO_DURATION}
60 ${${use_case}_AUDIO_RES_TYPE}
61 ${${use_case}_AUDIO_MIN_SAMPLES})
62
63# Generate labels file
64set(${use_case}_LABELS_CPP_FILE Labels)
65generate_labels_code(
66 INPUT "${${use_case}_LABELS_TXT_FILE}"
67 DESTINATION_SRC ${SRC_GEN_DIR}
68 DESTINATION_HDR ${INC_GEN_DIR}
69 OUTPUT_FILENAME "${${use_case}_LABELS_CPP_FILE}"
70)
71
72USER_OPTION(${use_case}_ACTIVATION_BUF_SZ "Activation buffer size for the chosen model"
73 0x00100000
74 STRING)
75
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010076if (ETHOS_U55_ENABLED)
77 set(DEFAULT_MODEL_PATH ${DEFAULT_MODEL_DIR}/ds_cnn_clustered_int8_vela.tflite)
alexander3c798932021-03-26 21:42:19 +000078else()
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010079 set(DEFAULT_MODEL_PATH ${DEFAULT_MODEL_DIR}/ds_cnn_clustered_int8.tflite)
alexander3c798932021-03-26 21:42:19 +000080endif()
81
82set(EXTRA_MODEL_CODE
83 "/* Model parameters for ${use_case} */"
84 "extern const int g_FrameLength = 640"
85 "extern const int g_FrameStride = 320"
86 "extern const float g_ScoreThreshold = ${${use_case}_MODEL_SCORE_THRESHOLD}"
87 )
88
89USER_OPTION(${use_case}_MODEL_TFLITE_PATH "NN models file to be used in the evaluation application. Model files must be in tflite format."
90 ${DEFAULT_MODEL_PATH}
91 FILEPATH)
92
93# Generate model file
94generate_tflite_code(
95 MODEL_PATH ${${use_case}_MODEL_TFLITE_PATH}
96 DESTINATION ${SRC_GEN_DIR}
97 EXPRESSIONS ${EXTRA_MODEL_CODE}
98)