blob: 225aaf4072c03d08535749dd315b9ed28cd7fe2a [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
18USER_OPTION(${use_case}_ACTIVATION_BUF_SZ "Activation buffer size for the chosen model"
19 0x00200000
20 STRING)
21
22generate_default_input_code(${INC_GEN_DIR})
23
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010024if (ETHOS_U55_ENABLED)
25 set(DEFAULT_MODEL_PATH ${DEFAULT_MODEL_DIR}/dnn_s_quantized_vela.tflite)
alexander3c798932021-03-26 21:42:19 +000026else()
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010027 set(DEFAULT_MODEL_PATH ${DEFAULT_MODEL_DIR}/dnn_s_quantized.tflite)
alexander3c798932021-03-26 21:42:19 +000028endif()
29
30USER_OPTION(${use_case}_MODEL_TFLITE_PATH "NN models file to be used in the evaluation application. Model files must be in tflite format."
31 ${DEFAULT_MODEL_PATH}
32 FILEPATH)
33
34# Generate model file
35generate_tflite_code(
36 MODEL_PATH ${${use_case}_MODEL_TFLITE_PATH}
37 DESTINATION ${SRC_GEN_DIR}
38)