blob: cfdc5200afaaef5b346bfb09badfb9a0a8d85873 [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#include "hal.h" /* Brings in platform definitions. */
18#include "TestModel.hpp" /* Model class for running inference. */
19#include "UseCaseHandler.hpp" /* Handlers for different user options. */
20#include "UseCaseCommonUtils.hpp" /* Utils functions. */
alexander31ae9f02022-02-10 16:15:54 +000021#include "log_macros.h"
alexander3c798932021-03-26 21:42:19 +000022
23enum opcodes
24{
25 MENU_OPT_RUN_INF_NEXT = 1, /* Run on next vector. */
26 MENU_OPT_SHOW_MODEL_INFO, /* Show model info. */
27};
28
29void main_loop(hal_platform& platform)
30{
31 arm::app::TestModel model; /* Model wrapper object. */
32
33 /* Load the model. */
34 if (!model.Init()) {
35 printf_err("Failed to initialise model\n");
36 return;
37 }
38
39 /* Instantiate application context. */
40 arm::app::ApplicationContext caseContext;
41
Isabella Gottardi8df12f32021-04-07 17:15:31 +010042 arm::app::Profiler profiler{&platform, "inference_runner"};
43 caseContext.Set<arm::app::Profiler&>("profiler", profiler);
44
alexander3c798932021-03-26 21:42:19 +000045 caseContext.Set<hal_platform&>("platform", platform);
46 caseContext.Set<arm::app::Model&>("model", model);
47 caseContext.Set<uint32_t>("imgIndex", 0);
48
49 /* Loop. */
50 if (RunInferenceHandler(caseContext)) {
51 info("Inference completed.\n");
52 } else {
53 printf_err("Inference failed.\n");
54 }
55}