blob: e77f5a48b851bb58ded6b168c7cf0a90b8abe521 [file] [log] [blame]
Rickard Bolinbc6ee582022-11-04 08:24:29 +00001# SPDX-FileCopyrightText: Copyright 2020-2021 Arm Limited and/or its affiliates <open-source-office@arm.com>
Tim Hall79d07d22020-04-27 18:20:16 +01002#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# 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, WITHOUT
13# 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.
Rickard Bolinbc6ee582022-11-04 08:24:29 +000016#
Tim Hall79d07d22020-04-27 18:20:16 +010017# Description:
18# Dispatcher for reading a neural network model.
Jonas Ohlsson45e653d2021-07-26 16:13:12 +020019from . import tflite_model_semantic
Louis Verhaard7db78962020-05-25 15:05:26 +020020from . import tflite_reader
Jonas Ohlsson45e653d2021-07-26 16:13:12 +020021from . import tosa_model_semantic
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020022from . import tosa_reader
Louis Verhaard7db78962020-05-25 15:05:26 +020023from .errors import InputFileError
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020024from .nn_graph import NetworkType
Tim Hall79d07d22020-04-27 18:20:16 +010025
26
27class ModelReaderOptions:
28 def __init__(self, batch_size=1):
29 self.batch_size = batch_size
30
31 def __str__(self):
32 return type(self).__name__ + ": " + str(self.__dict__)
33
34 __repr__ = __str__
35
36
Michael McGeagh6f725262020-12-03 15:21:36 +000037def read_model(fname, options, feed_dict=None, output_node_names=None, initialisation_nodes=None):
Tim Hall79d07d22020-04-27 18:20:16 +010038 if fname.endswith(".tflite"):
Michael McGeagh6f725262020-12-03 15:21:36 +000039 if feed_dict is None:
40 feed_dict = {}
41 if output_node_names is None:
42 output_node_names = []
43 if initialisation_nodes is None:
44 initialisation_nodes = []
Jonas Ohlsson45e653d2021-07-26 16:13:12 +020045
46 nng = tflite_reader.read_tflite(
47 fname,
48 options.batch_size,
49 feed_dict=feed_dict,
50 output_node_names=output_node_names,
51 initialisation_nodes=initialisation_nodes,
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020052 )
Jonas Ohlsson45e653d2021-07-26 16:13:12 +020053 nng = tflite_model_semantic.tflite_semantic_checker(nng)
54
55 return (nng, NetworkType.TFLite)
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020056 elif fname.endswith(".tosa"):
57 if feed_dict is None:
58 feed_dict = {}
59 if output_node_names is None:
60 output_node_names = []
61 if initialisation_nodes is None:
62 initialisation_nodes = []
63
Jonas Ohlsson45e653d2021-07-26 16:13:12 +020064 nng = tosa_reader.read_tosa(
65 fname,
66 options.batch_size,
67 feed_dict=feed_dict,
68 output_node_names=output_node_names,
69 initialisation_nodes=initialisation_nodes,
Tim Hallc8310b12020-06-17 14:53:11 +010070 )
Jonas Ohlsson45e653d2021-07-26 16:13:12 +020071 nng = tosa_model_semantic.tosa_semantic_checker(nng)
72
73 return (nng, NetworkType.TOSA)
Tim Hall79d07d22020-04-27 18:20:16 +010074 else:
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020075 raise InputFileError(fname, "Unsupported file extension. Only .tflite and .tosa files are supported")