blob: 5f111786e4aaab4ead9e8d6803f385aafd30c8a4 [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
2#
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# Early optimisation of the network graph, using the rewrite_graph module to do the traversal of the graph. These are
18# split into two parts optimise_graph_a and optimise_graph_b.
Tim Hall79d07d22020-04-27 18:20:16 +010019import math
Diqing Zhong016b8272020-12-16 16:46:06 +010020import uuid
Diego Russoea6111a2020-04-14 18:41:58 +010021
22import numpy as np
23
Louis Verhaardd7911c42020-08-25 13:36:41 +020024from . import fp_math
Louis Verhaardb9fc33c2020-08-13 11:47:36 +020025from . import lut
Diego Russoea6111a2020-04-14 18:41:58 +010026from . import rewrite_graph
Louis Verhaardd7911c42020-08-25 13:36:41 +020027from . import scaling
Diego Russoea6111a2020-04-14 18:41:58 +010028from .data_type import DataType
Tim Halle6ccd872020-11-09 16:46:37 +000029from .debug_database import DebugDatabase
Louis Verhaard7db78962020-05-25 15:05:26 +020030from .errors import UnsupportedFeatureError
Dwight Lidman42fed942020-05-29 09:37:03 +020031from .ethos_u55_regs.ethos_u55_regs import resampling_mode
Louis Verhaard8912c532020-09-30 12:11:49 +020032from .numeric_util import clamp_sigmoid
Louis Verhaarde0ef2732020-06-03 08:56:44 +020033from .numeric_util import full_shape
Louis Verhaardf03bad32020-09-25 08:30:44 +020034from .numeric_util import round_away_zero
Louis Verhaarde8a5a782020-11-02 18:04:27 +010035from .operation import create_activation_function
Diego Russoe8a10452020-04-21 17:39:10 +010036from .operation import NpuBlockType
Louis Verhaardaee5d752020-09-30 09:01:52 +020037from .operation import Op
Diego Russoe8a10452020-04-21 17:39:10 +010038from .operation import Operation
Michael McGeagh16895482020-12-14 15:51:20 +000039from .operation import Padding
Fredrik Svedbergd9c2c422020-12-01 16:33:45 +010040from .operation_util import create_avgpool_nop
patrik.gustavssoneeb85152020-12-21 17:10:40 +000041from .shape4d import Shape4D
Fredrik Svedberga0c36242020-06-03 15:43:31 +020042from .softmax import SoftMax
Tim Hall93582962020-09-09 21:58:15 +010043from .tensor import check_quantized_tens_scaling_equal
Michael McGeaghc5b549b2020-08-07 11:54:28 +010044from .tensor import create_const_tensor
45from .tensor import create_reshape_tensor
Charles Xu9a03fdf2020-07-02 15:12:40 +020046from .tensor import QuantizationParameters
Diego Russoe8a10452020-04-21 17:39:10 +010047from .tensor import Tensor
Michael McGeagh7a6f8432020-12-02 15:29:22 +000048from .tflite_mapping import optype_to_builtintype
Tim Hall79d07d22020-04-27 18:20:16 +010049
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000050passthrough_nodes = (Op.Identity,)
Tim Hall79d07d22020-04-27 18:20:16 +010051
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000052memory_only_ops = (Op.Reshape,)
Michael McGeagh11b0bdb2020-09-08 11:07:35 +010053
Tim Hall79d07d22020-04-27 18:20:16 +010054
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +020055def remove_passthrough_tensor(tens, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +010056 if len(tens.ops) == 1 and tens.ops[0].type in passthrough_nodes:
57 assert len(tens.ops[0].inputs) == 1
58 tens = tens.ops[0].inputs[0]
59 return tens
60
61
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +020062def rewrite_concat(tens, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +020063 if len(tens.ops) == 1 and tens.ops[0].type.is_concat_op():
Tim Hall79d07d22020-04-27 18:20:16 +010064 concat_op = tens.ops[0]
65 if tens != concat_op.outputs[0]:
66 return tens # don't attempt to rewrite the min/max outputs of QuantizedConcat
67
68 # Not supported so leave it and run on CPU
69 if not concat_op.run_on_npu:
70 return tens
71
72 inputs, axis = concat_op.get_concat_inputs_axis()
73
74 tens.ops = []
75 offset = 0
76 for idx, inp in enumerate(inputs):
Patrik Gustavsson3d737172020-12-22 10:40:51 +010077 if axis >= 0:
78 axis_4D = axis + (4 - len(inp.shape))
79 else:
80 axis_4D = axis
Louis Verhaardaee5d752020-09-30 09:01:52 +020081 new_op = Operation(Op.ConcatSliceWrite, concat_op.name + str(idx))
Tim Hall79d07d22020-04-27 18:20:16 +010082 new_op.inputs = [inp]
83 new_op.outputs = [tens]
Patrik Gustavsson3d737172020-12-22 10:40:51 +010084 new_op.attrs["concat_axis"] = axis_4D
Tim Hall79d07d22020-04-27 18:20:16 +010085 new_op.attrs["concat_start"] = offset
86 offset += inp.shape[axis]
87 new_op.attrs["concat_end"] = offset
88 new_op.run_on_npu = True
89 tens.ops.append(new_op)
Tim Halle6ccd872020-11-09 16:46:37 +000090 DebugDatabase.add_optimised(concat_op, new_op)
patrik.gustavssoneeb85152020-12-21 17:10:40 +000091 new_op.set_ifm_ofm_shapes()
Tim Hall79d07d22020-04-27 18:20:16 +010092 assert tens.shape[axis] == offset
93
Patrik Gustavsson29d568e2020-08-18 10:11:21 +020094 # If axis corresponds to C-dimension, NHCWB16 can only be used in the output if all the concat_start's are a
95 # multiple of 16. This as, it is only then the address offset for the ofm, for all operations, will be 16 byte
96 # aligned. For other values of axis the address offsets will be 16 byte aligned, as they are all based on c = 0
Patrik Gustavsson458a2082020-08-13 13:41:05 +020097 # and those addresses are always 16 byte aligned due to the NHCWB16 format.
Patrik Gustavsson6c97e9a2020-09-23 11:02:18 +020098 if axis == -1 or axis == (len(tens.shape) - 1):
Patrik Gustavsson458a2082020-08-13 13:41:05 +020099 for op in tens.ops:
100 if op.attrs["concat_start"] % 16 != 0:
101 tens.avoid_NHCWB16 = True
102 break
103
Tim Hall79d07d22020-04-27 18:20:16 +0100104 return tens
105
106
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200107def rewrite_split(tens, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +0100108
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100109 if len(tens.ops) == 1 and tens.ops[0].type.is_split_op() and tens.ops[0].type != Op.Unpack:
Tim Hall79d07d22020-04-27 18:20:16 +0100110 split_op = tens.ops[0]
111
112 # Not supported so leave it and run on CPU
113 if not split_op.run_on_npu:
114 return tens
115
116 inp, outputs, axis, offset_start, offset_end = split_op.get_split_inputs_axis()
117
118 tens.ops = []
Louis Verhaardaee5d752020-09-30 09:01:52 +0200119 new_op = Operation(Op.SplitSliceRead, split_op.name)
Tim Hall79d07d22020-04-27 18:20:16 +0100120 new_op.inputs = [inp]
Tim Hall79d07d22020-04-27 18:20:16 +0100121
122 # For Split the offset cannot be extracted from the tensor so it has to
123 # be calculated from the index of the output tensor
Diego Russoea6111a2020-04-14 18:41:58 +0100124 if axis is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100125 # Get the start and end of the split
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100126 offset_start = [0] * 4
127 for idx, out in enumerate(outputs):
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100128 split_op.ofm_shapes[idx] = Shape4D(out.shape)
Tim Hall79d07d22020-04-27 18:20:16 +0100129 if out == tens:
130 break
Patrik Gustavsson3d737172020-12-22 10:40:51 +0100131 if axis >= 0:
132 axis_4D = axis + (4 - len(out.shape))
133 else:
134 axis_4D = axis
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000135
136 offset_start[axis_4D] += split_op.ofm_shapes[idx].get_dim(axis_4D)
Tim Hall79d07d22020-04-27 18:20:16 +0100137
Patrik Gustavssoneebb1c22020-08-18 15:03:04 +0200138 # If start offset is not a multiple of 16 in the C-dimension, NHCWB16 need to be avoided in the input
139 if (offset_start[-1] % 16) != 0:
140 inp.avoid_NHCWB16 = True
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100141 else:
142 offset_start = full_shape(4, offset_start, 0)
Tim Hall79d07d22020-04-27 18:20:16 +0100143
144 new_op.attrs["split_start"] = offset_start
Tim Hall79d07d22020-04-27 18:20:16 +0100145 new_op.run_on_npu = True
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100146 new_op.set_output_tensor(tens)
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100147 new_op.ifm_shapes.append(Shape4D(inp.shape))
148 new_op.ofm_shapes.append(Shape4D(full_shape(4, tens.shape, 1)))
Tim Halle6ccd872020-11-09 16:46:37 +0000149 DebugDatabase.add_optimised(split_op, new_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100150
151 return tens
152
153
154def needed_total_padding(input_size, stride, filter_size):
155 out_size = (input_size + stride - 1) // stride
156 needed_input = (out_size - 1) * stride + filter_size
157 total_padding = max(0, needed_input - input_size)
158 return total_padding
159
160
Louis Verhaardae2d5532020-12-11 17:19:54 +0100161def calc_padding_and_skirt(padding_type, kernel_size, stride, input_dims, explicit_padding):
Tim Hall79d07d22020-04-27 18:20:16 +0100162 ypad = needed_total_padding(int(input_dims[1]), int(stride[1]), int(kernel_size[0]))
163 xpad = needed_total_padding(int(input_dims[2]), int(stride[2]), int(kernel_size[1]))
Michael McGeagh16895482020-12-14 15:51:20 +0000164 if padding_type == Padding.SAME:
Tim Hall79d07d22020-04-27 18:20:16 +0100165 left_pad = (xpad + 0) // 2
166 right_pad = (xpad + 1) // 2
167 top_pad = (ypad + 0) // 2
168 bottom_pad = (ypad + 1) // 2
Michael McGeagh16895482020-12-14 15:51:20 +0000169 elif padding_type == Padding.VALID:
Tim Hall79d07d22020-04-27 18:20:16 +0100170 left_pad = 0
171 right_pad = 0
172 top_pad = 0
173 bottom_pad = 0
Louis Verhaardae2d5532020-12-11 17:19:54 +0100174 elif padding_type == Padding.EXPLICIT:
175 # Padding is specified in a PAD operator which has been bypassed.
176 # The top and left padding are taken from the PAD; bottom and right are calculated.
177 top_pad, left_pad, _, _ = explicit_padding
178 bottom_pad = ypad - top_pad
179 right_pad = xpad - left_pad
Tim Hall79d07d22020-04-27 18:20:16 +0100180 else:
Michael McGeagh16895482020-12-14 15:51:20 +0000181 raise UnsupportedFeatureError(f"Unknown padding")
Tim Hall79d07d22020-04-27 18:20:16 +0100182 padding = (top_pad, left_pad, bottom_pad, right_pad)
183 skirt = (top_pad, left_pad, ypad - top_pad, xpad - left_pad)
184 return padding, skirt
185
Tim Hallc30f4952020-06-15 20:47:35 +0100186
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200187def calc_upscaled_padding_and_skirt(padding_type, kernel_size, stride, input_dims, upscaling_factor):
188 kernel_height, kernel_width = kernel_size[0], kernel_size[1]
Michael McGeagh16895482020-12-14 15:51:20 +0000189 if padding_type == Padding.SAME:
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200190 ypad = needed_total_padding(int(input_dims[1]) * upscaling_factor, int(stride[1]), int(kernel_height))
191 xpad = needed_total_padding(int(input_dims[2]) * upscaling_factor, int(stride[2]), int(kernel_width))
Jacob Bohlind47cc272020-08-24 11:42:14 +0200192 right_pad = max(((xpad + 1) // upscaling_factor) - 1, 0)
193 bottom_pad = max(((ypad + 1) // upscaling_factor) - 1, 0)
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200194 left_pad = max(kernel_width - 1 - right_pad, 0)
195 top_pad = max(kernel_height - 1 - bottom_pad, 0)
Michael McGeagh16895482020-12-14 15:51:20 +0000196 elif padding_type == Padding.VALID:
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200197 right_pad = max(kernel_width - 2, 0)
198 bottom_pad = max(kernel_height - 2, 0)
199 left_pad = kernel_width - 1
200 top_pad = kernel_height - 1
Jacob Bohlincf7da102020-05-20 09:03:40 +0200201 else:
Michael McGeagh16895482020-12-14 15:51:20 +0000202 raise UnsupportedFeatureError(f"Unknown padding")
Jacob Bohlincf7da102020-05-20 09:03:40 +0200203 padding = (top_pad, left_pad, bottom_pad, right_pad)
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200204 skirt = padding
Jacob Bohlincf7da102020-05-20 09:03:40 +0200205 return padding, skirt
206
Tim Hall79d07d22020-04-27 18:20:16 +0100207
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200208def fixup_conv2d_backprop(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200209 if op.type == Op.Conv2DBackpropInput:
Tim Hall79d07d22020-04-27 18:20:16 +0100210 # flip the inputs
211 op.inputs[0], op.inputs[2] = op.inputs[2], op.inputs[0]
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000212 op.set_ifm_ofm_shapes()
Louis Verhaardaee5d752020-09-30 09:01:52 +0200213 op.type = Op.Conv2DBackpropInputSwitchedBias
Louis Verhaard69b84802020-12-16 12:02:28 +0100214 op.ifm.resampling_mode = resampling_mode.TRANSPOSE
Jacob Bohlincf7da102020-05-20 09:03:40 +0200215
216 # Update strides
Tim Hallc30f4952020-06-15 20:47:35 +0100217 op.attrs.update({"stride_w": 1, "stride_h": 1, "strides": (1, 1, 1, 1)})
Tim Hall79d07d22020-04-27 18:20:16 +0100218
219 return op
220
221
Charles Xu9a03fdf2020-07-02 15:12:40 +0200222# Convert the op to an elementwise add
223def convert_resizebilinear_1x1_to_add(op):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200224 op.type = Op.Add
Charles Xu9a03fdf2020-07-02 15:12:40 +0200225 op.name = op.name + "_add"
Charles Xu9a03fdf2020-07-02 15:12:40 +0200226 op.attrs["resizebilinear"] = True
227 # Create an input tensor filled with zeros
228 shape = op.outputs[0].shape
229 tens = Tensor(shape, op.inputs[0].dtype, op.inputs[1].name + "_add")
230 tens.values = np.zeros(shape)
231 tens.quant_values = np.zeros(shape, np.uint8)
232 tens.quantization = QuantizationParameters(0.0, 255.0)
233 tens.quantization.scale_f32 = 1.0
234 tens.quantization.zero_point = 0
235 tens.consumer_list = [op]
236 tens_op = op.inputs[1].ops[0]
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100237 tens_op.set_output_tensor(tens)
Charles Xu9a03fdf2020-07-02 15:12:40 +0200238 # Set the add inputs
239 op.inputs[1] = op.inputs[0]
240 op.inputs[0] = tens
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000241 op.set_ifm_ofm_shapes()
Charles Xu9a03fdf2020-07-02 15:12:40 +0200242
243 return op
244
245
Charles Xu87c13502020-08-06 12:17:26 +0200246# Convert ResizeBilinear to a number of 2x2 pool ops
247def convert_resizebilinear_to_2x2_pool(op):
248 count = 0
249 pre_op = op
250 outputs = op.outputs
251
252 op.attrs.update({"strides": (1, 1, 1, 1), "ksize": (1, 2, 2, 1)})
253 if op.attrs["align_corners"]:
254 shape_modifier = 1
Michael McGeagh16895482020-12-14 15:51:20 +0000255 op.attrs["padding"] = Padding.VALID
Charles Xu87c13502020-08-06 12:17:26 +0200256 else:
257 shape_modifier = 0
Michael McGeagh16895482020-12-14 15:51:20 +0000258 op.attrs["padding"] = Padding.SAME
Charles Xu87c13502020-08-06 12:17:26 +0200259 op.inputs[0].resampling_mode = resampling_mode.NEAREST
260
261 upscaled_shape = np.array(op.inputs[0].shape[1:3])
262 out_shape = np.array(op.outputs[0].shape[1:3])
263 if (upscaled_shape == upscaled_shape * 2 - shape_modifier).all():
264 return op
265
266 while (upscaled_shape < out_shape).all():
267 if count == 0:
268 scaled_op = pre_op
269 else:
270 scaled_op = op.clone("_{}".format(count))
271 scaled_op.inputs[0] = pre_op.outputs[0]
272
273 upscaled_shape = upscaled_shape * 2 - shape_modifier
274
275 if (upscaled_shape == out_shape).all():
276 scaled_op.outputs = outputs
277 scaled_op.outputs[0].ops = [scaled_op]
278 else:
279 shape = outputs[0].shape.copy()
280 shape[1:3] = upscaled_shape[0:2]
281 out_tens = Tensor(shape, DataType.int16, "{}_{}".format(op.outputs[0].name, count))
282 out_tens.quantization = op.outputs[0].quantization.clone()
283 out_tens.quantization.quant_min = np.iinfo(np.int16).min
284 out_tens.quantization.quant_max = np.iinfo(np.int16).max
285 scaled_op.set_output_tensor(out_tens)
286 pre_op = scaled_op
287 count += 1
288
289 # Setup the scale value
290 if scaled_op.inputs[0].dtype.bits == 8 and scaled_op.outputs[0].dtype.bits == 16:
Fredrik Svedberge82be7c2021-01-18 15:21:03 +0100291 scaled_op.rescale = 128
Charles Xu87c13502020-08-06 12:17:26 +0200292 elif scaled_op.inputs[0].dtype.bits == 16 and scaled_op.outputs[0].dtype.bits == 8:
Fredrik Svedberge82be7c2021-01-18 15:21:03 +0100293 scaled_op.rescale = 1 / 128
294 else:
295 scaled_op.rescale = None
Patrik Gustavssoncc6915c2020-12-22 09:16:50 +0100296 scaled_op.set_ifm_ofm_shapes()
Charles Xu87c13502020-08-06 12:17:26 +0200297
298 return op
299
300
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200301def fixup_resizebilinear(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200302 if op.type == Op.ResizeBilinear and op.run_on_npu:
Charles Xu87c13502020-08-06 12:17:26 +0200303 if op.inputs[0].shape == op.outputs[0].shape:
Charles Xu36ffaf32020-08-05 15:40:44 +0200304 # Bypass nop resizebilinear
305 op.inputs = op.inputs[:1]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200306 op.type = Op.Identity
Charles Xu87c13502020-08-06 12:17:26 +0200307 elif op.inputs[0].shape[1] == 1 and op.inputs[0].shape[2] == 1:
308 convert_resizebilinear_1x1_to_add(op)
309 else:
310 convert_resizebilinear_to_2x2_pool(op)
Charles Xu9a03fdf2020-07-02 15:12:40 +0200311
312 return op
313
314
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200315def convert_nop_split_to_identity(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200316 if op.type == Op.Split and op.attrs.get("num_splits") == 1:
Dwight Lidmanc3862c22020-09-14 15:22:33 +0200317 # the list comprehension should return a list with a single tensor
318 # if it shouldn't, remove_passthrough_tensor will fail appropriately
319 op.inputs = [i for i in op.inputs if i.shape == op.outputs[0].shape]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200320 op.type = Op.Identity
Dwight Lidmanc3862c22020-09-14 15:22:33 +0200321 return op
322
323
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200324def fixup_fully_connected_input(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200325 if op.type == Op.FullyConnected:
Tim Hall79d07d22020-04-27 18:20:16 +0100326 inp = op.inputs[0]
327 weights = op.inputs[1]
328
329 n_in_elems = weights.shape[-2]
330 elms = inp.elements()
331 batch_size = elms // n_in_elems
332 assert batch_size * n_in_elems == elms
333
334 desired_shape = [batch_size, n_in_elems]
335 if inp.shape != desired_shape:
336 # mismatch, insert a reshape to fix this.
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200337 op.set_input_tensor(create_reshape_tensor(inp, desired_shape), 0)
Tim Hall79d07d22020-04-27 18:20:16 +0100338
339 return op
340
341
Diqing Zhong94457b12020-12-09 15:22:40 +0100342def convert_batched_fc_shape(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200343 if op.type == Op.FullyConnected:
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200344 ifm = op.inputs[0]
345 ofm = op.outputs[0]
346 # Check if the FC is 2D and first dimension indicates batching
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100347 # TOD0 op.ifm_shape[0] > 1 is enough when refactory is complete
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000348 if len(ifm.shape) == len(ofm.shape) == 2 and ifm.shape[0] > 1 and op.ifm_shapes[0].batch > 1:
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200349 n = ifm.shape[0]
350 batching_split = {4: (2, 2), 8: (2, 4), 16: (4, 4)}
351 h, w = batching_split.get(n, (1, n))
352
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200353 prev_op = ifm.ops[0]
354 desired_shape = [1, h, w, ifm.shape[-1]]
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000355 op.ifm_shapes[0] = Shape4D(desired_shape)
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100356
Louis Verhaardaee5d752020-09-30 09:01:52 +0200357 if len(ifm.consumer_list) == 1 and prev_op is not None and prev_op.type == Op.Reshape:
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200358 # There is a preceding Reshape
359 # Compare input of prev_op and input of op, to see if prev_op can be removed
360 ifm_prev_op = prev_op.inputs[0]
Tim Hall89567612020-10-27 11:57:57 +0000361 if ifm_prev_op.shape == ifm.shape and check_quantized_tens_scaling_equal(ifm_prev_op, ifm):
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200362 # prev_op can be removed
363 op.set_input_tensor(ifm_prev_op, 0)
364 else:
365 op.inputs[0].set_all_shapes(desired_shape)
366 prev_op.set_input_tensor(
367 create_const_tensor(prev_op.inputs[1].name, [1], DataType.int32, desired_shape), 1
368 )
369 prev_op.attrs["new_shape"] = desired_shape
370 else:
371 # Add reshape op to the input if there is no preceding reshape
372 ifm.consumer_list.remove(op)
373 op.set_input_tensor(create_reshape_tensor(ifm, desired_shape), 0)
374
375 # Reshape Weights to be 4D. IO becomes HWIO
376 weight_tensor = op.inputs[1]
377 weight_tensor.quant_values = np.expand_dims(np.expand_dims(weight_tensor.quant_values, axis=0), axis=0)
378 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
379
380 desired_shape = [1, h, w, ofm.shape[-1]]
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000381 op.ofm_shapes[0] = Shape4D(desired_shape)
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100382
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200383 if (
384 len(ofm.consumer_list) == 1
385 and ofm.consumer_list[0] is not None
Louis Verhaardaee5d752020-09-30 09:01:52 +0200386 and ofm.consumer_list[0].type == Op.Reshape
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200387 ):
388 # There is a subsequent Reshape
389 # Compare desired shape and output of consumer op, to see if consumer op can be removed
390 ofm_cons_op = ofm.consumer_list[0].outputs[0]
Tim Hall93582962020-09-09 21:58:15 +0100391 if desired_shape == ofm_cons_op.shape and check_quantized_tens_scaling_equal(ofm, ofm_cons_op):
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200392 op.outputs[0] = ofm_cons_op
393 op.outputs[0].ops = [op]
394 else:
395 op.outputs[0].set_all_shapes(desired_shape)
396 else:
Diqing Zhong94457b12020-12-09 15:22:40 +0100397 # Add reshape op to the output
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200398 op.set_output_tensor(create_reshape_tensor(ofm, desired_shape, False))
399 return op
400
401
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200402def fixup_pack_input(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200403 if op.type == Op.Pack:
Tim Hall79d07d22020-04-27 18:20:16 +0100404 # Pack is also referred to as Stack
405 # Requires the rewrite_concat function to be called on the op afterwards
406 axis = int(op.attrs["axis"])
407 desired_shape = op.inputs[0].shape[:axis] + [1] + op.inputs[0].shape[axis:]
408
409 # Construct 1 shape tensor to be used by all inserted reshape ops
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100410 new_shape_tens = create_const_tensor(op.name + "_reshape_shape", [1], DataType.int32, desired_shape)
Tim Hall79d07d22020-04-27 18:20:16 +0100411
412 for idx, inp in enumerate(op.inputs):
Tim Hall79d07d22020-04-27 18:20:16 +0100413 reshape_out = inp.clone("_reshaped")
Michael McGeagh6a8d4242020-07-28 12:17:59 +0100414 reshape_out.set_all_shapes(desired_shape)
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100415
Louis Verhaardaee5d752020-09-30 09:01:52 +0200416 reshape_op = Operation(Op.Reshape, "{}{}_reshape".format(op.name, idx))
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100417 reshape_op.attrs["new_shape"] = desired_shape
418 reshape_op.inputs = [inp, new_shape_tens]
419 reshape_op.set_output_tensor(reshape_out)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000420 reshape_op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000421 DebugDatabase.add_optimised(op, reshape_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100422
423 op.inputs[idx] = reshape_out
424
Louis Verhaardaee5d752020-09-30 09:01:52 +0200425 op.type = Op.PackReshaped
Tim Hall79d07d22020-04-27 18:20:16 +0100426
427 return op
428
429
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200430def unfuse_activation_function(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200431 if op.type == Op.ConcatTFLite and op.run_on_npu and op.activation is not None:
Louis Verhaarde8a5a782020-11-02 18:04:27 +0100432 act_op = Operation(op.activation.op_type, op.name + op.activation.op_type.name)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200433 op.activation = None
Fredrik Svedberg0f98b362020-09-29 10:00:39 +0200434 out_tens = op.outputs[0]
435 intermediate_tens = out_tens.clone("_act_intermediate")
436 act_op.set_output_tensor(out_tens)
437 act_op.add_input_tensor(intermediate_tens)
438 op.set_output_tensor(intermediate_tens)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000439 act_op.set_ifm_ofm_shapes()
Fredrik Svedberg0f98b362020-09-29 10:00:39 +0200440
441 return op
442
Louis Verhaard8912c532020-09-30 12:11:49 +0200443
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100444def fixup_stridedslice_output(tens, arch, nng):
445 op = tens.ops[0]
Dwight Lidman73320a42020-11-05 10:34:41 +0100446 if op.run_on_npu and op.type == Op.StridedSlice:
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100447 reshape_input_shape = tens.shape
448 new_axis_mask = op.attrs["new_axis_mask"]
449 shrink_axis_mask = op.attrs["shrink_axis_mask"]
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100450
Dwight Lidman73320a42020-11-05 10:34:41 +0100451 if shrink_axis_mask != 0:
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100452 n = 0
453 axis = 0
454 while shrink_axis_mask:
455 prev_mask = shrink_axis_mask
456 n += 1
457 shrink_axis_mask &= shrink_axis_mask - 1
458 axis = int(math.log2(prev_mask - shrink_axis_mask))
459 reshape_input_shape = reshape_input_shape[:axis] + [1] + reshape_input_shape[axis:]
460
461 assert len(tens.shape) == (len(op.inputs[0].shape) - n)
462 op.attrs["shrink_axis_mask"] = 0
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100463 elif new_axis_mask != 0:
464 n = 0
465 axis = 0
466 while new_axis_mask:
467 prev_mask = new_axis_mask
468 n += 1
469 new_axis_mask &= new_axis_mask - 1
470 axis = int(math.log2(prev_mask - new_axis_mask))
471 reshape_input_shape = reshape_input_shape[:axis] + reshape_input_shape[(axis + 1) :]
472 new_axis_mask >>= 1
473
474 assert len(tens.shape) == (len(op.inputs[0].shape) + n)
475 op.attrs["new_axis_mask"] = 0
Dwight Lidmandda21af2020-11-11 15:44:57 +0100476 else:
477 # Equal Rank StridedSlice, no need to insert reshape
478 return tens
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100479
480 # Construct 1 shape tensor to be used by all inserted reshape ops
481 new_shape_tens = create_const_tensor(op.name + "_reshape_shape", [1], DataType.int32, tens.shape)
482
483 for idx, out_tens in enumerate(op.outputs):
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000484 op.ofm_shapes[idx] = Shape4D(new_shape_tens.shape)
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100485 reshape_in = out_tens.clone("_reshaped")
486 reshape_in.set_all_shapes(reshape_input_shape)
487 reshape_in.ops = [op]
488
489 reshape_op = Operation(Op.Reshape, "{}{}_reshape".format(op.name, idx))
490 reshape_op.attrs["new_shape"] = reshape_input_shape
491 reshape_op.inputs = [reshape_in, new_shape_tens]
492 reshape_op.set_output_tensor(out_tens)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000493 reshape_op.set_ifm_ofm_shapes()
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100494
495 op.outputs[idx] = reshape_in
496
497 return tens
498
499
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200500def fixup_unpack_output(tens, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +0100501 op = tens.ops[0]
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100502 if op.run_on_npu and op.type == Op.Unpack:
Tim Hall79d07d22020-04-27 18:20:16 +0100503 # Unpack is also referred to as Unstack
504 # Requires the rewrite_split function to be called on the op afterwards
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100505 axis = int(op.attrs["axis"])
506 op.type = Op.UnpackReshaped
507 reshape_input_shape = tens.shape[:axis] + [1] + tens.shape[axis:]
Tim Hall79d07d22020-04-27 18:20:16 +0100508
509 # Construct 1 shape tensor to be used by all inserted reshape ops
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100510 new_shape_tens = create_const_tensor(op.name + "_reshape_shape", [1], DataType.int32, tens.shape)
Tim Hall79d07d22020-04-27 18:20:16 +0100511
512 for idx, out_tens in enumerate(op.outputs):
Tim Hall79d07d22020-04-27 18:20:16 +0100513 reshape_in = out_tens.clone("_reshaped")
Michael McGeagh6a8d4242020-07-28 12:17:59 +0100514 reshape_in.set_all_shapes(reshape_input_shape)
Tim Hall79d07d22020-04-27 18:20:16 +0100515 reshape_in.ops = [op]
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100516
Louis Verhaardaee5d752020-09-30 09:01:52 +0200517 reshape_op = Operation(Op.Reshape, "{}{}_reshape".format(op.name, idx))
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100518 reshape_op.attrs["new_shape"] = reshape_input_shape
Tim Hall79d07d22020-04-27 18:20:16 +0100519 reshape_op.inputs = [reshape_in, new_shape_tens]
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100520 reshape_op.set_output_tensor(out_tens)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000521 reshape_op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000522 DebugDatabase.add_optimised(op, reshape_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100523
524 op.outputs[idx] = reshape_in
Tim Hall79d07d22020-04-27 18:20:16 +0100525 return tens
526
527
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200528def add_padding_fields(op, arch, nng):
Jacob Bohlin90033f32020-08-28 15:45:44 +0200529 if op.run_on_npu:
530 if "padding" in op.attrs:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200531 if op.type.is_conv2d_op() or op.type.is_depthwise_conv2d_op():
Jacob Bohlin90033f32020-08-28 15:45:44 +0200532 kernel_size = op.inputs[1].shape[:2]
533 input_shape = op.inputs[0].shape
Louis Verhaardaee5d752020-09-30 09:01:52 +0200534 elif op.type.is_pool_op() or op.type.npu_block_type == NpuBlockType.ReduceSum:
Jacob Bohlin90033f32020-08-28 15:45:44 +0200535 kernel_size = op.attrs["ksize"][1:3]
536 input_shape = op.inputs[0].shape
Jacob Bohlin90033f32020-08-28 15:45:44 +0200537 else:
Michael McGeagh7a6f8432020-12-02 15:29:22 +0000538 raise UnsupportedFeatureError(f"Unknown operation that uses padding: {optype_to_builtintype(op.type)}")
Tim Hall79d07d22020-04-27 18:20:16 +0100539
Louis Verhaardaee5d752020-09-30 09:01:52 +0200540 if op.type == Op.Conv2DBackpropInputSwitchedBias:
Jacob Bohlin90033f32020-08-28 15:45:44 +0200541 upscaling_factor = op.outputs[0].shape[1] // input_shape[1]
542 padding, skirt = calc_upscaled_padding_and_skirt(
543 op.attrs["padding"], kernel_size, op.attrs["strides"], input_shape, upscaling_factor
544 )
545 else:
546 dilation_h, dilation_w = op.get_dilation_h_w()
547 dilated_kernel_size = [dilation_h * (kernel_size[0] - 1) + 1, dilation_w * (kernel_size[1] - 1) + 1]
548 padding, skirt = calc_padding_and_skirt(
Louis Verhaardae2d5532020-12-11 17:19:54 +0100549 op.attrs["padding"],
550 dilated_kernel_size,
551 op.attrs["strides"],
552 input_shape,
553 op.attrs.get("explicit_padding"),
Jacob Bohlin90033f32020-08-28 15:45:44 +0200554 )
Jacob Bohlincf7da102020-05-20 09:03:40 +0200555
Jacob Bohlin90033f32020-08-28 15:45:44 +0200556 op.attrs["explicit_padding"] = padding
557 op.attrs["skirt"] = skirt
Jacob Bohlincf7da102020-05-20 09:03:40 +0200558
Tim Hall79d07d22020-04-27 18:20:16 +0100559 return op
560
561
Tim Hall79d07d22020-04-27 18:20:16 +0100562# Check if the op can be reordered
563def get_prepend_op(op):
564 inp = op.inputs[0]
565 # The op should be reordered between prev_op and prep_op
566 prev_op = inp.ops[-1]
567 prep_op = None
568 while prev_op.type in memory_only_ops and len(prev_op.outputs) == 1 and len(prev_op.outputs[0].consumers()) == 1:
569 prep_op = prev_op
570 inp = prev_op.inputs[0]
571 prev_op = inp.ops[-1]
Diego Russoea6111a2020-04-14 18:41:58 +0100572 if prev_op is not None and len(prev_op.outputs) == 1 and len(prev_op.outputs[0].consumers()) == 1:
Tim Hall79d07d22020-04-27 18:20:16 +0100573 return prep_op
574
575 return None
576
577
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200578def convert_depthwise_to_conv(op, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +0100579 # Depthwise is equivalent to a single conv2d if the ifm depth is 1 and
580 # the ofm depth equals the depth multipler.
581 # If those conditions are true, then we can perform a simple
582 # switch of the operator type (and weight order)
583
Louis Verhaardaee5d752020-09-30 09:01:52 +0200584 if op.type == Op.DepthwiseConv2DBias and (op.attrs["depth_multiplier"] != 1):
Tim Hall79d07d22020-04-27 18:20:16 +0100585 ifm_tensor = op.inputs[0]
586 weight_tensor = op.inputs[1]
587 ofm_tensor = op.outputs[0]
588 if (ifm_tensor.shape[3] == 1) and (ofm_tensor.shape[3] == op.attrs["depth_multiplier"]):
589 # Change op type to Conv2d
Louis Verhaardaee5d752020-09-30 09:01:52 +0200590 op.type = Op.Conv2DBias
Tim Hall79d07d22020-04-27 18:20:16 +0100591 del op.attrs["channel_multiplier"]
592 del op.attrs["depth_multiplier"]
593
594 weight_tensor.quant_values = np.transpose(weight_tensor.quant_values, (0, 1, 3, 2))
Michael McGeagh6a8d4242020-07-28 12:17:59 +0100595 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
Tim Hall79d07d22020-04-27 18:20:16 +0100596 else:
Louis Verhaard7db78962020-05-25 15:05:26 +0200597 raise UnsupportedFeatureError(
Michael McGeagh7a6f8432020-12-02 15:29:22 +0000598 f"Unsupported 'DEPTHWISE_CONV_2D' with depth_multiplier = {op.attrs['depth_multiplier']},",
599 f" ifm channels = {ifm_tensor.shape[3]}, ofm channels = {ofm_tensor.shape[3]}",
Tim Hall79d07d22020-04-27 18:20:16 +0100600 )
Tim Halle6ccd872020-11-09 16:46:37 +0000601 DebugDatabase.add_optimised(op, op)
Tim Hall79d07d22020-04-27 18:20:16 +0100602 return op
603
604
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200605def reorder_depthwise_weights(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200606 if op.type.is_depthwise_conv2d_op():
Jacob Bohline843d332020-06-23 12:12:56 +0200607 weight_tensor = op.inputs[1]
608 weight_tensor.quant_values = np.transpose(weight_tensor.quant_values, (0, 1, 3, 2))
Michael McGeagh6a8d4242020-07-28 12:17:59 +0100609 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
Jacob Bohline843d332020-06-23 12:12:56 +0200610 weight_tensor.weight_transpose_depthwise = True
611
612 return op
613
614
Diqing Zhong016b8272020-12-16 16:46:06 +0100615def optimise_strided_conv(op, arch, nng):
616 stride_x, stride_y = op.get_kernel_stride()
617 ifm_tensor, _, weight_tensor, _ = op.get_ifm_ifm2_weights_ofm()
618
619 if (
620 op.type == Op.Conv2DBias
621 and op.op_index == 0
622 and stride_x == 2
623 and len(ifm_tensor.shape) == 4
624 and ifm_tensor.shape[3] <= 4
625 and ifm_tensor.shape[2] % 2 == 0
626 and weight_tensor is not None
627 and weight_tensor.shape[1] >= 2
628 ):
629 # IFM
630 ifm_reshaped = create_reshape_tensor(
631 ifm_tensor, [ifm_tensor.shape[0], ifm_tensor.shape[1], ifm_tensor.shape[2] // 2, ifm_tensor.shape[3] * 2]
632 )
633 op.set_input_tensor(ifm_reshaped, 0)
634
635 # Weights
636 weight_shape = weight_tensor.shape
637 if weight_shape[1] % 2 != 0:
638 weight_shape[1] = weight_shape[1] + 1
639 padded_array = np.zeros(weight_shape)
640 for i in range(weight_shape[0]):
641 padded_array[i] = np.vstack(
642 [
643 weight_tensor.quant_values[i],
644 np.full((1, weight_shape[2], weight_shape[3]), weight_tensor.quantization.zero_point),
645 ]
646 )
647 weight_tensor.quant_values = padded_array
648 weight_shape[1] //= 2
649 weight_shape[2] *= 2
650 weight_tensor.quant_values = np.reshape(weight_tensor.quant_values, weight_shape)
651 weight_tensor.set_all_shapes(weight_shape)
652 # If multiple copies of the weights are used, we could avoid
653 # them having the same address by changing the value_id
654 weight_tensor.value_id = uuid.uuid4()
655
656 # Strides
657 stride_x = 1
658 op.attrs.update({"stride_w": stride_x, "stride_h": stride_y, "strides": (1, stride_y, stride_x, 1)})
659
660 op.set_ifm_ofm_shapes()
661
662 return op
663
664
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200665def convert_conv_to_fc(op, arch, nng):
Michael McGeagh8d939c02020-07-29 13:11:43 +0100666 # Conv 1x1 can be equivalent to Fully Connected.
667 # By representing certain convs as fully connected layers, Vela can better determine wether or not to use
668 # caching/double buffering for the weights.
669 # (Weights dont need to be reloaded for convs when IFM H and W are 1)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200670 if op.type == Op.Conv2DBias:
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000671 h = op.ifm_shapes[0].height
672 w = op.ifm_shapes[0].width
Michael McGeagh8d939c02020-07-29 13:11:43 +0100673 kh, kw, _, _ = op.inputs[1].shape
674 if h == 1 and w == 1 and kh == 1 and kw == 1:
675 # Overwrite this op as a Fully Connected Op
676 op.name += "_fc"
Louis Verhaardaee5d752020-09-30 09:01:52 +0200677 op.type = Op.FullyConnected
Michael McGeagh8d939c02020-07-29 13:11:43 +0100678 op.attrs = {
Michael McGeagh8d939c02020-07-29 13:11:43 +0100679 "weights_format": 0,
Michael McGeagh8d939c02020-07-29 13:11:43 +0100680 }
681 # Reshape Weights to be 2D. HWIO becomes just IO (as H and W are 1, they can just be dropped)
682 weight_tensor = op.inputs[1]
683 weight_tensor.quant_values = weight_tensor.quant_values.squeeze(axis=(0, 1))
684 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100685
Michael McGeagh8d939c02020-07-29 13:11:43 +0100686 # The output from a fully connected is expected to be 2D so we need to add a reshape layer to convert it
687 # back to 4D afterwards as the next layer is expecting that shape
688 orig_ofm_tensor = op.outputs[0]
689 # Reshape this ops output to be 2D: {(N*H*W), C} (We know N H and W are all 1 so this becomes {1, C})
690 fc_ofm_tensor = orig_ofm_tensor.clone("_fc")
691 fc_ofm_tensor.set_all_shapes([1, fc_ofm_tensor.shape[-1]])
692 fc_ofm_tensor.ops = [op]
693 # Add a reshape after the new OFM to convert it back to the original 4D shape
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100694 reshape_name = op.name + "_reshape"
695 new_shape_tens = create_const_tensor(reshape_name + "_shape", [1], DataType.int32, orig_ofm_tensor.shape)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200696 reshape_op = Operation(Op.Reshape, reshape_name)
Michael McGeagh8d939c02020-07-29 13:11:43 +0100697 reshape_op.attrs["new_shape"] = orig_ofm_tensor.shape
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100698 reshape_op.inputs = [fc_ofm_tensor, new_shape_tens]
699 reshape_op.set_output_tensor(orig_ofm_tensor)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000700 reshape_op.set_ifm_ofm_shapes()
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100701
Michael McGeagh8d939c02020-07-29 13:11:43 +0100702 # Replace this ops OFM to point to the 2D tensor
703 op.outputs[0] = fc_ofm_tensor
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000704 op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000705 # Record optimisation in debug database
706 DebugDatabase.add_optimised(op, reshape_op)
707 DebugDatabase.add_optimised(op, op)
Michael McGeagh8d939c02020-07-29 13:11:43 +0100708 return op
709
710
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200711def fixup_relus_with_differing_ifm_ofm_scaling(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200712 if op.run_on_npu and op.type.is_relu_op():
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100713 ifm = op.inputs[0]
714 ofm = op.outputs[0]
715 # Relu with differing IFM and OFM scaling cannot be fused with another primary op
716 # and requires its own to be inserted
Tim Hall93582962020-09-09 21:58:15 +0100717 if not check_quantized_tens_scaling_equal(ifm, ofm):
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100718 # Override this op with its own primary op (avgpool)
719 relu_fused_op = create_avgpool_nop(op.name + "_avgpool")
720 # And fuse the original activation function to it
Louis Verhaarde8a5a782020-11-02 18:04:27 +0100721 relu_fused_op.activation = create_activation_function(op.type)
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100722 # Tidy up and assign the ifm and ofm to the new op
723 ifm.consumer_list.remove(op)
Andreas Nevalainenf3d737e2020-09-25 14:12:43 +0200724
725 # if not 4d, reshape ifm/ofm
726 if len(ifm.shape) < 4:
727 ifm_shaped = create_reshape_tensor(ifm, full_shape(4, ifm.shape, 1))
728 ifm = ifm_shaped
729 if len(ofm.shape) < 4:
730 ofm_shaped = create_reshape_tensor(ofm, full_shape(4, ofm.shape, 1), False)
731 ofm = ofm_shaped
732
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100733 relu_fused_op.add_input_tensor(ifm)
734 relu_fused_op.set_output_tensor(ofm)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000735 relu_fused_op.set_ifm_ofm_shapes()
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100736 op = relu_fused_op
737 return op
738
739
Tim Hall79d07d22020-04-27 18:20:16 +0100740# Reorder activation op if it's after the memory only operations
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200741def fixup_act_reorder(op, arch, nng):
Michael McGeaghf3e3ad72020-12-02 12:39:03 +0000742 if op.type.is_relu_op() or op.type in (Op.Sigmoid, Op.Tanh):
Tim Hall79d07d22020-04-27 18:20:16 +0100743 prep_op = get_prepend_op(op)
Diego Russoea6111a2020-04-14 18:41:58 +0100744 if prep_op is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100745 act_op = op.clone("_reordered")
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100746 act_op.ifm_shapes = list(op.ifm_shapes)
747 act_op.ofm_shapes = list(op.ofm_shapes)
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200748
749 # There is only one input tensor, overwrite it
750 act_op.set_input_tensor(prep_op.inputs[0], 0)
751
Tim Hall79d07d22020-04-27 18:20:16 +0100752 act_op_out = act_op.inputs[0].clone("_acted")
753 act_op_out.quantization = op.outputs[0].quantization.clone()
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100754 act_op.set_output_tensor(act_op_out)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000755 act_op.ifm_shapes[0] = Shape4D(prep_op.inputs[0].shape)
756 act_op.ofm_shapes[0] = Shape4D(act_op_out.shape)
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200757
758 # Update the consumer list
759 act_op_out.consumer_list = op.outputs[0].consumer_list.copy()
760 act_op_out.consumer_list.append(prep_op)
761
Tim Hall79d07d22020-04-27 18:20:16 +0100762 prep_op.inputs[0] = act_op_out
763 prep_op.outputs[0].quantization = act_op_out.quantization.clone()
764
765 # Mark the op so that it will be removed as passthrough later on
Louis Verhaardaee5d752020-09-30 09:01:52 +0200766 op.type = Op.Identity
Tim Halle6ccd872020-11-09 16:46:37 +0000767
768 # Record optimisation in debug database
769 DebugDatabase.add_optimised(op, act_op)
770 DebugDatabase.add_optimised(op, op)
Tim Hall79d07d22020-04-27 18:20:16 +0100771 return op
772
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200773
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200774def fixup_elementwise_with_scalars(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200775 if op.type.is_binary_elementwise_op():
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200776 ifm_tensor, ifm2_tensor, _, _ = op.get_ifm_ifm2_weights_ofm()
Charles Xu78792222020-05-13 10:15:26 +0200777 if ifm2_tensor.shape != [] and ifm_tensor.shape != []:
778 diff = len(ifm_tensor.shape) - len(ifm2_tensor.shape)
779 if diff > 0:
780 ifm2_tensor.shape = full_shape(len(ifm_tensor.shape), ifm2_tensor.shape, 1)
781 elif diff < 0:
782 ifm_tensor.shape = full_shape(len(ifm2_tensor.shape), ifm_tensor.shape, 1)
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200783 elif ifm_tensor.shape == [] and ifm_tensor.quant_values is None:
784 # IFM is marked as a scalar, but is a result of an operation; change it to a shape of size 1
785 ifm_tensor.shape = len(ifm2_tensor.shape) * [1]
786 ifm_tensor.storage_shape = ifm_tensor.shape
787 elif ifm2_tensor.shape == [] and ifm2_tensor.quant_values is None:
788 # IFM2 is marked as a scalar, but is a result of an operation; change it to a shape of size 1
789 ifm2_tensor.shape = len(ifm_tensor.shape) * [1]
790 ifm2_tensor.storage_shape = ifm2_tensor.shape
Charles Xu78792222020-05-13 10:15:26 +0200791 return op
Tim Hall79d07d22020-04-27 18:20:16 +0100792
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200793
Tim Hall4e127762020-05-15 16:05:49 +0100794# Set input/output tensor equivalence to the same id for memory operations
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200795def set_tensor_equivalence(op, arch, nng):
Michael McGeagh11b0bdb2020-09-08 11:07:35 +0100796 if op.type in memory_only_ops:
Tim Hall4e127762020-05-15 16:05:49 +0100797 eid = op.outputs[0].equivalence_id
798 for inp in op.inputs:
799 inp.equivalence_id = eid
800 return op
801
802
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100803def set_ifm_ofm_op_shapes(op, arch, nng):
804 if op.run_on_npu and op.type.needs_shapes():
805 if op.ifm_shapes or op.ofm_shapes:
806 # Shapes already set
807 return op
808 op.set_ifm_ofm_shapes()
809 return op
810
811
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200812def convert_softmax(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200813 if op.type == Op.Softmax and op.run_on_npu:
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200814 softmax = SoftMax(op)
815 op = softmax.get_graph()
816 return op
817
818
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200819def convert_mul_max_to_abs_or_lrelu(op, arch, nng):
Diego Russoea6111a2020-04-14 18:41:58 +0100820 r"""Whenever there is a subgraph with this topology:
Tim Hall79d07d22020-04-27 18:20:16 +0100821
822 Input X For X = -1 or X > 0
823 | \ / This subgraph can be replaced with either
824 | Mul an Abs (if X = -1) or a LeakyReLU (if X > 0)
825 | /
826 Max
827 """
828
Louis Verhaardaee5d752020-09-30 09:01:52 +0200829 if op.type == Op.Maximum:
Tim Hall79d07d22020-04-27 18:20:16 +0100830 # finds the Mul input(s) to the Max
Louis Verhaardaee5d752020-09-30 09:01:52 +0200831 muls = [i for i in op.inputs if i.ops[0].type == Op.Mul]
Tim Hall79d07d22020-04-27 18:20:16 +0100832 if len(muls) == 1:
833 mul = muls[0].ops[0]
834 elif len(muls) == 2:
835 # In the case both inputs are Muls, find the one with the same input as the Max
836 mul = [m for m in muls if len(set(op.inputs + m.ops[0].inputs)) == 1][0].ops[0]
837 else:
838 # No Mul inputs
839 return op
840
841 # make sure the Mul doesn't have any other consumers
Louis Verhaardd7911c42020-08-25 13:36:41 +0200842 mul_ofm = mul.outputs[0]
843 if len(mul_ofm.consumers()) != 1:
Tim Hall79d07d22020-04-27 18:20:16 +0100844 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +0200845 # make sure the Mul doesn't have a fused activation function
846 if mul.activation:
Tim Hall79d07d22020-04-27 18:20:16 +0100847 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +0200848 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +0100849 if ifm is None or ofm is None:
850 return op
851
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200852 if ifm.dtype not in (DataType.uint8, DataType.int8) or ifm.dtype != ofm.dtype:
853 return op
Tim Hall93582962020-09-09 21:58:15 +0100854 if not check_quantized_tens_scaling_equal(ifm, ofm) or not check_quantized_tens_scaling_equal(ifm, mul_ofm):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200855 # rewrite to LeakyRelu currently only makes sense if the quantization is identical
856 return op
Tim Hall79d07d22020-04-27 18:20:16 +0100857
858 # finds the branched input that goes to both the Max and the Mul
859 shared = set(op.inputs) & set(mul.inputs)
860 if len(shared) == 1:
861 shared_in = shared.pop()
862 # find the constant scalar input to the Mul
863 const_tens = (set(mul.inputs) - {shared_in}).pop()
864 # check that it is a scalar
865 if const_tens.shape != []:
866 return op
867 const = const_tens.ops[0]
868 # check that it is a constant
Louis Verhaardaee5d752020-09-30 09:01:52 +0200869 if const.type != Op.Const:
Tim Hall79d07d22020-04-27 18:20:16 +0100870 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200871 # Remove the Mul from the shared input's consumers
872 shared_in.consumer_list.remove(mul)
Tim Hall79d07d22020-04-27 18:20:16 +0100873 else:
874 return op
875
876 val = const.outputs[0].values
877 if val >= 0:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200878 new_op = Op.LeakyRelu
Tim Hall79d07d22020-04-27 18:20:16 +0100879 op.attrs["alpha"] = val
Louis Verhaardd7911c42020-08-25 13:36:41 +0200880 # to produce bit exact results, the alpha is not enough;
881 # save additional scaling info in attr "alpha_scale", to be used as input
882 # to the LUT construction
883 alpha_scalar = const_tens.quant_values - const_tens.quantization.zero_point
884 mul_ifm_scale = np.double(ifm.quantization.scale_f32)
885 mul_ifm2_scale = np.double(const_tens.quantization.scale_f32)
886 mul_ofm_scale = np.double(mul_ofm.quantization.scale_f32)
887 alpha_scale, alpha_shift = scaling.elementwise_mul_scale(mul_ifm_scale, mul_ifm2_scale, mul_ofm_scale)
888 op.attrs["alpha_scaling"] = (alpha_scalar, alpha_scale, alpha_shift)
Tim Hall79d07d22020-04-27 18:20:16 +0100889 elif val == -1:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200890 new_op = Op.Abs
Tim Hall79d07d22020-04-27 18:20:16 +0100891 else:
892 return op
893
Louis Verhaardaee5d752020-09-30 09:01:52 +0200894 op.type = new_op
895 op.name = op.name.replace("Maximum", new_op.name)
896 op.outputs[0].name = op.outputs[0].name.replace("Maximum", new_op.name)
Tim Hall79d07d22020-04-27 18:20:16 +0100897 op.inputs = [shared_in]
Patrik Gustavssonc509d332020-12-22 13:53:52 +0100898 op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000899
900 # Record optimisation in debug database
901 DebugDatabase.add_optimised(op, op)
902
Tim Hall79d07d22020-04-27 18:20:16 +0100903 return op
904
905
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200906def convert_lrelu_to_mul_max(op, arch):
907 # Converts LeakyRelu to Max(alpha * IFM, identity * IFM)
908 # (the opposite of convert_mul_max_to_abs_or_lrelu)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200909 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +0100910 if ifm is None or ofm is None:
911 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200912
913 # Add multiplication with alpha
Louis Verhaardaee5d752020-09-30 09:01:52 +0200914 mul_alpha = Operation(Op.Mul, op.name + "_mul_alpha")
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200915 mul_alpha.add_input_tensor(ifm)
916 # Create const tensor containing alpha as scalar
917 alpha = op.attrs["alpha"]
918 quantization = ifm.quantization.clone()
919 quantization.min = 0
920 quantization.max = alpha * (quantization.quant_max - quantization.quant_min)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200921 quantization.zero_point = 0
Louis Verhaardece4e652021-01-07 13:35:47 +0100922 if np.isinf(1 / np.float32(alpha)):
923 # Handling of alpha near zero
924 quantization.scale_f32 = 1
925 scalar = 0
926 else:
927 quantization.scale_f32 = alpha
928 scalar = 1
929 alpha_tens = create_const_tensor(
930 op.name + "_alpha_scalar", [], ifm.dtype, [scalar], np.int8, quantization=quantization
931 )
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200932 mul_alpha.add_input_tensor(alpha_tens)
933 fm_alpha = ofm.clone(op.name + "_alpha")
934 mul_alpha.set_output_tensor(fm_alpha)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000935 mul_alpha.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000936 DebugDatabase.add_optimised(op, mul_alpha)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200937
Tim Hall93582962020-09-09 21:58:15 +0100938 if check_quantized_tens_scaling_equal(ifm, ofm):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200939 # No identity multiplication is needed
940 fm_id = ifm
941 else:
942 # Add multiplication with identity
Louis Verhaardaee5d752020-09-30 09:01:52 +0200943 mul_identity = Operation(Op.Mul, op.name + "_mul_identity")
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200944 mul_identity.add_input_tensor(ifm)
945 # Create const tensor containing identity as scalar
946 quantization = ifm.quantization.clone()
947 quantization.min = 0
948 quantization.max = quantization.quant_max - quantization.quant_min
949 quantization.scale_f32 = 1
950 quantization.zero_point = 0
951 identity_tens = create_const_tensor(
952 op.name + "_id_scalar", [], ifm.dtype, [1], np.uint8, quantization=quantization
953 )
954 mul_identity.add_input_tensor(identity_tens)
Louis Verhaardece4e652021-01-07 13:35:47 +0100955 # Make sure that fm_id is allocated to a different address than fm_alpha
956 fm_id = ofm.clone(op.name + "_id", set_unique=True)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200957 mul_identity.set_output_tensor(fm_id)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000958 mul_identity.set_ifm_ofm_shapes()
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100959 DebugDatabase.add_optimised(op, mul_identity)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200960
961 # Convert LeakyRelu to Max, add the results of the multiplication(s) as inputs
Louis Verhaardaee5d752020-09-30 09:01:52 +0200962 op.type = Op.Maximum
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200963 op.name = op.name.replace("LeakyRelu", "Maximum")
964 op.inputs = []
965 ifm.consumer_list.remove(op)
966 op.add_input_tensor(fm_alpha)
967 op.add_input_tensor(fm_id)
Patrik Gustavssonc509d332020-12-22 13:53:52 +0100968 op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000969
970 DebugDatabase.add_optimised(op, op)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200971 return op
972
973
Louis Verhaard2e186c72020-10-09 10:47:04 +0200974def convert_to_lut(op, lut_values, lut_name):
Louis Verhaardf03bad32020-09-25 08:30:44 +0200975 # Rewrite the operation by Add with scalar 0 + LUT activation
976 ifm = op.inputs[0]
Tim Hall93582962020-09-09 21:58:15 +0100977 if ifm is None:
978 return op
Louis Verhaard58520b92020-08-24 16:45:38 +0200979 assert ifm.dtype.size_in_bytes() == 1
Louis Verhaardaee5d752020-09-30 09:01:52 +0200980 op.type = Op.Add
Louis Verhaard2e186c72020-10-09 10:47:04 +0200981 op.name = op.name + "_lut_" + lut_name
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200982 # Mark as no-op to enable potential fusing optimizations
983 op.attrs["is_nop"] = True
984 # Create an input tensor containing scalar zero
985 quantization = QuantizationParameters(0.0, 255.0)
Louis Verhaardd7911c42020-08-25 13:36:41 +0200986 quantization.scale_f32 = ifm.quantization.scale_f32
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200987 quantization.zero_point = 0
Louis Verhaard2e186c72020-10-09 10:47:04 +0200988 tens = create_const_tensor(op.inputs[0].name + "_scalar0", [], ifm.dtype, [0], np.uint8, quantization=quantization)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200989 op.add_input_tensor(tens)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000990 op.ifm_shapes.append(Shape4D(tens.shape))
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100991
Louis Verhaardf03bad32020-09-25 08:30:44 +0200992 # The LUT must be applied without any preceding rescaling (the LUT itself performs the rescale),
993 # so even if the OFM has a different scale than the IFM, the generated OFM scale instructions
994 # should be the same as the IFM
Louis Verhaardaee5d752020-09-30 09:01:52 +0200995 op.forced_output_quantization = ifm.quantization
Louis Verhaard2e186c72020-10-09 10:47:04 +0200996 lut_tensor = lut.create_lut_tensor(op.name + "_values", lut_values, DataType.int8)
Louis Verhaardf03bad32020-09-25 08:30:44 +0200997 op.set_activation_lut(lut_tensor)
Patrik Gustavssonc509d332020-12-22 13:53:52 +0100998 op.set_ifm_ofm_shapes()
Louis Verhaardf03bad32020-09-25 08:30:44 +0200999 return op
1000
1001
Louis Verhaard2e186c72020-10-09 10:47:04 +02001002def convert_to_lut8(op, fn, fn_name):
Louis Verhaardf03bad32020-09-25 08:30:44 +02001003 # Converts op to a no-op + int8/uint8 LUT which is generated with the given function.
1004 # fn is a function(real) -> real
Louis Verhaardaee5d752020-09-30 09:01:52 +02001005 ifm, ofm = op.get_ifm_ofm()
Louis Verhaardf03bad32020-09-25 08:30:44 +02001006 if ifm.dtype not in (DataType.uint8, DataType.int8) or ifm.dtype != ofm.dtype:
1007 return op
1008 # Generate the LUT
1009 ifm_scale = np.double(ifm.quantization.scale_f32)
1010 ofm_scale = np.double(ofm.quantization.scale_f32)
1011 zp_in = ifm.quantization.zero_point
1012 zp_out = ofm.quantization.zero_point
1013 values = []
1014 ix = range(256) if ifm.dtype == DataType.uint8 else range(-128, 128)
1015 quantized_min = min(ix)
1016 quantized_max = max(ix)
1017 for x in ix:
1018 x_real = ifm_scale * (x - zp_in)
1019 y_real = fn(x_real)
1020 lut_result = round_away_zero(zp_out + y_real / ofm_scale)
1021 lut_result = min(quantized_max, max(quantized_min, lut_result))
1022 values.append(lut_result)
Louis Verhaard2e186c72020-10-09 10:47:04 +02001023 return convert_to_lut(op, values, fn_name)
Louis Verhaardf03bad32020-09-25 08:30:44 +02001024
1025
1026def convert_lrelu_to_lut(op, arch):
Louis Verhaardaee5d752020-09-30 09:01:52 +02001027 ifm, ofm = op.get_ifm_ofm()
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001028 # Generate the LUT
Louis Verhaardd7911c42020-08-25 13:36:41 +02001029 alpha = op.attrs["alpha"]
1030 ifm_scale = np.double(ifm.quantization.scale_f32)
1031 ofm_scale = np.double(ofm.quantization.scale_f32)
1032 zp_in = ifm.quantization.zero_point
1033 zp_out = ofm.quantization.zero_point
1034 identity_scale, identity_shift = scaling.elementwise_mul_scale(ifm_scale, 1, ofm_scale)
1035 alpha_scalar = 1
1036 alpha_scale, alpha_shift = scaling.elementwise_mul_scale(ifm_scale, alpha, ofm_scale)
1037 if "alpha_scaling" in op.attrs:
1038 # The LeakyRelu was the result from convert_mul_max_to_abs_or_lrelu
1039 alpha_scalar, alpha_scale, alpha_shift = op.attrs["alpha_scaling"]
1040 values = []
Louis Verhaard58520b92020-08-24 16:45:38 +02001041 ix = range(256) if ifm.dtype == DataType.uint8 else range(-128, 128)
Louis Verhaardd7911c42020-08-25 13:36:41 +02001042 quantized_min = min(ix)
1043 quantized_max = max(ix)
1044 for x in ix:
1045 if x < zp_in:
1046 lut_result = zp_out + fp_math.multiply_by_quantized_multiplier(
1047 alpha_scalar * (x - zp_in), alpha_scale, alpha_shift
1048 )
1049 else:
1050 lut_result = zp_out + fp_math.multiply_by_quantized_multiplier(x - zp_in, identity_scale, identity_shift)
1051 lut_result = min(quantized_max, max(quantized_min, lut_result))
1052 values.append(lut_result)
Louis Verhaard2e186c72020-10-09 10:47:04 +02001053 return convert_to_lut(op, values, "lrelu")
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001054
1055
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001056def convert_lrelu(op, arch, nng):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001057 # Converts LeakyRelu to a LUT based solution if possible, otherwise a mul + max
Louis Verhaardaee5d752020-09-30 09:01:52 +02001058 if op.type != Op.LeakyRelu:
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001059 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001060 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +01001061 if ifm is None or ofm is None:
1062 return op
Louis Verhaardd7911c42020-08-25 13:36:41 +02001063 if ifm.dtype in (DataType.uint8, DataType.int8) and ifm.dtype == ofm.dtype:
1064 # use LUT for int8/uint8
1065 return convert_lrelu_to_lut(op, arch)
Tim Hall93582962020-09-09 21:58:15 +01001066 if check_quantized_tens_scaling_equal(ifm, ofm) and ifm.dtype == ofm.dtype == DataType.int16:
Louis Verhaardd7911c42020-08-25 13:36:41 +02001067 # use LeakyRelu unmodified for int16 with equal input/output scaling
1068 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001069 return convert_lrelu_to_mul_max(op, arch)
1070
1071
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001072def convert_tanh_sigmoid_to_lut(op, arch, nng):
Louis Verhaardf03bad32020-09-25 08:30:44 +02001073 # Converts int8/uint8 Sigmoid and Tanh to a LUT based solution
Louis Verhaardaee5d752020-09-30 09:01:52 +02001074 if op.type == Op.Sigmoid:
Louis Verhaard2e186c72020-10-09 10:47:04 +02001075 return convert_to_lut8(op, clamp_sigmoid, "sigmoid")
Louis Verhaardaee5d752020-09-30 09:01:52 +02001076 elif op.type == Op.Tanh:
Louis Verhaard2e186c72020-10-09 10:47:04 +02001077 return convert_to_lut8(op, math.tanh, "tanh")
Louis Verhaardf03bad32020-09-25 08:30:44 +02001078 return op
1079
1080
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001081def remove_unwanted_reshapes(op, arch, nng):
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001082 # Try to remove reshapes enclosing ElementWise operator with only one non-constant input
Louis Verhaardaee5d752020-09-30 09:01:52 +02001083 if not op.run_on_npu or not op.type.is_elementwise_op():
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001084 return op
1085
1086 # Check if the ElementWise operator only have one non-constant input
Louis Verhaardaee5d752020-09-30 09:01:52 +02001087 non_const_tens = [x for x in op.inputs if x.ops[0].type != Op.Const]
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001088 if len(non_const_tens) != 1:
1089 return op
1090 ifm = non_const_tens[0]
1091
1092 # Check if operation is enclosed by Reshapes that can be removed
1093 ofm = op.outputs[0]
1094 prev_op = ifm.ops[0]
1095 if (
1096 len(ifm.consumer_list) == 1
Louis Verhaardaee5d752020-09-30 09:01:52 +02001097 and prev_op.type == Op.Reshape
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001098 and len(ofm.consumer_list) == 1
Louis Verhaardaee5d752020-09-30 09:01:52 +02001099 and ofm.consumer_list[0].type == Op.Reshape
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001100 ):
1101 # Operation is enclosed by reshapes, check if they can be removed
Louis Verhaardaee5d752020-09-30 09:01:52 +02001102 prev_op_ifm, prev_op_ofm = prev_op.get_ifm_ofm()
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001103 cons_op = ofm.consumer_list[0]
1104 cons_op_ifm = ofm
1105 cons_op_ofm = cons_op.outputs[0]
1106 if len(prev_op_ifm.shape) == len(cons_op_ofm.shape):
1107 # Check if quantization is the same in the input and output for the reshape ops
Tim Hall93582962020-09-09 21:58:15 +01001108 if check_quantized_tens_scaling_equal(prev_op_ifm, prev_op_ofm) and check_quantized_tens_scaling_equal(
1109 cons_op_ifm, cons_op_ofm
1110 ):
Patrik Gustavsson7ad862a2020-09-29 14:09:43 +02001111 op.set_input_tensor(prev_op_ifm, 0)
1112 op.set_output_tensor(cons_op_ofm)
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001113 return op
1114
1115
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001116def fuse_activation_function_with_prev(op, arch, nng):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001117 # if op is a no-op: attempts to move the activation function to the preceding op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001118 if not op.attrs.get("is_nop", False) or op.activation is None:
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001119 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001120 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +01001121 if ifm is None or ofm is None:
1122 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001123 # finds the input(s) to the operation
1124 prev_op = ifm.ops[0]
1125 # Note: the below checks on prev_op require that a first optimize pass on the full graph has been performed
1126 fuse = (
1127 prev_op.run_on_npu
Louis Verhaardaee5d752020-09-30 09:01:52 +02001128 and prev_op.type.npu_block_type != NpuBlockType.Default
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001129 and len(ifm.ops) == 1
1130 and len(prev_op.outputs[0].consumers()) == 1
Louis Verhaardaee5d752020-09-30 09:01:52 +02001131 and prev_op.activation is None
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001132 )
1133 if op.activation_lut is not None and arch.shram_reserved_unused_banks == 0:
1134 # TODO: if SHRAM LUT space is shared with SHRAM ACC (32, 64 MAC),
1135 # LUT currently only works correctly for elementwise ops
1136 fuse = False
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001137 if not fuse:
1138 return op
1139 # Move the fused activation function + corresponding info to prev_op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001140 prev_op.activation = op.activation
1141 prev_op.forced_output_quantization = op.forced_output_quantization
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001142 if op.activation_lut is not None:
1143 prev_op.set_activation_lut(op.activation_lut)
1144 # Bypass op
Louis Verhaard98a34992020-09-01 10:39:04 +02001145 prev_op.set_output_tensor(ofm)
Tim Halle6ccd872020-11-09 16:46:37 +00001146 DebugDatabase.add_optimised(op, prev_op)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001147 return op
1148
1149
Louis Verhaardae2d5532020-12-11 17:19:54 +01001150def optimise_pad(op, arch, nng):
1151 """
1152 Converts tens1 -> PAD -> tens2 -> CONV to tens1 -> CONV
1153 if both operations can be run on the NPU.
1154 """
1155 if (
1156 (op.type.is_conv2d_op() or op.type.is_depthwise_conv2d_op())
1157 and op.run_on_npu
1158 and op.attrs["padding"] == Padding.VALID
1159 ):
1160 pad_op = op.ifm.ops[0]
1161 if pad_op.type != Op.Pad or not pad_op.run_on_npu:
1162 return op
1163 # Bypass the PAD operator
1164 op.set_input_tensor(pad_op.ifm, 0)
1165 # Adjust the padding attributes of the convolution operator
1166 op.attrs["padding"] = Padding.EXPLICIT
1167 padding = pad_op.inputs[1].values # 4x2 tensor, first dimension is N, H, W, C
1168 top, left, bottom, right = (padding[1][0], padding[2][0], padding[1][1], padding[2][1])
1169 op.attrs["explicit_padding"] = (top, left, bottom, right)
1170 op.set_ifm_ofm_shapes()
1171 return op
1172
1173
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001174def add_attrs_to_resizebilinear(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +02001175 if op.type == Op.ResizeBilinear and op.run_on_npu:
Dwight Lidman42fed942020-05-29 09:37:03 +02001176 input_tensor = op.inputs[0]
1177 upscaled_shape = [input_tensor.shape[1] * 2, input_tensor.shape[2] * 2]
1178 out_shape = op.outputs[0].shape[1:3]
1179 if not op.attrs["align_corners"] and out_shape == upscaled_shape:
1180 # this means the output is supposed to be a x2 upscale,
1181 # so we need to do SAME padding
Michael McGeagh16895482020-12-14 15:51:20 +00001182 op.attrs["padding"] = Padding.SAME
Dwight Lidman42fed942020-05-29 09:37:03 +02001183 elif op.attrs["align_corners"] and out_shape == [upscaled_shape[0] - 1, upscaled_shape[1] - 1]:
1184 # here we can just run the avg pool without padding and
1185 # produce a (M * 2 - 1, N * 2 - 1) sized output
Michael McGeagh16895482020-12-14 15:51:20 +00001186 op.attrs["padding"] = Padding.VALID
Dwight Lidman42fed942020-05-29 09:37:03 +02001187 else:
Charles Xu9a03fdf2020-07-02 15:12:40 +02001188 return op
Dwight Lidman42fed942020-05-29 09:37:03 +02001189 input_tensor.resampling_mode = resampling_mode.NEAREST
Tim Hallc30f4952020-06-15 20:47:35 +01001190 op.attrs.update({"strides": (1, 1, 1, 1), "ksize": (1, 2, 2, 1)})
Dwight Lidman42fed942020-05-29 09:37:03 +02001191 return op
1192
1193
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001194def fixup_bias_tensors(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +02001195 if op.type.needs_bias() and op.bias is None:
Jacob Bohlina41cd4d2020-08-26 18:21:28 +02001196 # Op has no bias, add bias tensor filled with zeros
1197 nr_biases = op.inputs[1].shape[-1]
1198 bias_values = [0] * nr_biases
1199 bias_tensor = create_const_tensor(op.name + "_bias", [nr_biases], DataType.int32, bias_values)
1200 bias_tensor.quant_values = bias_tensor.values
1201 op.set_input_tensor(bias_tensor, -1)
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +02001202
1203 return op
1204
1205
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001206def supported_operator_check(op, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +01001207 op.run_on_npu = arch.supported_operators.is_operator_supported(op)
1208 return op
1209
1210
Tim Halle6ccd872020-11-09 16:46:37 +00001211def _record_optimised(op, arch):
1212 if op.type != Op.Const:
1213 DebugDatabase.add_optimised(op, op)
1214
1215
Tim Hall79d07d22020-04-27 18:20:16 +01001216def optimise_graph_a(nng, arch, verbose_graph=False):
1217 if verbose_graph:
1218 nng.print_graph()
1219
Patrik Gustavsson2349d422020-12-01 16:02:29 +01001220 pre_process_list = [
1221 supported_operator_check,
1222 set_ifm_ofm_op_shapes,
1223 # TODO: memory-only Op removal
1224 ]
1225
1226 for idx, sg in enumerate(nng.subgraphs):
1227 # rewrite graph pass
1228 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
1229 nng, sg, arch, [], pre_process_list, rewrite_unsupported=False,
1230 )
1231
Tim Hall79d07d22020-04-27 18:20:16 +01001232 op_rewrite_list = [
Tim Hall4e127762020-05-15 16:05:49 +01001233 set_tensor_equivalence,
Tim Hall79d07d22020-04-27 18:20:16 +01001234 convert_depthwise_to_conv,
Michael McGeagh8d939c02020-07-29 13:11:43 +01001235 convert_conv_to_fc,
Fredrik Svedberga0c36242020-06-03 15:43:31 +02001236 convert_softmax,
Diqing Zhong016b8272020-12-16 16:46:06 +01001237 optimise_strided_conv,
Tim Hall79d07d22020-04-27 18:20:16 +01001238 fixup_fully_connected_input,
Diqing Zhong94457b12020-12-09 15:22:40 +01001239 convert_batched_fc_shape,
Tim Hall79d07d22020-04-27 18:20:16 +01001240 fixup_pack_input,
Fredrik Svedberg0f98b362020-09-29 10:00:39 +02001241 unfuse_activation_function,
Tim Hall79d07d22020-04-27 18:20:16 +01001242 fixup_conv2d_backprop,
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +01001243 fixup_relus_with_differing_ifm_ofm_scaling,
Tim Hall79d07d22020-04-27 18:20:16 +01001244 fixup_act_reorder,
Charles Xu78792222020-05-13 10:15:26 +02001245 fixup_elementwise_with_scalars,
Jacob Bohline843d332020-06-23 12:12:56 +02001246 reorder_depthwise_weights,
Charles Xu9a03fdf2020-07-02 15:12:40 +02001247 fixup_resizebilinear,
Jacob Bohlina41cd4d2020-08-26 18:21:28 +02001248 fixup_bias_tensors,
Dwight Lidmanc3862c22020-09-14 15:22:33 +02001249 convert_nop_split_to_identity,
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001250 convert_mul_max_to_abs_or_lrelu,
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001251 remove_unwanted_reshapes,
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001252 convert_lrelu,
Louis Verhaardf03bad32020-09-25 08:30:44 +02001253 convert_tanh_sigmoid_to_lut,
Tim Hall79d07d22020-04-27 18:20:16 +01001254 ]
1255
1256 for idx, sg in enumerate(nng.subgraphs):
1257 # rewrite graph pass
1258 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
Dwight Lidman73320a42020-11-05 10:34:41 +01001259 nng, sg, arch, [], op_rewrite_list, rewrite_unsupported=False,
Tim Hall79d07d22020-04-27 18:20:16 +01001260 )
1261
1262 for idx, sg in enumerate(nng.subgraphs):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001263 # remove passthrough tensors and attempt further optimizations
1264 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
Louis Verhaardae2d5532020-12-11 17:19:54 +01001265 nng,
1266 sg,
1267 arch,
1268 [remove_passthrough_tensor],
1269 [fuse_activation_function_with_prev, optimise_pad, add_padding_fields],
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001270 )
Tim Hall79d07d22020-04-27 18:20:16 +01001271
Tim Halle6ccd872020-11-09 16:46:37 +00001272 # Post-optimisation operator debug tracing
1273 for sg in nng.subgraphs:
1274 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [_record_optimised])
1275
Tim Hall79d07d22020-04-27 18:20:16 +01001276 if verbose_graph:
1277 nng.print_graph()
1278 return nng
1279
Diego Russoea6111a2020-04-14 18:41:58 +01001280
Tim Hall79d07d22020-04-27 18:20:16 +01001281def optimise_graph_b(nng, arch, verbose_graph=False):
1282 if verbose_graph:
1283 nng.print_graph()
1284
1285 for idx, sg in enumerate(nng.subgraphs):
1286 # combined rewrite graph pass
Dwight Lidmanc6ac1942020-10-02 14:55:45 +02001287 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
patrik.gustavssoneeb85152020-12-21 17:10:40 +00001288 nng, sg, arch, [fixup_unpack_output, fixup_stridedslice_output, rewrite_concat, rewrite_split], [],
Dwight Lidmanc6ac1942020-10-02 14:55:45 +02001289 )
Tim Hall79d07d22020-04-27 18:20:16 +01001290
1291 if verbose_graph:
1292 nng.print_graph()
1293 return nng