blob: 67a7c9e71eb0a4650cb7d896221c3bf07b9570f8 [file] [log] [blame]
Nina Drozd05c1c5a2023-08-22 12:41:55 +01001/*
2 * SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
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 */
Richard Burton4865c4f2023-11-13 15:21:11 +000017#ifndef INF_RUNNER_MICRO_MUTABLE_ALL_OPS_RESOLVER_HPP
18#define INF_RUNNER_MICRO_MUTABLE_ALL_OPS_RESOLVER_HPP
Nina Drozd05c1c5a2023-08-22 12:41:55 +010019
20#include <tensorflow/lite/micro/micro_mutable_op_resolver.h>
21
Nina Drozd05c1c5a2023-08-22 12:41:55 +010022namespace arm {
23namespace app {
24
Richard Burton4865c4f2023-11-13 15:21:11 +000025 /* Maximum number of individual operations that can be enlisted. */
26 constexpr int kNumberOperators = 97;
Nina Drozd05c1c5a2023-08-22 12:41:55 +010027
Richard Burton4865c4f2023-11-13 15:21:11 +000028 /** An Op resolver containing all ops is no longer supplied with TFLite Micro
29 * so we create our own instead for the generic inference runner.
30 *
31 * @return MicroMutableOpResolver containing all TFLite Micro Ops registered.
32 */
33 tflite::MicroMutableOpResolver<kNumberOperators> CreateAllOpsResolver();
Nina Drozd05c1c5a2023-08-22 12:41:55 +010034
35} /* namespace app */
36} /* namespace arm */
37
Richard Burton4865c4f2023-11-13 15:21:11 +000038#endif /* INF_RUNNER_MICRO_MUTABLE_ALL_OPS_RESOLVER_HPP */