blob: 9fe9ff58f15eb54c2fe119c6769365841239075e [file] [log] [blame]
Johan Alfvén673683b2022-09-05 09:39:47 +02001# Copyright (C) 2020-2022 Arm Limited or its affiliates. All rights reserved.
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.
Tim Hall79d07d22020-04-27 18:20:16 +010016# Description:
17# Functions used to read from a TensorFlow Lite format file.
Diego Russoea6111a2020-04-14 18:41:58 +010018import os.path
Henrik G Olssonea9b23c2021-03-23 17:34:49 +010019import struct
20import sys
Tim Hall79d07d22020-04-27 18:20:16 +010021
22import numpy as np
Tim Hall79d07d22020-04-27 18:20:16 +010023
Louis Verhaard678645b2020-06-15 15:22:47 +020024from .errors import InputFileError
Diego Russoe8a10452020-04-21 17:39:10 +010025from .nn_graph import Graph
26from .nn_graph import Subgraph
Louis Verhaarde8a5a782020-11-02 18:04:27 +010027from .operation import create_activation_function
Louis Verhaardaee5d752020-09-30 09:01:52 +020028from .operation import Op
Diego Russoea6111a2020-04-14 18:41:58 +010029from .operation import Operation
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +020030from .reader_util import align_tensor_indices_to_nng
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020031from .reader_util import clone_and_reshape_tensor
32from .reader_util import decode_str
33from .reader_util import fixup_tensors
Diego Russoe8a10452020-04-21 17:39:10 +010034from .tensor import QuantizationParameters
35from .tensor import Tensor
36from .tflite.BuiltinOperator import BuiltinOperator
37from .tflite.Model import Model
38from .tflite_mapping import builtin_operator_map
39from .tflite_mapping import DataType
40from .tflite_mapping import datatype_map
41from .tflite_mapping import datatype_map_numpy
Tim Hall79d07d22020-04-27 18:20:16 +010042
43
Tim Hall79d07d22020-04-27 18:20:16 +010044class TFLiteSubgraph:
45 def __init__(self, graph, subgraph):
46 self.graph = graph
47 self.name = decode_str(subgraph.Name())
48
49 self.tensors = []
50 for idx in range(subgraph.TensorsLength()):
51 self.tensors.append(self.parse_tensor(subgraph.Tensors(idx)))
52
53 for idx in range(subgraph.OperatorsLength()):
Tim Hallc8310b12020-06-17 14:53:11 +010054 self.parse_operator(idx, subgraph.Operators(idx))
Tim Hall79d07d22020-04-27 18:20:16 +010055
Tim Hallc8310b12020-06-17 14:53:11 +010056 self.outputs = self.get_tensors_from_indices_remove_duplicates(subgraph.OutputsAsNumpy(), "output")
57 self.inputs = self.get_tensors_from_indices_remove_duplicates(subgraph.InputsAsNumpy(), "input")
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020058 fixup_tensors(self.inputs, self.tensors)
Tim Hall79d07d22020-04-27 18:20:16 +010059
Tim Hallc8310b12020-06-17 14:53:11 +010060 def get_tensors_from_indices_remove_duplicates(self, indices, warning_str):
61 tensors = []
62 for idx in indices:
63 tensor = self.tensors[idx]
64 if tensor not in tensors:
65 tensors.append(tensor)
66 else:
67 print(
68 "Warning: Subgraph {0} tensor ({1}) with idx = {2} already seen. Removing the duplicate.".format(
69 warning_str, tensor, idx
70 )
71 )
72
73 return tensors
74
Tim Hall79d07d22020-04-27 18:20:16 +010075 def parse_tensor(self, tens_data):
76 np_shape = tens_data.ShapeAsNumpy()
77 shape = list(np_shape) if type(np_shape) is np.ndarray else []
78 name = decode_str(tens_data.Name())
Dwight Lidmane05de452020-11-05 15:56:08 +010079 tens_dtype = tens_data.Type()
80 dtype = datatype_map[tens_dtype]
Tim Hall79d07d22020-04-27 18:20:16 +010081 tens = Tensor(shape, dtype, name)
Tim Hall79d07d22020-04-27 18:20:16 +010082 quant = tens_data.Quantization()
Fredrik Svedberg8d0f4892021-02-16 21:59:50 +010083 tens.is_variable = tens_data.IsVariable()
Tim Hall79d07d22020-04-27 18:20:16 +010084
Tim Hall79d07d22020-04-27 18:20:16 +010085 tens.quantization = QuantizationParameters()
Tim Halle4e58e12020-05-08 09:50:21 +010086 if quant is not None:
Diego Russod0eee262020-04-23 18:14:37 +010087 tens.quantization.min = self.len1_array_to_scalar(quant.MinAsNumpy())
88 tens.quantization.max = self.len1_array_to_scalar(quant.MaxAsNumpy())
89 tens.quantization.scale_f32 = self.len1_array_to_scalar(quant.ScaleAsNumpy())
90 tens.quantization.zero_point = self.len1_array_to_scalar(quant.ZeroPointAsNumpy())
Fredrik Svedbergcc8569f2021-11-01 14:25:29 +010091 tens.quantization.quant_dim = quant.QuantizedDimension()
Tim Hall79d07d22020-04-27 18:20:16 +010092
93 if dtype == DataType.uint8:
94 tens.quantization.quant_min = 0
95 tens.quantization.quant_max = (1 << dtype.bits) - 1
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000096 elif dtype in (DataType.int8, DataType.int16, DataType.int32, DataType.int64):
Tim Hall79d07d22020-04-27 18:20:16 +010097 tens.quantization.quant_min = -(1 << (dtype.bits - 1))
98 tens.quantization.quant_max = (1 << (dtype.bits - 1)) - 1
Tim Hall79d07d22020-04-27 18:20:16 +010099
100 if tens.quantization.scale_f32 is None and tens.quantization.zero_point is None:
101 tens.quantization = None
102
103 tens.values = None
104 buf = self.graph.buffers[tens_data.Buffer()]
Louis Verhaardf4e12be2020-12-18 14:23:06 +0100105 if buf is not None:
106 np_dtype = datatype_map_numpy[tens_dtype]
107 if dtype == DataType.string:
108 tens.values = np.array(buf.view(np_dtype))
109 else:
110 tens.values = np.array(buf.view(np_dtype).reshape(shape))
Tim Hall79d07d22020-04-27 18:20:16 +0100111 return tens
112
Tim Hallc8310b12020-06-17 14:53:11 +0100113 def parse_operator(self, op_index, op_data):
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +0200114 op_type, opt_serializer, custom_code, indices = self.graph.operator_codes[op_data.OpcodeIndex()]
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +0200115 inputs = [self.tensors[idx] if idx != -1 else None for idx in op_data.InputsAsNumpy()]
116 outputs = [self.tensors[idx] if idx != -1 else None for idx in op_data.OutputsAsNumpy()]
Fredrik Svedberg8d0f4892021-02-16 21:59:50 +0100117 intermediates = []
118 if op_data.IntermediatesLength():
119 intermediates = [self.tensors[idx] if idx != -1 else None for idx in op_data.IntermediatesAsNumpy()]
120
Tim Hall79d07d22020-04-27 18:20:16 +0100121 name = "unknown_op_name"
122 if len(outputs):
123 name = outputs[0].name
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +0200124 inputs = align_tensor_indices_to_nng(op_type, indices, inputs)
Tim Hall79d07d22020-04-27 18:20:16 +0100125 op = Operation(op_type, name)
Tim Hallc8310b12020-06-17 14:53:11 +0100126 op.op_index = op_index
Tim Hall79d07d22020-04-27 18:20:16 +0100127 op.inputs = inputs
128 op.outputs = outputs
Fredrik Svedberg8d0f4892021-02-16 21:59:50 +0100129 op.intermediates = intermediates
Tim Hall79d07d22020-04-27 18:20:16 +0100130 for out in op.outputs:
131 out.ops = [op]
132
Louis Verhaardaee5d752020-09-30 09:01:52 +0200133 if op.type.is_depthwise_conv2d_op() or op.type.is_conv2d_op() or op.type == Op.FullyConnected:
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200134 if inputs[1].values is not None:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200135 if op.type == Op.FullyConnected:
Patrik Gustavsson6ae0e422020-11-04 12:43:50 +0100136 inputs[1] = clone_and_reshape_tensor(inputs[1], (1, 0), False)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200137 else:
Patrik Gustavsson6ae0e422020-11-04 12:43:50 +0100138 inputs[1] = clone_and_reshape_tensor(inputs[1], (1, 2, 3, 0), False)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200139 if op.type.needs_bias() and len(inputs) <= op_type.info.indices.biases[0]:
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +0200140 # No Bias tensor
141 inputs.append(None)
Patrik Gustavssone2dbed22020-10-06 10:14:36 +0200142 if inputs[-1] and inputs[-1].values is not None:
Patrik Gustavsson34359582020-11-03 10:24:08 +0100143 # Since bias tensor is used for both bias and scale,
Johan Alfvén53605be2022-10-26 12:52:17 +0200144 # a clone with a unique equivalence_id is needed.
145 inputs[-1] = clone_and_reshape_tensor(inputs[-1], None, True)
Tim Hall79d07d22020-04-27 18:20:16 +0100146
147 if opt_serializer is not None:
Tim Hallc8310b12020-06-17 14:53:11 +0100148 op.attrs = opt_serializer.deserialize(op_data)
Tim Hall79d07d22020-04-27 18:20:16 +0100149
Johan Alfvén673683b2022-09-05 09:39:47 +0200150 if op_type == Op.While:
151 # Attach the actual nng subgraphs to the op
152 cond_subgraph_index = op.attrs["cond_subgraph_index"]
153 body_subgraph_index = op.attrs["body_subgraph_index"]
154 op.attrs["subgraph"] = (
155 self.graph.nng.subgraphs[cond_subgraph_index],
156 self.graph.nng.subgraphs[body_subgraph_index],
157 )
158
Louis Verhaardaee5d752020-09-30 09:01:52 +0200159 if op_type == Op.Reshape and "new_shape" not in op.attrs:
Michael McGeagh7b245fd2020-07-31 12:50:57 +0100160 # Reshape should have an attrib "new_shape" but if it is missing, add it based on the output shape
161 op.attrs["new_shape"] = outputs[0].shape
162
Louis Verhaardaee5d752020-09-30 09:01:52 +0200163 if op_type == Op.Cast:
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200164 # Cast op should have "in/out_data_type" attribs add if missing
165 if "in_data_type" not in op.attrs:
166 op.attrs["in_data_type"] = inputs[0].dtype
167 if "out_data_type" not in op.attrs:
168 op.attrs["out_data_type"] = outputs[0].dtype
169
Tim Hall79d07d22020-04-27 18:20:16 +0100170 if "stride_w" in op.attrs:
171 op.attrs["strides"] = (1, op.attrs["stride_h"], op.attrs["stride_w"], 1)
172 if "filter_width" in op.attrs:
173 op.attrs["ksize"] = (1, op.attrs["filter_height"], op.attrs["filter_width"], 1)
174 if "dilation_w_factor" in op.attrs:
175 op.attrs["dilation"] = (1, op.attrs["dilation_h_factor"], op.attrs["dilation_w_factor"], 1)
176 if "depth_multiplier" in op.attrs:
177 op.attrs["channel_multiplier"] = op.attrs["depth_multiplier"]
178
Fredrik Svedbergbdf09f92020-11-18 11:30:21 +0100179 if op_type == Op.DepthwiseConv2DBias and op.attrs["depth_multiplier"] == 0:
180 # The depth multiplier is implicit and is calculated as weight channels / ifm channels
181 # Note however that the weights have been reshaped above.
182 # The original value is cached above in channel_multiplier
183 op.attrs["depth_multiplier"] = op.weights.shape[2] // op.ifm.shape[-1]
184
Louis Verhaarde8a5a782020-11-02 18:04:27 +0100185 faf = op.attrs.pop("fused_activation_function", None)
186 if faf is not None:
187 op.activation = create_activation_function(faf)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200188 if custom_code is not None:
189 op.attrs["custom_code"] = custom_code
Tim Hall79d07d22020-04-27 18:20:16 +0100190
Diego Russod0eee262020-04-23 18:14:37 +0100191 @staticmethod
192 def len1_array_to_scalar(arr):
193 # The following flatbuffer quantisation fields all return a scalar value of 0 if they are not definied in
194 # the input buffer. This is represented in Vela by using None.
195 # Otherwise, the fields returned are a single or multi-element array. In which case, single element arrays
196 # are converted to scalars
197 if isinstance(arr, int) and arr == 0:
198 return None
199 if len(arr) == 1:
200 return arr[0]
201 return arr
202
Tim Hall79d07d22020-04-27 18:20:16 +0100203
204class TFLiteGraph:
Michael McGeagh6f725262020-12-03 15:21:36 +0000205 def __init__(self, filename, batch_size, feed_dict, output_node_names, initialisation_nodes):
Tim Hall79d07d22020-04-27 18:20:16 +0100206
207 self.op_times = {}
208 if batch_size is None:
209 batch_size = 1
210 self.batch_size = batch_size
211 self.name = os.path.splitext(os.path.basename(filename))[0]
212 self.initialisation_nodes = initialisation_nodes
213
214 with open(filename, "rb") as f:
215 buf = bytearray(f.read())
216
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100217 try:
218 parsing_step = "parsing root"
219 model = Model.GetRootAsModel(buf, 0)
Tim Hall79d07d22020-04-27 18:20:16 +0100220
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100221 parsing_step = "parsing buffers length"
222 self.buffers = []
223 for idx in range(model.BuffersLength()):
224 parsing_step = f"parsing buffer {idx}"
225 self.buffers.append(self.parse_buffer(model.Buffers(idx)))
Tim Hall79d07d22020-04-27 18:20:16 +0100226
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100227 parsing_step = "parsing operator codes length"
228 self.operator_codes = []
229 for idx in range(model.OperatorCodesLength()):
230 parsing_step = f"parsing operator code {idx}"
231 self.operator_codes.append(self.parse_operator_code(model.OperatorCodes(idx)))
Tim Hall79d07d22020-04-27 18:20:16 +0100232
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100233 parsing_step = "parsing subgraphs length"
234 self.subgraphs = []
Johan Alfvén673683b2022-09-05 09:39:47 +0200235
236 # Pre-allocate nng subgraphs - needed when parsing an operator and the operator
237 # has subgraph attributes.
238 self.nng = Graph(self.name, self.batch_size)
239 for idx in range(model.SubgraphsLength()):
240 sg = Subgraph()
241 self.nng.subgraphs.append(sg)
242
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100243 for idx in range(model.SubgraphsLength()):
244 parsing_step = f"parsing subgraph {idx}"
245 self.subgraphs.append(TFLiteSubgraph(self, model.Subgraphs(idx)))
Tim Hall79d07d22020-04-27 18:20:16 +0100246
Johan Alfvén673683b2022-09-05 09:39:47 +0200247 for idx, tflite_sg in enumerate(self.subgraphs):
248 sg = self.nng.subgraphs[idx]
249 sg.name = tflite_sg.name
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100250 sg.original_inputs = tflite_sg.inputs # Preserve the original input order
251 sg.output_tensors = tflite_sg.outputs
Tim Hall79d07d22020-04-27 18:20:16 +0100252
Henrik G Olssonea9b23c2021-03-23 17:34:49 +0100253 parsing_step = "parsing metadata length"
254 # Preserve the original metadata
255 for idx in range(model.MetadataLength()):
256 parsing_step = f"parsing metadata {idx}"
257 meta = model.Metadata(idx)
258 parsing_step = f"parsing metadata name of metadata {idx}"
259 name = meta.Name()
260 if name is not None:
261 parsing_step = f"parsing metadata {idx} ({name})"
262 buf_data = self.buffers[meta.Buffer()]
263 self.nng.metadata.append((name, buf_data))
264 except (struct.error, TypeError, RuntimeError) as e:
265 print(f'Error: Invalid tflite file. Got "{e}" while {parsing_step}.')
266 sys.exit(1)
Michael McGeagh22f74e12020-08-07 16:21:03 +0100267
Tim Hall79d07d22020-04-27 18:20:16 +0100268 def parse_buffer(self, buf_data):
269 if buf_data.DataLength() == 0:
270 return None
271 data = buf_data.DataAsNumpy()
272 return data
273
274 def parse_operator_code(self, code):
275 c = code.BuiltinCode()
Tim Hall42abec12021-02-04 21:31:57 +0000276 if c == 0:
277 c = code.DeprecatedBuiltinCode()
Tim Hallc30f4952020-06-15 20:47:35 +0100278 if c not in builtin_operator_map:
Michael McGeagh7a6f8432020-12-02 15:29:22 +0000279 raise InputFileError(
280 self.name, f"The input file contains operator code '{c}' which is currently not supported"
281 )
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +0200282 op_type, ser, indices = builtin_operator_map[c]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200283 custom_code = None
Tim Hall79d07d22020-04-27 18:20:16 +0100284 if c == BuiltinOperator.CUSTOM:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200285 custom_code = decode_str(code.CustomCode())
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +0200286 return op_type, ser, custom_code, indices
Tim Hall79d07d22020-04-27 18:20:16 +0100287
288
Michael McGeagh6f725262020-12-03 15:21:36 +0000289def read_tflite(filename, batch_size, feed_dict, output_node_names, initialisation_nodes):
Diego Russoea6111a2020-04-14 18:41:58 +0100290 tflite_graph = TFLiteGraph(filename, batch_size, feed_dict, output_node_names, initialisation_nodes)
Tim Hall79d07d22020-04-27 18:20:16 +0100291 nng = tflite_graph.nng
292 nng.refresh_after_modification()
293 return nng