blob: dd540a792ca176400f08865a71ee800d1cb073d3 [file] [log] [blame]
Louis Verhaardebf4af62021-01-27 15:57:57 +01001# Copyright (C) 2020-2021 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# 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
Louis Verhaardebf4af62021-01-27 15:57:57 +010021from typing import Tuple
Diego Russoea6111a2020-04-14 18:41:58 +010022
23import numpy as np
24
Louis Verhaardd7911c42020-08-25 13:36:41 +020025from . import fp_math
Louis Verhaardb9fc33c2020-08-13 11:47:36 +020026from . import lut
Diego Russoea6111a2020-04-14 18:41:58 +010027from . import rewrite_graph
Louis Verhaardd7911c42020-08-25 13:36:41 +020028from . import scaling
Louis Verhaard1a92f782021-02-09 16:08:26 +010029from .api import NpuRoundingMode
Diego Russoea6111a2020-04-14 18:41:58 +010030from .data_type import DataType
Tim Halle6ccd872020-11-09 16:46:37 +000031from .debug_database import DebugDatabase
Louis Verhaard7db78962020-05-25 15:05:26 +020032from .errors import UnsupportedFeatureError
Patrik Gustavsson3a269202021-01-21 08:28:55 +010033from .errors import VelaError
Dwight Lidman42fed942020-05-29 09:37:03 +020034from .ethos_u55_regs.ethos_u55_regs import resampling_mode
Louis Verhaard8912c532020-09-30 12:11:49 +020035from .numeric_util import clamp_sigmoid
Louis Verhaarde0ef2732020-06-03 08:56:44 +020036from .numeric_util import full_shape
Louis Verhaardf03bad32020-09-25 08:30:44 +020037from .numeric_util import round_away_zero
Louis Verhaarde8a5a782020-11-02 18:04:27 +010038from .operation import create_activation_function
Diego Russoe8a10452020-04-21 17:39:10 +010039from .operation import NpuBlockType
Louis Verhaardaee5d752020-09-30 09:01:52 +020040from .operation import Op
Diego Russoe8a10452020-04-21 17:39:10 +010041from .operation import Operation
Michael McGeagh16895482020-12-14 15:51:20 +000042from .operation import Padding
Fredrik Svedbergd9c2c422020-12-01 16:33:45 +010043from .operation_util import create_avgpool_nop
Louis Verhaardc822d622021-03-11 14:59:06 +010044from .operation_util import get_pad_values_from_input
patrik.gustavssoneeb85152020-12-21 17:10:40 +000045from .shape4d import Shape4D
Fredrik Svedberga0c36242020-06-03 15:43:31 +020046from .softmax import SoftMax
Tim Hall93582962020-09-09 21:58:15 +010047from .tensor import check_quantized_tens_scaling_equal
Michael McGeaghc5b549b2020-08-07 11:54:28 +010048from .tensor import create_const_tensor
Louis Verhaardc822d622021-03-11 14:59:06 +010049from .tensor import create_equivalence_id
Charles Xu9a03fdf2020-07-02 15:12:40 +020050from .tensor import QuantizationParameters
Diego Russoe8a10452020-04-21 17:39:10 +010051from .tensor import Tensor
Louis Verhaard1a92f782021-02-09 16:08:26 +010052from .tensor import TensorPurpose
Michael McGeagh7a6f8432020-12-02 15:29:22 +000053from .tflite_mapping import optype_to_builtintype
Tim Hall79d07d22020-04-27 18:20:16 +010054
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000055passthrough_nodes = (Op.Identity,)
Tim Hall79d07d22020-04-27 18:20:16 +010056
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000057memory_only_ops = (Op.Reshape,)
Michael McGeagh11b0bdb2020-09-08 11:07:35 +010058
Tim Hall79d07d22020-04-27 18:20:16 +010059
Louis Verhaardc822d622021-03-11 14:59:06 +010060def create_avg_pool_for_concat(concat_op, name, ifm, ifm_shape: Shape4D, write_offset: Shape4D):
61 """Creates an average pool for the given concat op/input feature map"""
62 ofm = concat_op.ofm
63 avgpool_op = create_avgpool_nop(name)
64 avgpool_op.inputs = [ifm]
65 avgpool_op.outputs = [ofm]
66
67 avgpool_op.write_offset = write_offset
68 avgpool_op.write_shape = ifm_shape
69 ofm.ops.append(avgpool_op)
70 DebugDatabase.add_optimised(concat_op, avgpool_op)
71 avgpool_op.ifm_shapes.append(ifm_shape)
72 avgpool_op.ofm_shapes.append(concat_op.ofm_shapes[0])
73 avgpool_op.memory_function = Op.ConcatSliceWrite
74 return avgpool_op
75
76
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +020077def remove_passthrough_tensor(tens, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +010078 if len(tens.ops) == 1 and tens.ops[0].type in passthrough_nodes:
79 assert len(tens.ops[0].inputs) == 1
80 tens = tens.ops[0].inputs[0]
81 return tens
82
83
Patrik Gustavsson2c2522d2021-01-29 11:51:31 +010084def rewrite_concat_ops(op, arch):
Patrik Gustavsson3a269202021-01-21 08:28:55 +010085 if not op.run_on_npu or not op.type.is_concat_op():
Louis Verhaardc822d622021-03-11 14:59:06 +010086 return
Tim Hall79d07d22020-04-27 18:20:16 +010087
Patrik Gustavsson3a269202021-01-21 08:28:55 +010088 axis_4D = 0
89 ofm = op.ofm
90 ofm.ops = []
91 offset = 0
Tim Hall79d07d22020-04-27 18:20:16 +010092
Patrik Gustavsson7bada402021-01-28 15:46:21 +010093 unfuse_activation_function(op)
94
Patrik Gustavsson3a269202021-01-21 08:28:55 +010095 if op.type == Op.Pack:
96 # Pack is also referred to as Stack
97 axis = int(op.attrs["axis"])
98 desired_shape = op.inputs[0].shape[:axis] + [1] + op.inputs[0].shape[axis:]
Tim Hall79d07d22020-04-27 18:20:16 +010099
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100100 if axis >= 0:
101 axis_4D = axis + (4 - len(desired_shape))
102 else:
103 axis_4D = axis
104
105 for idx, inp in enumerate(op.inputs):
106 op.ifm_shapes[idx] = Shape4D(desired_shape)
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100107 op.type = Op.PackReshaped
108
109 inputs, axis = op.get_concat_inputs_axis()
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100110 for idx, inp in enumerate(inputs):
111 if op.type != Op.PackReshaped:
112 op.ifm_shapes[idx] = Shape4D(inp.shape)
Patrik Gustavsson3d737172020-12-22 10:40:51 +0100113 if axis >= 0:
114 axis_4D = axis + (4 - len(inp.shape))
115 else:
116 axis_4D = axis
Louis Verhaardc822d622021-03-11 14:59:06 +0100117 write_offset = [0, 0, 0, 0]
118 write_offset[axis_4D] = offset
119 concat_end = offset + op.ifm_shapes[idx][axis_4D]
120 create_avg_pool_for_concat(
121 op, op.name + str(idx) + "_avgpool", inp, op.ifm_shapes[idx], Shape4D.from_list(write_offset)
122 )
123 offset = concat_end
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100124 assert ofm.shape[axis] == offset
Patrik Gustavsson458a2082020-08-13 13:41:05 +0200125
Patrik Gustavssonee99bb12021-04-08 09:04:00 +0200126 return op
Tim Hall79d07d22020-04-27 18:20:16 +0100127
128
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100129def rewrite_split_ops(tens, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +0100130
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100131 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 +0100132 split_op = tens.ops[0]
133
134 # Not supported so leave it and run on CPU
135 if not split_op.run_on_npu:
136 return tens
137
138 inp, outputs, axis, offset_start, offset_end = split_op.get_split_inputs_axis()
139
140 tens.ops = []
Louis Verhaardaee5d752020-09-30 09:01:52 +0200141 new_op = Operation(Op.SplitSliceRead, split_op.name)
Tim Hall79d07d22020-04-27 18:20:16 +0100142 new_op.inputs = [inp]
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100143 ofm_shape_idx = 0
Tim Hall79d07d22020-04-27 18:20:16 +0100144
145 # For Split the offset cannot be extracted from the tensor so it has to
146 # be calculated from the index of the output tensor
Diego Russoea6111a2020-04-14 18:41:58 +0100147 if axis is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100148 # Get the start and end of the split
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100149 offset_start = [0] * 4
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100150 axis_4D_list = split_op.attrs.get("split_axis_4D", None) # Present for UnpackReshaped and some StridedSlice
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100151 for idx, out in enumerate(outputs):
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100152 if axis_4D_list is not None:
153 axis_4D = axis_4D_list[idx]
Patrik Gustavsson3d737172020-12-22 10:40:51 +0100154 else:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100155 split_op.ofm_shapes[idx] = Shape4D(out.shape)
156 if axis >= 0:
157 axis_4D = axis + (4 - len(out.shape))
158 else:
159 axis_4D = axis
160
161 if out == tens:
162 ofm_shape_idx = idx
163 break
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000164
Tim Hall73e843f2021-02-04 22:47:46 +0000165 offset_start[axis_4D] += split_op.ofm_shapes[idx][axis_4D]
Tim Hall79d07d22020-04-27 18:20:16 +0100166
Patrik Gustavssone3b1b912021-02-09 15:38:46 +0100167 new_op.read_offsets[0] = Shape4D.from_list(offset_start, 0)
Tim Hall79d07d22020-04-27 18:20:16 +0100168 new_op.run_on_npu = True
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100169 new_op.set_output_tensor(tens)
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100170 new_op.ifm_shapes.append(Shape4D(inp.shape))
Tim Hall73e843f2021-02-04 22:47:46 +0000171 new_op.ofm_shapes.append(split_op.ofm_shapes[ofm_shape_idx])
Tim Halle6ccd872020-11-09 16:46:37 +0000172 DebugDatabase.add_optimised(split_op, new_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100173
174 return tens
175
176
Patrik Gustavssone3b1b912021-02-09 15:38:46 +0100177def remove_SplitSliceRead(op, arch):
178
179 if op.type == Op.SplitSliceRead:
180 # Check if it is possible to put the SplitSliceRead on the tensor consumer, or if an avgpool need to be inserted
181 if (
182 len(op.ofm.consumer_list) == 1
183 and op.ofm.consumer_list[0] is not None
184 and op.ofm.consumer_list[0].run_on_npu
185 and op.ofm.consumer_list[0].type != Op.Reshape
186 and op.ofm_shapes[0] == Shape4D.from_list(op.ofm.shape)
187 ):
188 # SplitSliceRead can be performed by tensor consumer
189 cons_op = op.ofm.consumer_list[0]
190 if cons_op.ifm == op.ofm:
191 cons_op.read_offsets[0] = op.read_offsets[0]
192 cons_op.set_input_tensor(op.ifm, cons_op.type.info.indices.ifms[0])
193 cons_op.ifm_shapes[0] = op.ifm_shapes[0]
194 elif cons_op.type.is_binary_elementwise_op() and cons_op.ifm2 == op.ofm:
195 cons_op.read_offsets[1] = op.read_offsets[0]
196 cons_op.set_input_tensor(op.ifm, cons_op.type.info.indices.ifms[1])
197 cons_op.ifm_shapes[1] = op.ifm_shapes[0]
198
199 op.ofm.consumer_list.remove(cons_op)
200 op.ofm.ops = []
201 op.ifm.consumer_list.remove(op)
202 else:
203 avgpool_op = create_avgpool_nop(op.name + "_avgpool")
204 avgpool_op.add_input_tensor(op.ifm)
205 avgpool_op.outputs = [op.ofm]
206 op.ofm.ops.remove(op)
207 op.ofm.ops.append(avgpool_op)
208 avgpool_op.ifm_shapes.append(op.ifm_shapes[0])
209 avgpool_op.ofm_shapes.append(op.ofm_shapes[0])
210 avgpool_op.read_offsets[0] = op.read_offsets[0]
211
212 op.ifm.consumer_list.remove(op)
213 DebugDatabase.add_optimised(op, avgpool_op)
214
215
Patrik Gustavssonee99bb12021-04-08 09:04:00 +0200216def avoid_nhcwb16_for_concat(tens):
217 # If axis corresponds to C-dimension, NHCWB16 can only be used in the output if all the concat_start's are a
218 # multiple of 16. This as, it is only then the address offset for the ofm, for all operations, will be 16 byte
219 # aligned. For other values of axis the address offsets will be 16 byte aligned, as they are all based on c = 0
220 # and those addresses are always 16 byte aligned due to the NHCWB16 format.
221 return any(op.write_offset.depth % 16 != 0 for op in tens.ops if op.write_offset is not None)
222
223
224def avoid_nhcwb16_for_split(tens):
225 # If read offset is not a multiple of 16 in the C-dimension, NHCWB16 need to be avoided in the input
226 for cons_op in tens.consumer_list:
227 if cons_op.ifm == tens:
228 read_offset = cons_op.read_offsets[0]
229 elif cons_op.type.is_binary_elementwise_op() and cons_op.ifm2 == tens:
230 read_offset = cons_op.read_offsets[1]
231 else:
232 assert False
233 if read_offset is not None and (read_offset[-1] % 16) != 0:
234 return True
235 return False
236
237
238def avoid_nhcwb16_for_shapes(tens):
239 # check all producers/consumers to see if any op shape is preventing NHCWB16
240 for cons_op in tens.consumer_list:
241 if cons_op.ifm == tens:
242 cons_op_shape = cons_op.ifm_shapes[0]
243 elif cons_op.type.is_binary_elementwise_op() and cons_op.ifm2 == tens:
244 cons_op_shape = cons_op.ifm_shapes[1]
245 else:
246 assert False
247 if Shape4D(tens.shape) != cons_op_shape:
248 return True
249
250 for prod_op in tens.ops:
251 if Shape4D(tens.shape) != prod_op.ofm_shapes[0]:
252 return True
253
254 return False
255
256
257# Check if non linear format can be used
258def check_format_restrictions(tens, arch):
259 if len(tens.ops) < 1:
260 return
261 if tens.ops[0].type in (Op.Placeholder, Op.SubgraphInput, Op.Const) or any(
262 cons is None for cons in tens.consumer_list
263 ):
264 return
265
266 if not any(cons.run_on_npu for cons in tens.consumer_list):
267 return
268 if not any(prod.run_on_npu for prod in tens.ops):
269 return
270
271 # "Concat" ofm exception:
272 if avoid_nhcwb16_for_concat(tens):
273 return
274
275 # "Split" ifm exception:
276 if avoid_nhcwb16_for_split(tens):
277 return
278
279 # Shapes checking: check all producers/consumers are NHCWB16 compatible with tens.shape
280 if avoid_nhcwb16_for_shapes(tens):
281 return
282
283 for op in tens.consumer_list:
284 if op.type == Op.ReduceSum and tens.dtype == DataType.int32:
285 return
286 if op.type == Op.Reshape:
287 # Using NHCWB16 format for a no-op reshape is only an option if subsequent
288 # consumers do not also need to perform a reshape or if the OFM is going to
289 # be processed by CPU operations. No-op reshape consumers with empty lists
290 # (those that have no consumers, or null-consumers used as list terminators)
291 # must use normal NHWC output.
292
293 def incompatible_consumers(oper):
294 if oper and oper.type == Op.Reshape:
295 for consumer in oper.outputs[0].consumer_list:
296 yield from incompatible_consumers(consumer)
297 yield not oper or not oper.run_on_npu
298
299 if not any(incompatible_consumers(op)):
300
301 def get_rewrites(oper):
302 if oper and oper.type == Op.Reshape:
303 for consumer in oper.outputs[0].consumer_list:
304 yield from get_rewrites(consumer)
305 yield oper
306
307 # Detect no-op reshapes by comparing their full input and output tensor shapes.
308 inshape = op.ifm_shapes[0]
309 compatible_shape = [(inshape == oper.ofm_shapes[0]) for oper in get_rewrites(op)]
310 if not (compatible_shape and all(compatible_shape)):
311 return
312 else:
313 return
314
315 tens.needs_linear_format = False
316
317
Patrik Gustavsson138d47f2021-02-08 10:13:48 +0100318def insert_copy_op_after_tens(tens):
319 tens_cons_list_copy = tens.consumer_list.copy()
320
321 # Create a avg_pool nop op with ifm as input
322 copy_tens = tens.clone()
323 copy_op = create_avgpool_nop(tens.name + "_avgpool")
324 copy_op.add_input_tensor(tens)
325 copy_op.set_output_tensor(copy_tens)
326 copy_op.set_ifm_ofm_shapes()
327 copy_op.run_on_npu = True
328
329 # Set copy_ifm consumers
330 for tens_cons in tens_cons_list_copy:
331 if tens_cons is not None:
332 for ifm_idx, cons_inp in enumerate(tens_cons.inputs):
333 if cons_inp == tens:
334 tens_cons.set_input_tensor(copy_tens, ifm_idx)
335
336 DebugDatabase.add_optimised(tens.ops[0], copy_op)
337
338
339def fix_sg_input_output(op, arch, nng):
340 if not op.run_on_npu or op.type != Op.Reshape:
341 return op
342
Patrik Gustavssone3b1b912021-02-09 15:38:46 +0100343 # For the Reshape operators we want to remove, tensors are removed.
Patrik Gustavsson138d47f2021-02-08 10:13:48 +0100344 # But in order to to do this, they cannot be outputs of the sg,
345 # this need to be fixed prior to the removal.
346 # Solution is to add a avgpool NOP, to maintain the original tensor.
347
348 # Check if operator ifm/ofm are sg ifm/ofm
349 ifm_is_sg_ifm = op.ifm.ops[0].type in (Op.Placeholder, Op.SubgraphInput, Op.Const)
350 ifm_is_sg_ofm = any(ifm_cons is None for ifm_cons in op.ifm.consumer_list)
351 ofm_is_sg_ofm = any(ofm_cons is None for ofm_cons in op.ofm.consumer_list)
352
353 if op.type == Op.Reshape and (ifm_is_sg_ofm or ifm_is_sg_ifm) and ofm_is_sg_ofm:
354 # Both ifm and ofm are sg outputs, only ifm need a copy, in order to remove the Reshape
355 insert_copy_op_after_tens(op.ifm)
356
357 return op
358
359
Tim Hall79d07d22020-04-27 18:20:16 +0100360def needed_total_padding(input_size, stride, filter_size):
361 out_size = (input_size + stride - 1) // stride
362 needed_input = (out_size - 1) * stride + filter_size
363 total_padding = max(0, needed_input - input_size)
364 return total_padding
365
366
Louis Verhaardebf4af62021-01-27 15:57:57 +0100367def calc_explicit_padding(input_size, stride, filter_size, pad_before, pad_after) -> Tuple[int, int]:
368 """
369 Based on explicit padding provided in a PAD operation, returns the corresponding hardware padding
370 that provides equivalent results.
371 """
372 total_padding = needed_total_padding(input_size, stride, filter_size)
373 # The top/left padding can be taken as is from the PAD
374 output_pad_before = pad_before
375 # The bottom/right padding might need downward adjustment depending on stride/input size
376 output_pad_after = pad_after
377 while output_pad_after > 0 and output_pad_after % stride != (total_padding - pad_before) % stride:
378 output_pad_after -= 1
379 return output_pad_before, output_pad_after
380
381
382def calc_padding_and_skirt(padding_type, kernel, input_shape, explicit_padding):
383 k_w, k_h = kernel.dilated_wh()
384 s_x, s_y = kernel.stride
385 ypad = needed_total_padding(int(input_shape.height), int(s_y), int(k_h))
386 xpad = needed_total_padding(int(input_shape.width), int(s_x), int(k_w))
Michael McGeagh16895482020-12-14 15:51:20 +0000387 if padding_type == Padding.SAME:
Tim Hall79d07d22020-04-27 18:20:16 +0100388 left_pad = (xpad + 0) // 2
389 right_pad = (xpad + 1) // 2
390 top_pad = (ypad + 0) // 2
391 bottom_pad = (ypad + 1) // 2
Michael McGeagh16895482020-12-14 15:51:20 +0000392 elif padding_type == Padding.VALID:
Tim Hall79d07d22020-04-27 18:20:16 +0100393 left_pad = 0
394 right_pad = 0
395 top_pad = 0
396 bottom_pad = 0
Louis Verhaardae2d5532020-12-11 17:19:54 +0100397 elif padding_type == Padding.EXPLICIT:
398 # Padding is specified in a PAD operator which has been bypassed.
Louis Verhaardebf4af62021-01-27 15:57:57 +0100399 top, left, bottom, right = explicit_padding
400 top_pad, bottom_pad = calc_explicit_padding(int(input_shape.height), int(s_y), int(k_h), int(top), int(bottom))
401 left_pad, right_pad = calc_explicit_padding(int(input_shape.width), int(s_x), int(k_w), int(left), int(right))
Tim Hall79d07d22020-04-27 18:20:16 +0100402 else:
Michael McGeagh16895482020-12-14 15:51:20 +0000403 raise UnsupportedFeatureError(f"Unknown padding")
Tim Hall79d07d22020-04-27 18:20:16 +0100404 padding = (top_pad, left_pad, bottom_pad, right_pad)
405 skirt = (top_pad, left_pad, ypad - top_pad, xpad - left_pad)
406 return padding, skirt
407
Tim Hallc30f4952020-06-15 20:47:35 +0100408
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100409def calc_upscaled_padding_and_skirt(padding_type, kernel_size, stride, input_shape, upscaling_factor):
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200410 kernel_height, kernel_width = kernel_size[0], kernel_size[1]
Michael McGeagh16895482020-12-14 15:51:20 +0000411 if padding_type == Padding.SAME:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100412 ypad = needed_total_padding(int(input_shape.height) * upscaling_factor, int(stride[1]), int(kernel_height))
413 xpad = needed_total_padding(int(input_shape.width) * upscaling_factor, int(stride[2]), int(kernel_width))
Jacob Bohlind47cc272020-08-24 11:42:14 +0200414 right_pad = max(((xpad + 1) // upscaling_factor) - 1, 0)
415 bottom_pad = max(((ypad + 1) // upscaling_factor) - 1, 0)
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200416 left_pad = max(kernel_width - 1 - right_pad, 0)
417 top_pad = max(kernel_height - 1 - bottom_pad, 0)
Michael McGeagh16895482020-12-14 15:51:20 +0000418 elif padding_type == Padding.VALID:
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200419 right_pad = max(kernel_width - 2, 0)
420 bottom_pad = max(kernel_height - 2, 0)
421 left_pad = kernel_width - 1
422 top_pad = kernel_height - 1
Jacob Bohlincf7da102020-05-20 09:03:40 +0200423 else:
Michael McGeagh16895482020-12-14 15:51:20 +0000424 raise UnsupportedFeatureError(f"Unknown padding")
Jacob Bohlincf7da102020-05-20 09:03:40 +0200425 padding = (top_pad, left_pad, bottom_pad, right_pad)
Jacob Bohlin9b64ba02020-07-07 17:15:22 +0200426 skirt = padding
Jacob Bohlincf7da102020-05-20 09:03:40 +0200427 return padding, skirt
428
Tim Hall79d07d22020-04-27 18:20:16 +0100429
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200430def fixup_conv2d_backprop(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200431 if op.type == Op.Conv2DBackpropInput:
Tim Hall79d07d22020-04-27 18:20:16 +0100432 # flip the inputs
433 op.inputs[0], op.inputs[2] = op.inputs[2], op.inputs[0]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200434 op.type = Op.Conv2DBackpropInputSwitchedBias
Louis Verhaard69b84802020-12-16 12:02:28 +0100435 op.ifm.resampling_mode = resampling_mode.TRANSPOSE
Jacob Bohlincf7da102020-05-20 09:03:40 +0200436
437 # Update strides
Tim Hallc30f4952020-06-15 20:47:35 +0100438 op.attrs.update({"stride_w": 1, "stride_h": 1, "strides": (1, 1, 1, 1)})
Tim Hall79d07d22020-04-27 18:20:16 +0100439
440 return op
441
442
Charles Xu9a03fdf2020-07-02 15:12:40 +0200443# Convert the op to an elementwise add
444def convert_resizebilinear_1x1_to_add(op):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200445 op.type = Op.Add
Charles Xu9a03fdf2020-07-02 15:12:40 +0200446 op.name = op.name + "_add"
Charles Xu9a03fdf2020-07-02 15:12:40 +0200447 op.attrs["resizebilinear"] = True
448 # Create an input tensor filled with zeros
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100449 shape = op.ofm_shapes[0].as_list()
Charles Xu9a03fdf2020-07-02 15:12:40 +0200450 tens = Tensor(shape, op.inputs[0].dtype, op.inputs[1].name + "_add")
451 tens.values = np.zeros(shape)
452 tens.quant_values = np.zeros(shape, np.uint8)
453 tens.quantization = QuantizationParameters(0.0, 255.0)
454 tens.quantization.scale_f32 = 1.0
455 tens.quantization.zero_point = 0
456 tens.consumer_list = [op]
457 tens_op = op.inputs[1].ops[0]
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100458 tens_op.set_output_tensor(tens)
Charles Xu9a03fdf2020-07-02 15:12:40 +0200459 # Set the add inputs
460 op.inputs[1] = op.inputs[0]
461 op.inputs[0] = tens
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000462 op.set_ifm_ofm_shapes()
Charles Xu9a03fdf2020-07-02 15:12:40 +0200463
464 return op
465
466
Charles Xu87c13502020-08-06 12:17:26 +0200467# Convert ResizeBilinear to a number of 2x2 pool ops
468def convert_resizebilinear_to_2x2_pool(op):
469 count = 0
470 pre_op = op
471 outputs = op.outputs
472
473 op.attrs.update({"strides": (1, 1, 1, 1), "ksize": (1, 2, 2, 1)})
474 if op.attrs["align_corners"]:
475 shape_modifier = 1
Michael McGeagh16895482020-12-14 15:51:20 +0000476 op.attrs["padding"] = Padding.VALID
Charles Xu87c13502020-08-06 12:17:26 +0200477 else:
478 shape_modifier = 0
Michael McGeagh16895482020-12-14 15:51:20 +0000479 op.attrs["padding"] = Padding.SAME
Charles Xu87c13502020-08-06 12:17:26 +0200480 op.inputs[0].resampling_mode = resampling_mode.NEAREST
481
Patrik Gustavsson2c2522d2021-01-29 11:51:31 +0100482 upscaled_shape = np.array(op.ifm_shapes[0].get_hw_as_list())
483 out_shape = np.array(op.ofm_shapes[0].get_hw_as_list())
Charles Xu87c13502020-08-06 12:17:26 +0200484 if (upscaled_shape == upscaled_shape * 2 - shape_modifier).all():
485 return op
486
487 while (upscaled_shape < out_shape).all():
488 if count == 0:
489 scaled_op = pre_op
490 else:
491 scaled_op = op.clone("_{}".format(count))
492 scaled_op.inputs[0] = pre_op.outputs[0]
493
494 upscaled_shape = upscaled_shape * 2 - shape_modifier
495
496 if (upscaled_shape == out_shape).all():
497 scaled_op.outputs = outputs
498 scaled_op.outputs[0].ops = [scaled_op]
499 else:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100500 shape = op.ofm_shapes[0].as_list()
501 shape[1:3] = upscaled_shape
Charles Xu87c13502020-08-06 12:17:26 +0200502 out_tens = Tensor(shape, DataType.int16, "{}_{}".format(op.outputs[0].name, count))
503 out_tens.quantization = op.outputs[0].quantization.clone()
504 out_tens.quantization.quant_min = np.iinfo(np.int16).min
505 out_tens.quantization.quant_max = np.iinfo(np.int16).max
506 scaled_op.set_output_tensor(out_tens)
507 pre_op = scaled_op
508 count += 1
509
510 # Setup the scale value
511 if scaled_op.inputs[0].dtype.bits == 8 and scaled_op.outputs[0].dtype.bits == 16:
Fredrik Svedberge82be7c2021-01-18 15:21:03 +0100512 scaled_op.rescale = 128
Charles Xu87c13502020-08-06 12:17:26 +0200513 elif scaled_op.inputs[0].dtype.bits == 16 and scaled_op.outputs[0].dtype.bits == 8:
Fredrik Svedberge82be7c2021-01-18 15:21:03 +0100514 scaled_op.rescale = 1 / 128
515 else:
516 scaled_op.rescale = None
Patrik Gustavssoncc6915c2020-12-22 09:16:50 +0100517 scaled_op.set_ifm_ofm_shapes()
Charles Xu87c13502020-08-06 12:17:26 +0200518
519 return op
520
521
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200522def fixup_resizebilinear(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200523 if op.type == Op.ResizeBilinear and op.run_on_npu:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100524 if op.ifm_shapes[0] == op.ofm_shapes[0]:
Charles Xu36ffaf32020-08-05 15:40:44 +0200525 # Bypass nop resizebilinear
526 op.inputs = op.inputs[:1]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200527 op.type = Op.Identity
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100528 elif op.ifm_shapes[0].height == 1 and op.ifm_shapes[0].width == 1:
Charles Xu87c13502020-08-06 12:17:26 +0200529 convert_resizebilinear_1x1_to_add(op)
530 else:
531 convert_resizebilinear_to_2x2_pool(op)
Charles Xu9a03fdf2020-07-02 15:12:40 +0200532
533 return op
534
535
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200536def convert_nop_split_to_identity(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200537 if op.type == Op.Split and op.attrs.get("num_splits") == 1:
Dwight Lidmanc3862c22020-09-14 15:22:33 +0200538 # the list comprehension should return a list with a single tensor
539 # if it shouldn't, remove_passthrough_tensor will fail appropriately
540 op.inputs = [i for i in op.inputs if i.shape == op.outputs[0].shape]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200541 op.type = Op.Identity
Dwight Lidmanc3862c22020-09-14 15:22:33 +0200542 return op
543
544
Patrik Gustavsson2c2522d2021-01-29 11:51:31 +0100545def rewrite_fully_connected_input(op, arch, nng):
546 if op.type == Op.FullyConnected:
547 n_in_elems = op.weights.shape[-2]
548 elms = op.ifm.elements()
549 batch_size = elms // n_in_elems
550 assert batch_size * n_in_elems == elms
551
Patrik Gustavsson2c2522d2021-01-29 11:51:31 +0100552 op.ifm_shapes[0] = Shape4D([batch_size, 1, 1, n_in_elems])
553 return op
554
555
Diqing Zhong94457b12020-12-09 15:22:40 +0100556def convert_batched_fc_shape(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200557 if op.type == Op.FullyConnected:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100558 # Check if the first dimension indicates batching
559 if op.ifm_shapes[0].batch > 1:
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200560 batching_split = {4: (2, 2), 8: (2, 4), 16: (4, 4)}
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100561 n = op.ifm_shapes[0].batch
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200562 h, w = batching_split.get(n, (1, n))
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100563 op.ifm_shapes[0] = Shape4D([1, h, w, op.ifm_shapes[0].depth])
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200564
Patrik Gustavssoncb337042020-09-16 14:55:40 +0200565 # Reshape Weights to be 4D. IO becomes HWIO
566 weight_tensor = op.inputs[1]
567 weight_tensor.quant_values = np.expand_dims(np.expand_dims(weight_tensor.quant_values, axis=0), axis=0)
568 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
569
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100570 n = op.ofm_shapes[0].batch
571 h, w = batching_split.get(n, (1, n))
572 op.ofm_shapes[0] = Shape4D([1, h, w, op.ofm_shapes[0].depth])
Tim Hall79d07d22020-04-27 18:20:16 +0100573 return op
574
575
Patrik Gustavsson7bada402021-01-28 15:46:21 +0100576def unfuse_activation_function(op):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200577 if op.type == Op.ConcatTFLite and op.run_on_npu and op.activation is not None:
Louis Verhaarde8a5a782020-11-02 18:04:27 +0100578 act_op = Operation(op.activation.op_type, op.name + op.activation.op_type.name)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200579 op.activation = None
Fredrik Svedberg0f98b362020-09-29 10:00:39 +0200580 out_tens = op.outputs[0]
581 intermediate_tens = out_tens.clone("_act_intermediate")
582 act_op.set_output_tensor(out_tens)
583 act_op.add_input_tensor(intermediate_tens)
584 op.set_output_tensor(intermediate_tens)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000585 act_op.set_ifm_ofm_shapes()
Fredrik Svedberg0f98b362020-09-29 10:00:39 +0200586
Louis Verhaard8912c532020-09-30 12:11:49 +0200587
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100588def rewrite_stridedslice_output(op, arch, nng):
589 if not op.run_on_npu or op.type != Op.StridedSlice:
590 return op
591
592 new_axis_mask = op.attrs["new_axis_mask"]
593 shrink_axis_mask = op.attrs["shrink_axis_mask"]
594
595 if shrink_axis_mask == 0 and new_axis_mask == 0:
596 return op
597
598 axis_4D = [0] * len(op.outputs)
599 for idx, out_tens in enumerate(op.outputs):
600 output_shape = list(out_tens.shape)
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100601
Dwight Lidman73320a42020-11-05 10:34:41 +0100602 if shrink_axis_mask != 0:
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100603 n = 0
604 axis = 0
605 while shrink_axis_mask:
606 prev_mask = shrink_axis_mask
607 n += 1
608 shrink_axis_mask &= shrink_axis_mask - 1
609 axis = int(math.log2(prev_mask - shrink_axis_mask))
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100610 output_shape = output_shape[:axis] + [1] + output_shape[axis:]
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100611
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100612 assert len(out_tens.shape) == (len(op.inputs[0].shape) - n)
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100613 op.attrs["shrink_axis_mask"] = 0
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100614 if axis >= 0:
615 axis_4D[idx] = axis + (4 - len(output_shape))
616 else:
617 axis_4D[idx] = axis
618 op.ofm_shapes[idx] = Shape4D(output_shape)
619
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100620 elif new_axis_mask != 0:
621 n = 0
622 axis = 0
623 while new_axis_mask:
624 prev_mask = new_axis_mask
625 n += 1
626 new_axis_mask &= new_axis_mask - 1
627 axis = int(math.log2(prev_mask - new_axis_mask))
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100628 output_shape = output_shape[:axis] + output_shape[(axis + 1) :]
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100629 new_axis_mask >>= 1
630
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100631 assert len(out_tens.shape) == (len(op.inputs[0].shape) + n)
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100632 op.attrs["new_axis_mask"] = 0
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100633 if axis >= 0:
634 axis_4D[idx] = axis + (4 - len(output_shape))
635 else:
636 axis_4D[idx] = axis
637 op.ofm_shapes[idx] = Shape4D(output_shape)
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100638
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100639 op.attrs["split_axis_4D"] = axis_4D
640 return op
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100641
642
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100643def rewrite_unpack_output(op, arch, nng):
644 tens = op.outputs[0]
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100645 if op.run_on_npu and op.type == Op.Unpack:
Tim Hall79d07d22020-04-27 18:20:16 +0100646 # Unpack is also referred to as Unstack
Diqing Zhongc7c0b1b2020-10-26 11:45:25 +0100647 axis = int(op.attrs["axis"])
648 op.type = Op.UnpackReshaped
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100649 desired_output_shape = tens.shape[:axis] + [1] + tens.shape[axis:]
Tim Hall79d07d22020-04-27 18:20:16 +0100650
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100651 if axis >= 0:
652 axis_4D = axis + (4 - len(desired_output_shape))
653 else:
654 axis_4D = axis
Tim Hall79d07d22020-04-27 18:20:16 +0100655
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100656 axis_4D_list = [0] * len(op.outputs)
Tim Hall79d07d22020-04-27 18:20:16 +0100657 for idx, out_tens in enumerate(op.outputs):
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100658 op.ofm_shapes[idx] = Shape4D(desired_output_shape)
659 axis_4D_list[idx] = axis_4D
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100660
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100661 op.attrs["split_axis_4D"] = axis_4D_list
662 return op
Tim Hall79d07d22020-04-27 18:20:16 +0100663
664
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200665def add_padding_fields(op, arch, nng):
Jacob Bohlin90033f32020-08-28 15:45:44 +0200666 if op.run_on_npu:
667 if "padding" in op.attrs:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100668 input_shape = op.ifm_shapes[0]
669 output_shape = op.ofm_shapes[0]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200670 if op.type.is_conv2d_op() or op.type.is_depthwise_conv2d_op():
Jacob Bohlin90033f32020-08-28 15:45:44 +0200671 kernel_size = op.inputs[1].shape[:2]
Louis Verhaardaee5d752020-09-30 09:01:52 +0200672 elif op.type.is_pool_op() or op.type.npu_block_type == NpuBlockType.ReduceSum:
Jacob Bohlin90033f32020-08-28 15:45:44 +0200673 kernel_size = op.attrs["ksize"][1:3]
Jacob Bohlin90033f32020-08-28 15:45:44 +0200674 else:
Michael McGeagh7a6f8432020-12-02 15:29:22 +0000675 raise UnsupportedFeatureError(f"Unknown operation that uses padding: {optype_to_builtintype(op.type)}")
Tim Hall79d07d22020-04-27 18:20:16 +0100676
Louis Verhaardaee5d752020-09-30 09:01:52 +0200677 if op.type == Op.Conv2DBackpropInputSwitchedBias:
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100678 upscaling_factor = output_shape.height // input_shape.height
Jacob Bohlin90033f32020-08-28 15:45:44 +0200679 padding, skirt = calc_upscaled_padding_and_skirt(
680 op.attrs["padding"], kernel_size, op.attrs["strides"], input_shape, upscaling_factor
681 )
682 else:
Jacob Bohlin90033f32020-08-28 15:45:44 +0200683 padding, skirt = calc_padding_and_skirt(
Louis Verhaardebf4af62021-01-27 15:57:57 +0100684 op.attrs["padding"], op.kernel, input_shape, op.attrs.get("explicit_padding"),
Jacob Bohlin90033f32020-08-28 15:45:44 +0200685 )
Jacob Bohlincf7da102020-05-20 09:03:40 +0200686
Jacob Bohlin90033f32020-08-28 15:45:44 +0200687 op.attrs["explicit_padding"] = padding
688 op.attrs["skirt"] = skirt
Jacob Bohlincf7da102020-05-20 09:03:40 +0200689
Tim Hall79d07d22020-04-27 18:20:16 +0100690 return op
691
692
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200693def convert_depthwise_to_conv(op, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +0100694 # Depthwise is equivalent to a single conv2d if the ifm depth is 1 and
695 # the ofm depth equals the depth multipler.
696 # If those conditions are true, then we can perform a simple
697 # switch of the operator type (and weight order)
698
Louis Verhaardaee5d752020-09-30 09:01:52 +0200699 if op.type == Op.DepthwiseConv2DBias and (op.attrs["depth_multiplier"] != 1):
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100700 ifm_shape = op.ifm_shapes[0]
Tim Hall79d07d22020-04-27 18:20:16 +0100701 weight_tensor = op.inputs[1]
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100702 ofm_shape = op.ofm_shapes[0]
703 if (ifm_shape.depth == 1) and (ofm_shape.depth == op.attrs["depth_multiplier"]):
Tim Hall79d07d22020-04-27 18:20:16 +0100704 # Change op type to Conv2d
Louis Verhaardaee5d752020-09-30 09:01:52 +0200705 op.type = Op.Conv2DBias
Tim Hall79d07d22020-04-27 18:20:16 +0100706 del op.attrs["channel_multiplier"]
707 del op.attrs["depth_multiplier"]
708
709 weight_tensor.quant_values = np.transpose(weight_tensor.quant_values, (0, 1, 3, 2))
Michael McGeagh6a8d4242020-07-28 12:17:59 +0100710 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
Tim Hall79d07d22020-04-27 18:20:16 +0100711 else:
Louis Verhaard7db78962020-05-25 15:05:26 +0200712 raise UnsupportedFeatureError(
Michael McGeagh7a6f8432020-12-02 15:29:22 +0000713 f"Unsupported 'DEPTHWISE_CONV_2D' with depth_multiplier = {op.attrs['depth_multiplier']},",
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100714 f" ifm channels = {ifm_shape.depth}, ofm channels = {ofm_shape.depth}",
Tim Hall79d07d22020-04-27 18:20:16 +0100715 )
Tim Halle6ccd872020-11-09 16:46:37 +0000716 DebugDatabase.add_optimised(op, op)
Tim Hall79d07d22020-04-27 18:20:16 +0100717 return op
718
719
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200720def reorder_depthwise_weights(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200721 if op.type.is_depthwise_conv2d_op():
Jacob Bohline843d332020-06-23 12:12:56 +0200722 weight_tensor = op.inputs[1]
723 weight_tensor.quant_values = np.transpose(weight_tensor.quant_values, (0, 1, 3, 2))
Michael McGeagh6a8d4242020-07-28 12:17:59 +0100724 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
Jacob Bohline843d332020-06-23 12:12:56 +0200725 weight_tensor.weight_transpose_depthwise = True
726
727 return op
728
729
Diqing Zhong016b8272020-12-16 16:46:06 +0100730def optimise_strided_conv(op, arch, nng):
731 stride_x, stride_y = op.get_kernel_stride()
732 ifm_tensor, _, weight_tensor, _ = op.get_ifm_ifm2_weights_ofm()
733
734 if (
735 op.type == Op.Conv2DBias
736 and op.op_index == 0
737 and stride_x == 2
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100738 and op.ifm_shapes[0].depth <= 4
739 and op.ifm_shapes[0].width % 2 == 0
Diqing Zhong016b8272020-12-16 16:46:06 +0100740 and weight_tensor is not None
741 and weight_tensor.shape[1] >= 2
742 ):
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100743 ifm_shape = op.ifm_shapes[0]
Diqing Zhong016b8272020-12-16 16:46:06 +0100744 # IFM
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100745 op.ifm_shapes[0] = Shape4D([ifm_shape.batch, ifm_shape.height, ifm_shape.width // 2, ifm_shape.depth * 2])
Diqing Zhong016b8272020-12-16 16:46:06 +0100746
747 # Weights
748 weight_shape = weight_tensor.shape
749 if weight_shape[1] % 2 != 0:
750 weight_shape[1] = weight_shape[1] + 1
751 padded_array = np.zeros(weight_shape)
752 for i in range(weight_shape[0]):
753 padded_array[i] = np.vstack(
754 [
755 weight_tensor.quant_values[i],
756 np.full((1, weight_shape[2], weight_shape[3]), weight_tensor.quantization.zero_point),
757 ]
758 )
759 weight_tensor.quant_values = padded_array
760 weight_shape[1] //= 2
761 weight_shape[2] *= 2
762 weight_tensor.quant_values = np.reshape(weight_tensor.quant_values, weight_shape)
763 weight_tensor.set_all_shapes(weight_shape)
764 # If multiple copies of the weights are used, we could avoid
765 # them having the same address by changing the value_id
766 weight_tensor.value_id = uuid.uuid4()
767
768 # Strides
769 stride_x = 1
770 op.attrs.update({"stride_w": stride_x, "stride_h": stride_y, "strides": (1, stride_y, stride_x, 1)})
771
Diqing Zhong016b8272020-12-16 16:46:06 +0100772 return op
773
774
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200775def convert_conv_to_fc(op, arch, nng):
Michael McGeagh8d939c02020-07-29 13:11:43 +0100776 # Conv 1x1 can be equivalent to Fully Connected.
777 # By representing certain convs as fully connected layers, Vela can better determine wether or not to use
778 # caching/double buffering for the weights.
779 # (Weights dont need to be reloaded for convs when IFM H and W are 1)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200780 if op.type == Op.Conv2DBias:
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000781 h = op.ifm_shapes[0].height
782 w = op.ifm_shapes[0].width
Michael McGeagh8d939c02020-07-29 13:11:43 +0100783 kh, kw, _, _ = op.inputs[1].shape
784 if h == 1 and w == 1 and kh == 1 and kw == 1:
785 # Overwrite this op as a Fully Connected Op
786 op.name += "_fc"
Louis Verhaardaee5d752020-09-30 09:01:52 +0200787 op.type = Op.FullyConnected
Michael McGeagh8d939c02020-07-29 13:11:43 +0100788 op.attrs = {
Michael McGeagh8d939c02020-07-29 13:11:43 +0100789 "weights_format": 0,
Michael McGeagh8d939c02020-07-29 13:11:43 +0100790 }
791 # Reshape Weights to be 2D. HWIO becomes just IO (as H and W are 1, they can just be dropped)
792 weight_tensor = op.inputs[1]
793 weight_tensor.quant_values = weight_tensor.quant_values.squeeze(axis=(0, 1))
794 weight_tensor.set_all_shapes(list(weight_tensor.quant_values.shape))
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100795
Tim Halle6ccd872020-11-09 16:46:37 +0000796 DebugDatabase.add_optimised(op, op)
Michael McGeagh8d939c02020-07-29 13:11:43 +0100797 return op
798
799
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200800def fixup_relus_with_differing_ifm_ofm_scaling(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200801 if op.run_on_npu and op.type.is_relu_op():
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100802 ifm = op.inputs[0]
803 ofm = op.outputs[0]
804 # Relu with differing IFM and OFM scaling cannot be fused with another primary op
805 # and requires its own to be inserted
Tim Hall93582962020-09-09 21:58:15 +0100806 if not check_quantized_tens_scaling_equal(ifm, ofm):
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100807 # Override this op with its own primary op (avgpool)
808 relu_fused_op = create_avgpool_nop(op.name + "_avgpool")
809 # And fuse the original activation function to it
Louis Verhaarde8a5a782020-11-02 18:04:27 +0100810 relu_fused_op.activation = create_activation_function(op.type)
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100811 # Tidy up and assign the ifm and ofm to the new op
812 ifm.consumer_list.remove(op)
Andreas Nevalainenf3d737e2020-09-25 14:12:43 +0200813
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100814 relu_fused_op.add_input_tensor(ifm)
815 relu_fused_op.set_output_tensor(ofm)
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000816 relu_fused_op.set_ifm_ofm_shapes()
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100817 op = relu_fused_op
818 return op
819
820
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200821def fixup_elementwise_with_scalars(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200822 if op.type.is_binary_elementwise_op():
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200823 ifm_tensor, ifm2_tensor, _, _ = op.get_ifm_ifm2_weights_ofm()
Charles Xu78792222020-05-13 10:15:26 +0200824 if ifm2_tensor.shape != [] and ifm_tensor.shape != []:
825 diff = len(ifm_tensor.shape) - len(ifm2_tensor.shape)
826 if diff > 0:
827 ifm2_tensor.shape = full_shape(len(ifm_tensor.shape), ifm2_tensor.shape, 1)
828 elif diff < 0:
829 ifm_tensor.shape = full_shape(len(ifm2_tensor.shape), ifm_tensor.shape, 1)
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200830 elif ifm_tensor.shape == [] and ifm_tensor.quant_values is None:
831 # IFM is marked as a scalar, but is a result of an operation; change it to a shape of size 1
832 ifm_tensor.shape = len(ifm2_tensor.shape) * [1]
833 ifm_tensor.storage_shape = ifm_tensor.shape
834 elif ifm2_tensor.shape == [] and ifm2_tensor.quant_values is None:
835 # IFM2 is marked as a scalar, but is a result of an operation; change it to a shape of size 1
836 ifm2_tensor.shape = len(ifm_tensor.shape) * [1]
837 ifm2_tensor.storage_shape = ifm2_tensor.shape
Charles Xu78792222020-05-13 10:15:26 +0200838 return op
Tim Hall79d07d22020-04-27 18:20:16 +0100839
Louis Verhaarde0ef2732020-06-03 08:56:44 +0200840
Tim Hall4e127762020-05-15 16:05:49 +0100841# Set input/output tensor equivalence to the same id for memory operations
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200842def set_tensor_equivalence(op, arch, nng):
Michael McGeagh11b0bdb2020-09-08 11:07:35 +0100843 if op.type in memory_only_ops:
Tim Hall4e127762020-05-15 16:05:49 +0100844 eid = op.outputs[0].equivalence_id
845 for inp in op.inputs:
846 inp.equivalence_id = eid
847 return op
848
849
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100850def set_ifm_ofm_op_shapes(op, arch, nng):
851 if op.run_on_npu and op.type.needs_shapes():
852 if op.ifm_shapes or op.ofm_shapes:
853 # Shapes already set
854 return op
855 op.set_ifm_ofm_shapes()
856 return op
857
858
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200859def convert_softmax(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +0200860 if op.type == Op.Softmax and op.run_on_npu:
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200861 softmax = SoftMax(op)
862 op = softmax.get_graph()
863 return op
864
865
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +0200866def convert_mul_max_to_abs_or_lrelu(op, arch, nng):
Diego Russoea6111a2020-04-14 18:41:58 +0100867 r"""Whenever there is a subgraph with this topology:
Tim Hall79d07d22020-04-27 18:20:16 +0100868
869 Input X For X = -1 or X > 0
870 | \ / This subgraph can be replaced with either
871 | Mul an Abs (if X = -1) or a LeakyReLU (if X > 0)
872 | /
873 Max
874 """
875
Louis Verhaardaee5d752020-09-30 09:01:52 +0200876 if op.type == Op.Maximum:
Tim Hall79d07d22020-04-27 18:20:16 +0100877 # finds the Mul input(s) to the Max
Louis Verhaardaee5d752020-09-30 09:01:52 +0200878 muls = [i for i in op.inputs if i.ops[0].type == Op.Mul]
Tim Hall79d07d22020-04-27 18:20:16 +0100879 if len(muls) == 1:
880 mul = muls[0].ops[0]
881 elif len(muls) == 2:
882 # In the case both inputs are Muls, find the one with the same input as the Max
883 mul = [m for m in muls if len(set(op.inputs + m.ops[0].inputs)) == 1][0].ops[0]
884 else:
885 # No Mul inputs
886 return op
887
888 # make sure the Mul doesn't have any other consumers
Louis Verhaardd7911c42020-08-25 13:36:41 +0200889 mul_ofm = mul.outputs[0]
890 if len(mul_ofm.consumers()) != 1:
Tim Hall79d07d22020-04-27 18:20:16 +0100891 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +0200892 # make sure the Mul doesn't have a fused activation function
893 if mul.activation:
Tim Hall79d07d22020-04-27 18:20:16 +0100894 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +0200895 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +0100896 if ifm is None or ofm is None:
897 return op
898
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200899 if ifm.dtype not in (DataType.uint8, DataType.int8) or ifm.dtype != ofm.dtype:
900 return op
Tim Hall93582962020-09-09 21:58:15 +0100901 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 +0200902 # rewrite to LeakyRelu currently only makes sense if the quantization is identical
903 return op
Tim Hall79d07d22020-04-27 18:20:16 +0100904
905 # finds the branched input that goes to both the Max and the Mul
906 shared = set(op.inputs) & set(mul.inputs)
907 if len(shared) == 1:
908 shared_in = shared.pop()
909 # find the constant scalar input to the Mul
910 const_tens = (set(mul.inputs) - {shared_in}).pop()
911 # check that it is a scalar
912 if const_tens.shape != []:
913 return op
914 const = const_tens.ops[0]
915 # check that it is a constant
Louis Verhaardaee5d752020-09-30 09:01:52 +0200916 if const.type != Op.Const:
Tim Hall79d07d22020-04-27 18:20:16 +0100917 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +0200918 # Remove the Mul from the shared input's consumers
919 shared_in.consumer_list.remove(mul)
Tim Hall79d07d22020-04-27 18:20:16 +0100920 else:
921 return op
922
923 val = const.outputs[0].values
924 if val >= 0:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200925 new_op = Op.LeakyRelu
Tim Hall79d07d22020-04-27 18:20:16 +0100926 op.attrs["alpha"] = val
Louis Verhaardd7911c42020-08-25 13:36:41 +0200927 # to produce bit exact results, the alpha is not enough;
928 # save additional scaling info in attr "alpha_scale", to be used as input
929 # to the LUT construction
930 alpha_scalar = const_tens.quant_values - const_tens.quantization.zero_point
931 mul_ifm_scale = np.double(ifm.quantization.scale_f32)
932 mul_ifm2_scale = np.double(const_tens.quantization.scale_f32)
933 mul_ofm_scale = np.double(mul_ofm.quantization.scale_f32)
934 alpha_scale, alpha_shift = scaling.elementwise_mul_scale(mul_ifm_scale, mul_ifm2_scale, mul_ofm_scale)
935 op.attrs["alpha_scaling"] = (alpha_scalar, alpha_scale, alpha_shift)
Tim Hall79d07d22020-04-27 18:20:16 +0100936 elif val == -1:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200937 new_op = Op.Abs
Tim Hall79d07d22020-04-27 18:20:16 +0100938 else:
939 return op
940
Louis Verhaardaee5d752020-09-30 09:01:52 +0200941 op.type = new_op
942 op.name = op.name.replace("Maximum", new_op.name)
943 op.outputs[0].name = op.outputs[0].name.replace("Maximum", new_op.name)
Tim Hall79d07d22020-04-27 18:20:16 +0100944 op.inputs = [shared_in]
Patrik Gustavssonc509d332020-12-22 13:53:52 +0100945 op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +0000946
947 # Record optimisation in debug database
948 DebugDatabase.add_optimised(op, op)
949
Tim Hall79d07d22020-04-27 18:20:16 +0100950 return op
951
952
Diqing Zhong189f7482021-01-26 12:12:51 +0100953def convert_hardswish_to_lut(op, arch, nng):
954 if op.type == Op.HardSwish:
955 ifm, ofm = op.get_ifm_ofm()
956 # Generate the LUT
957 ifm_scale = np.double(ifm.quantization.scale_f32)
958 ofm_scale = np.double(ofm.quantization.scale_f32)
959 zp_in = ifm.quantization.zero_point
960 zp_out = ofm.quantization.zero_point
961 ifm_scale_hires = (1 / 128) * ifm_scale
962 relu_multiplier = np.double(3 / 32768)
963 out_scale, out_shift = scaling.quantise_scale(ifm_scale_hires / ofm_scale)
964 relu_scale, relu_shift = scaling.quantise_scale(ifm_scale_hires / relu_multiplier)
965 # Use 16bit scale
966 out_scale_16 = fp_math.downscale_multiplier_int32_to_int16(out_scale)
967 relu_scale_16 = fp_math.downscale_multiplier_int32_to_int16(relu_scale)
968
969 values = []
970 ix = range(256) if ifm.dtype == DataType.uint8 else range(-128, 128)
971 quantized_min = min(ix)
972 quantized_max = max(ix)
973 for x in ix:
974 input_value = x - zp_in
975 input_value_hires = input_value * 128
976 # Compute the input value on essentially the output scale, not shifted yet
977 input_value_preshift = fp_math.saturating_rounding_mul16(input_value_hires, out_scale_16)
978 # Compute the "relu-ish multiplier". This matches the code in TensorFlow Lite Micro kernel
979 relu_value = np.int16(input_value_hires)
980 if relu_shift < 31:
981 relu_value = fp_math.shift_left16(relu_value, 30 - relu_shift)
982
983 relu_value = fp_math.saturating_rounding_mul16(relu_value, relu_scale_16)
984
985 if relu_shift < 31:
986 relu_value = fp_math.shift_left16(relu_value, 1)
987
988 if relu_shift > 31:
989 relu_value = fp_math.rounding_divide_by_pot(relu_value, relu_shift - 31)
990
991 # Rescaled the value into a 16bit fixedpoint relu_value in [-1, 1]
992 # Now convert that to a 16bit fixedpoint value in [0, 1]
993 relu_value = (relu_value + (1 << 15)) >> 1
994 lut_result = fp_math.saturating_mul16(relu_value, input_value_preshift)
995 shift = 31 - out_shift
996 shift = -shift if shift < 0 else 0
997 # Finally apply the output shift
998 lut_result = fp_math.rounding_divide_by_pot(lut_result, shift) + zp_out
999 lut_result = min(quantized_max, max(quantized_min, lut_result))
1000 values.append(lut_result)
1001 return convert_to_lut(op, values, "hardswish")
1002 return op
1003
1004
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001005def convert_lrelu_to_mul_max(op, arch):
1006 # Converts LeakyRelu to Max(alpha * IFM, identity * IFM)
1007 # (the opposite of convert_mul_max_to_abs_or_lrelu)
Louis Verhaardaee5d752020-09-30 09:01:52 +02001008 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +01001009 if ifm is None or ofm is None:
1010 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001011
1012 # Add multiplication with alpha
Louis Verhaardaee5d752020-09-30 09:01:52 +02001013 mul_alpha = Operation(Op.Mul, op.name + "_mul_alpha")
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001014 mul_alpha.add_input_tensor(ifm)
1015 # Create const tensor containing alpha as scalar
1016 alpha = op.attrs["alpha"]
1017 quantization = ifm.quantization.clone()
1018 quantization.min = 0
1019 quantization.max = alpha * (quantization.quant_max - quantization.quant_min)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001020 quantization.zero_point = 0
Louis Verhaardece4e652021-01-07 13:35:47 +01001021 if np.isinf(1 / np.float32(alpha)):
1022 # Handling of alpha near zero
1023 quantization.scale_f32 = 1
1024 scalar = 0
1025 else:
1026 quantization.scale_f32 = alpha
erik.andersson@arm.com8ba07922021-03-10 08:39:23 +01001027 scalar = alpha
Louis Verhaardece4e652021-01-07 13:35:47 +01001028 alpha_tens = create_const_tensor(
erik.andersson@arm.com8ba07922021-03-10 08:39:23 +01001029 op.name + "_alpha_scalar", [], ifm.dtype, [scalar], np.float32, quantization=quantization
Louis Verhaardece4e652021-01-07 13:35:47 +01001030 )
erik.andersson@arm.com8ba07922021-03-10 08:39:23 +01001031 alpha_tens.quant_values = np.array([1])
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001032 mul_alpha.add_input_tensor(alpha_tens)
erik.andersson@arm.com8ba07922021-03-10 08:39:23 +01001033 fm_alpha = ofm.clone(op.name + "_alpha", set_unique=True)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001034 mul_alpha.set_output_tensor(fm_alpha)
patrik.gustavssoneeb85152020-12-21 17:10:40 +00001035 mul_alpha.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +00001036 DebugDatabase.add_optimised(op, mul_alpha)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001037
Tim Hall93582962020-09-09 21:58:15 +01001038 if check_quantized_tens_scaling_equal(ifm, ofm):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001039 # No identity multiplication is needed
1040 fm_id = ifm
1041 else:
1042 # Add multiplication with identity
Louis Verhaardaee5d752020-09-30 09:01:52 +02001043 mul_identity = Operation(Op.Mul, op.name + "_mul_identity")
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001044 mul_identity.add_input_tensor(ifm)
1045 # Create const tensor containing identity as scalar
1046 quantization = ifm.quantization.clone()
1047 quantization.min = 0
1048 quantization.max = quantization.quant_max - quantization.quant_min
1049 quantization.scale_f32 = 1
1050 quantization.zero_point = 0
1051 identity_tens = create_const_tensor(
1052 op.name + "_id_scalar", [], ifm.dtype, [1], np.uint8, quantization=quantization
1053 )
1054 mul_identity.add_input_tensor(identity_tens)
Louis Verhaardece4e652021-01-07 13:35:47 +01001055 # Make sure that fm_id is allocated to a different address than fm_alpha
1056 fm_id = ofm.clone(op.name + "_id", set_unique=True)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001057 mul_identity.set_output_tensor(fm_id)
patrik.gustavssoneeb85152020-12-21 17:10:40 +00001058 mul_identity.set_ifm_ofm_shapes()
Patrik Gustavsson2349d422020-12-01 16:02:29 +01001059 DebugDatabase.add_optimised(op, mul_identity)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001060
1061 # Convert LeakyRelu to Max, add the results of the multiplication(s) as inputs
Louis Verhaardaee5d752020-09-30 09:01:52 +02001062 op.type = Op.Maximum
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001063 op.name = op.name.replace("LeakyRelu", "Maximum")
1064 op.inputs = []
1065 ifm.consumer_list.remove(op)
1066 op.add_input_tensor(fm_alpha)
1067 op.add_input_tensor(fm_id)
Patrik Gustavssonc509d332020-12-22 13:53:52 +01001068 op.set_ifm_ofm_shapes()
Tim Halle6ccd872020-11-09 16:46:37 +00001069
1070 DebugDatabase.add_optimised(op, op)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001071 return op
1072
1073
Louis Verhaard2e186c72020-10-09 10:47:04 +02001074def convert_to_lut(op, lut_values, lut_name):
Louis Verhaardf03bad32020-09-25 08:30:44 +02001075 # Rewrite the operation by Add with scalar 0 + LUT activation
1076 ifm = op.inputs[0]
Tim Hall93582962020-09-09 21:58:15 +01001077 if ifm is None:
1078 return op
Louis Verhaard58520b92020-08-24 16:45:38 +02001079 assert ifm.dtype.size_in_bytes() == 1
Louis Verhaardaee5d752020-09-30 09:01:52 +02001080 op.type = Op.Add
Louis Verhaard2e186c72020-10-09 10:47:04 +02001081 op.name = op.name + "_lut_" + lut_name
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001082 # Mark as no-op to enable potential fusing optimizations
1083 op.attrs["is_nop"] = True
1084 # Create an input tensor containing scalar zero
1085 quantization = QuantizationParameters(0.0, 255.0)
Louis Verhaardd7911c42020-08-25 13:36:41 +02001086 quantization.scale_f32 = ifm.quantization.scale_f32
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001087 quantization.zero_point = 0
Louis Verhaard2e186c72020-10-09 10:47:04 +02001088 tens = create_const_tensor(op.inputs[0].name + "_scalar0", [], ifm.dtype, [0], np.uint8, quantization=quantization)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001089 op.add_input_tensor(tens)
patrik.gustavssoneeb85152020-12-21 17:10:40 +00001090 op.ifm_shapes.append(Shape4D(tens.shape))
Patrik Gustavsson2349d422020-12-01 16:02:29 +01001091
Louis Verhaardf03bad32020-09-25 08:30:44 +02001092 # The LUT must be applied without any preceding rescaling (the LUT itself performs the rescale),
1093 # so even if the OFM has a different scale than the IFM, the generated OFM scale instructions
1094 # should be the same as the IFM
Louis Verhaardaee5d752020-09-30 09:01:52 +02001095 op.forced_output_quantization = ifm.quantization
Louis Verhaard2e186c72020-10-09 10:47:04 +02001096 lut_tensor = lut.create_lut_tensor(op.name + "_values", lut_values, DataType.int8)
Louis Verhaardf03bad32020-09-25 08:30:44 +02001097 op.set_activation_lut(lut_tensor)
Patrik Gustavssonc509d332020-12-22 13:53:52 +01001098 op.set_ifm_ofm_shapes()
Louis Verhaardf03bad32020-09-25 08:30:44 +02001099 return op
1100
1101
Louis Verhaard2e186c72020-10-09 10:47:04 +02001102def convert_to_lut8(op, fn, fn_name):
Louis Verhaardf03bad32020-09-25 08:30:44 +02001103 # Converts op to a no-op + int8/uint8 LUT which is generated with the given function.
1104 # fn is a function(real) -> real
Louis Verhaardaee5d752020-09-30 09:01:52 +02001105 ifm, ofm = op.get_ifm_ofm()
Louis Verhaardf03bad32020-09-25 08:30:44 +02001106 if ifm.dtype not in (DataType.uint8, DataType.int8) or ifm.dtype != ofm.dtype:
1107 return op
1108 # Generate the LUT
1109 ifm_scale = np.double(ifm.quantization.scale_f32)
1110 ofm_scale = np.double(ofm.quantization.scale_f32)
1111 zp_in = ifm.quantization.zero_point
1112 zp_out = ofm.quantization.zero_point
1113 values = []
1114 ix = range(256) if ifm.dtype == DataType.uint8 else range(-128, 128)
1115 quantized_min = min(ix)
1116 quantized_max = max(ix)
1117 for x in ix:
1118 x_real = ifm_scale * (x - zp_in)
1119 y_real = fn(x_real)
1120 lut_result = round_away_zero(zp_out + y_real / ofm_scale)
1121 lut_result = min(quantized_max, max(quantized_min, lut_result))
1122 values.append(lut_result)
Louis Verhaard2e186c72020-10-09 10:47:04 +02001123 return convert_to_lut(op, values, fn_name)
Louis Verhaardf03bad32020-09-25 08:30:44 +02001124
1125
1126def convert_lrelu_to_lut(op, arch):
Louis Verhaardaee5d752020-09-30 09:01:52 +02001127 ifm, ofm = op.get_ifm_ofm()
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001128 # Generate the LUT
Louis Verhaardd7911c42020-08-25 13:36:41 +02001129 alpha = op.attrs["alpha"]
1130 ifm_scale = np.double(ifm.quantization.scale_f32)
1131 ofm_scale = np.double(ofm.quantization.scale_f32)
1132 zp_in = ifm.quantization.zero_point
1133 zp_out = ofm.quantization.zero_point
1134 identity_scale, identity_shift = scaling.elementwise_mul_scale(ifm_scale, 1, ofm_scale)
1135 alpha_scalar = 1
1136 alpha_scale, alpha_shift = scaling.elementwise_mul_scale(ifm_scale, alpha, ofm_scale)
1137 if "alpha_scaling" in op.attrs:
1138 # The LeakyRelu was the result from convert_mul_max_to_abs_or_lrelu
1139 alpha_scalar, alpha_scale, alpha_shift = op.attrs["alpha_scaling"]
1140 values = []
Louis Verhaard58520b92020-08-24 16:45:38 +02001141 ix = range(256) if ifm.dtype == DataType.uint8 else range(-128, 128)
Louis Verhaardd7911c42020-08-25 13:36:41 +02001142 quantized_min = min(ix)
1143 quantized_max = max(ix)
1144 for x in ix:
1145 if x < zp_in:
1146 lut_result = zp_out + fp_math.multiply_by_quantized_multiplier(
1147 alpha_scalar * (x - zp_in), alpha_scale, alpha_shift
1148 )
1149 else:
1150 lut_result = zp_out + fp_math.multiply_by_quantized_multiplier(x - zp_in, identity_scale, identity_shift)
1151 lut_result = min(quantized_max, max(quantized_min, lut_result))
1152 values.append(lut_result)
Louis Verhaard2e186c72020-10-09 10:47:04 +02001153 return convert_to_lut(op, values, "lrelu")
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001154
1155
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001156def convert_lrelu(op, arch, nng):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001157 # Converts LeakyRelu to a LUT based solution if possible, otherwise a mul + max
Louis Verhaardaee5d752020-09-30 09:01:52 +02001158 if op.type != Op.LeakyRelu:
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001159 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001160 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +01001161 if ifm is None or ofm is None:
1162 return op
Louis Verhaardd7911c42020-08-25 13:36:41 +02001163 if ifm.dtype in (DataType.uint8, DataType.int8) and ifm.dtype == ofm.dtype:
1164 # use LUT for int8/uint8
1165 return convert_lrelu_to_lut(op, arch)
Tim Hall93582962020-09-09 21:58:15 +01001166 if check_quantized_tens_scaling_equal(ifm, ofm) and ifm.dtype == ofm.dtype == DataType.int16:
Louis Verhaardd7911c42020-08-25 13:36:41 +02001167 # use LeakyRelu unmodified for int16 with equal input/output scaling
1168 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001169 return convert_lrelu_to_mul_max(op, arch)
1170
1171
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001172def convert_tanh_sigmoid_to_lut(op, arch, nng):
Louis Verhaardf03bad32020-09-25 08:30:44 +02001173 # Converts int8/uint8 Sigmoid and Tanh to a LUT based solution
Louis Verhaardaee5d752020-09-30 09:01:52 +02001174 if op.type == Op.Sigmoid:
Louis Verhaard2e186c72020-10-09 10:47:04 +02001175 return convert_to_lut8(op, clamp_sigmoid, "sigmoid")
Louis Verhaardaee5d752020-09-30 09:01:52 +02001176 elif op.type == Op.Tanh:
Louis Verhaard2e186c72020-10-09 10:47:04 +02001177 return convert_to_lut8(op, math.tanh, "tanh")
Louis Verhaardf03bad32020-09-25 08:30:44 +02001178 return op
1179
1180
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001181def remove_reshapes(op, arch):
1182 if op.run_on_npu and op.type == Op.Reshape:
1183 ofm = op.ofm
1184 ifm = op.ifm
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001185
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001186 # Check if quantization is the same in the input and output for the reshape ops
1187 if not check_quantized_tens_scaling_equal(ifm, ofm):
1188 # TODO Both tensors are needed, since quantisation properties currently are linked to Tensors.
1189 # In order to remove this reshape either quantization properties need to be moved to Operator,
1190 # or the reshape need to be replace with a NOP.
1191 return
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001192
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001193 # Check if Reshape ifm/ofm are network ifm/ofm
Patrik Gustavsson138d47f2021-02-08 10:13:48 +01001194 ifm_is_sg_ifm = ifm.ops[0].type in (Op.Placeholder, Op.SubgraphInput, Op.Const)
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001195 ifm_is_sg_ofm = any(ifm_cons is None for ifm_cons in ifm.consumer_list)
1196 ofm_is_sg_ofm = any(ofm_cons is None for ofm_cons in ofm.consumer_list)
Patrik Gustavsson138d47f2021-02-08 10:13:48 +01001197 # This case should be handled prior to this function
1198 assert not ((ifm_is_sg_ifm or ifm_is_sg_ofm) and ofm_is_sg_ofm)
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001199
1200 if ofm_is_sg_ofm:
1201 # Bypassed by replacing ifm with ofm
1202 ofm.ops = []
1203 for prev_op in ifm.ops:
1204 prev_op.outputs = [ofm]
1205 ofm.ops.append(prev_op)
1206
1207 # All ifm consumers need to use ofm as input
1208 for ifm_cons in ifm.consumer_list:
1209 for ifm_idx, cons_ifm in enumerate(ifm_cons.inputs):
1210 if cons_ifm == ifm:
1211 ifm_cons.set_input_tensor(ofm, ifm_idx)
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001212 else:
1213 # Bypassed Reshape by replacing ofm with ifm
1214 for cons in ofm.consumer_list:
1215 for ifm_idx, cons_ifm in enumerate(cons.inputs):
1216 if cons_ifm == ofm:
1217 cons.set_input_tensor(ifm, ifm_idx)
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001218
1219
1220def check_reshapes(op, arch):
1221 if op.run_on_npu and op.type == Op.Reshape:
1222 ofm = op.ofm
1223
1224 if check_quantized_tens_scaling_equal(op.ifm, ofm):
1225 # Reshape should have been removed
1226 raise VelaError(f"Reshape op {op} expected to have been removed, still remains")
Patrik Gustavssonfa4cb292020-09-10 08:19:36 +02001227
1228
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001229def fuse_activation_function_with_prev(op, arch, nng):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001230 # if op is a no-op: attempts to move the activation function to the preceding op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001231 if not op.attrs.get("is_nop", False) or op.activation is None:
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001232 return op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001233 ifm, ofm = op.get_ifm_ofm()
Tim Hall93582962020-09-09 21:58:15 +01001234 if ifm is None or ofm is None:
1235 return op
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001236 # finds the input(s) to the operation
1237 prev_op = ifm.ops[0]
1238 # Note: the below checks on prev_op require that a first optimize pass on the full graph has been performed
1239 fuse = (
1240 prev_op.run_on_npu
Louis Verhaardaee5d752020-09-30 09:01:52 +02001241 and prev_op.type.npu_block_type != NpuBlockType.Default
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001242 and len(ifm.ops) == 1
1243 and len(prev_op.outputs[0].consumers()) == 1
Louis Verhaardaee5d752020-09-30 09:01:52 +02001244 and prev_op.activation is None
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001245 )
1246 if op.activation_lut is not None and arch.shram_reserved_unused_banks == 0:
1247 # TODO: if SHRAM LUT space is shared with SHRAM ACC (32, 64 MAC),
1248 # LUT currently only works correctly for elementwise ops
1249 fuse = False
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001250 if not fuse:
1251 return op
1252 # Move the fused activation function + corresponding info to prev_op
Louis Verhaardaee5d752020-09-30 09:01:52 +02001253 prev_op.activation = op.activation
1254 prev_op.forced_output_quantization = op.forced_output_quantization
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001255 if op.activation_lut is not None:
1256 prev_op.set_activation_lut(op.activation_lut)
1257 # Bypass op
Louis Verhaard98a34992020-09-01 10:39:04 +02001258 prev_op.set_output_tensor(ofm)
Tim Halle6ccd872020-11-09 16:46:37 +00001259 DebugDatabase.add_optimised(op, prev_op)
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001260 return op
1261
1262
Louis Verhaardc822d622021-03-11 14:59:06 +01001263def _leading_pad_ok(leading_pad, stride, kernel_size):
1264 # If kernel size // 2 > stride, then (left, top) padding must be a multiple of stride,
1265 # otherwise replacing PAD by hardware padding would iterate the wrong IFM rows/columns
1266 max_size = kernel_size // 2
1267 return leading_pad == max_size or max_size <= stride or leading_pad % stride == 0
1268
1269
1270def replace_pad_by_hw_pad(op: Operation, arch, nng):
Louis Verhaardae2d5532020-12-11 17:19:54 +01001271 """
Louis Verhaardc822d622021-03-11 14:59:06 +01001272 Tries to completely remove a PAD operator by using hardware padding.
1273 E.g. a PAD operation that pads 1, followed by a CONV with VALID padding and kernel size 3
1274 is rewritten such that the PAD is removed, and the CONV uses SAME padding.
Louis Verhaardae2d5532020-12-11 17:19:54 +01001275 Converts tens1 -> PAD -> tens2 -> CONV to tens1 -> CONV
1276 if both operations can be run on the NPU.
Louis Verhaardc822d622021-03-11 14:59:06 +01001277 This is the most efficient way to implement PAD, but cannot be done for all pad sizes.
Louis Verhaardae2d5532020-12-11 17:19:54 +01001278 """
1279 if (
Louis Verhaardc822d622021-03-11 14:59:06 +01001280 (op.type.is_conv2d_op() or op.type.is_depthwise_conv2d_op() or op.type.is_avgpool_op())
Louis Verhaardae2d5532020-12-11 17:19:54 +01001281 and op.run_on_npu
1282 and op.attrs["padding"] == Padding.VALID
1283 ):
1284 pad_op = op.ifm.ops[0]
1285 if pad_op.type != Op.Pad or not pad_op.run_on_npu:
1286 return op
Louis Verhaardc822d622021-03-11 14:59:06 +01001287 if pad_op.ifm.dtype != pad_op.ofm.dtype or not check_quantized_tens_scaling_equal(pad_op.ofm, pad_op.ifm):
1288 return op
1289 top, left, bottom, right = get_pad_values_from_input(pad_op.inputs[1].values)
1290 k = op.kernel
1291 k_w, k_h = k.dilated_wh()
1292
1293 # Check if the PAD operator can be replaced by hardware padding
1294 if left > k_w // 2 or right > k_w // 2 or top > k_h // 2 or bottom > k_h // 2:
1295 # Too much padding, it would require hardware padding to actually insert zeros
1296 return op
1297 if not _leading_pad_ok(top, k.stride.y, k_h) or not _leading_pad_ok(left, k.stride.x, k_w):
1298 return op
1299
Louis Verhaard1a92f782021-02-09 16:08:26 +01001300 if op.type.is_avgpool_op():
Louis Verhaardc822d622021-03-11 14:59:06 +01001301 # For average pool, hardware padding can only be used if padding is 0 or kernel size / 2
1302 for pad, k_size in (
1303 (left, k_w),
1304 (right, k_w),
1305 (top, k_h),
1306 (bottom, k_h),
1307 ):
1308 if pad not in (0, k_size // 2):
1309 return op
Louis Verhaard1a92f782021-02-09 16:08:26 +01001310 # Average pool is converted to depthwise, because NPU average pool + same padding
1311 # has a special implementation that is different from PAD followed by average pool with
1312 # valid padding.
1313 k_w, k_h = op.kernel.width, op.kernel.height
1314 ifm = op.ifm
1315 # Remember other inputs
1316 other_inputs = op.inputs[1:]
1317 # Create a weight tensor, all weights are set to 1/(kernel width * kernel height)
1318 quantization = QuantizationParameters(0.0, 255.0)
1319 quantization.scale_f32 = 1.0 / (k_w * k_h)
1320 quantization.zero_point = 0
1321 shape = [k_h, k_w, 1, op.ofm.shape[-1]]
1322 weights = np.full(shape, 1)
1323
1324 weight_tens = create_const_tensor(
1325 op.name + "_weights",
1326 shape,
1327 op.ifm.dtype,
1328 weights,
1329 np.uint8,
1330 purpose=TensorPurpose.Weights,
1331 quantization=quantization,
1332 )
1333 weight_tens.quant_values = weights
1334 op.type = Op.DepthwiseConv2DBias
1335 op.inputs = []
1336 op.add_input_tensor(ifm)
1337 op.add_input_tensor(weight_tens)
1338 # Add bias tensor, all biases set to 0
1339 op.inputs.append(None)
1340 fixup_bias_tensors(op, arch, nng)
1341 # Add other inputs
1342 op.inputs.extend(other_inputs)
1343 op.rounding_mode = NpuRoundingMode.NATURAL
1344
Louis Verhaardae2d5532020-12-11 17:19:54 +01001345 # Bypass the PAD operator
1346 op.set_input_tensor(pad_op.ifm, 0)
1347 # Adjust the padding attributes of the convolution operator
1348 op.attrs["padding"] = Padding.EXPLICIT
Louis Verhaardae2d5532020-12-11 17:19:54 +01001349 op.attrs["explicit_padding"] = (top, left, bottom, right)
1350 op.set_ifm_ofm_shapes()
1351 return op
1352
1353
Louis Verhaardc822d622021-03-11 14:59:06 +01001354def convert_pad(op: Operation, arch, nng):
1355 """
1356 Rewrites PAD operator to an average pool that copies the IFM to the OFM
1357 + up to 4 average pool operators that fill the OFM with zeros at the borders.
1358 This is done as fall-back for the PAD operators that remain after replace_pad_by_hw_pad
1359 """
1360 if op.type != Op.Pad or not op.run_on_npu:
1361 return op
1362 top, left, bottom, right = get_pad_values_from_input(op.inputs[1].values)
1363
1364 ifm = op.ifm
1365 assert ifm is not None
1366 ifm_shape = Shape4D(ifm.shape)
1367 ofm = op.ofm
1368 assert ofm is not None
1369 ofm.ops = []
1370 ofm_shape = op.ofm_shapes[0]
1371
1372 # Average pool op that copies IFM to the right place inside the OFM
1373 shp0 = Shape4D(0, 0, 0, 0)
1374 shp_top = shp0.with_height(top)
1375 avgpool_op = create_avg_pool_for_concat(op, op.name + "_main", ifm, ifm_shape, shp_top.with_width(left))
1376 avgpool_op.activation = op.activation
1377 quant = ofm.quantization
1378 pad_value = quant.zero_point
1379 # Add operations that fill the borders of the OFM
1380 if top > 0:
1381 shape = Shape4D(1, top, ofm_shape.width, ofm_shape.depth)
1382 zero_tens = create_const_tensor(
1383 op.name + "_top", shape.as_list(), ofm.dtype, shape.elements() * [pad_value], np.uint8, quantization=quant
1384 )
1385 # If top/bottom or left/right are equal, the const tensors can be allocated to the same address
1386 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
1387 create_avg_pool_for_concat(op, op.name + "_top", zero_tens, shape, shp0)
1388 if bottom > 0:
1389 shape = Shape4D(1, bottom, ofm_shape.width, ofm_shape.depth)
1390 zero_tens = create_const_tensor(
1391 op.name + "_bottom",
1392 shape.as_list(),
1393 ofm.dtype,
1394 shape.elements() * [pad_value],
1395 np.uint8,
1396 quantization=quant,
1397 )
1398 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
1399 create_avg_pool_for_concat(
1400 op, op.name + "_bottom", zero_tens, shape, shp0.with_height(ofm_shape.height - bottom)
1401 )
1402 if left > 0:
1403 shape = Shape4D(1, ifm_shape.height, left, ofm_shape.depth)
1404 zero_tens = create_const_tensor(
1405 op.name + "_left", shape.as_list(), ofm.dtype, shape.elements() * [pad_value], np.uint8, quantization=quant
1406 )
1407 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
1408 create_avg_pool_for_concat(op, op.name + "_left", zero_tens, shape, shp_top)
1409 if right > 0:
1410 shape = Shape4D(1, ifm_shape.height, right, ofm_shape.depth)
1411 zero_tens = create_const_tensor(
1412 op.name + "_right", shape.as_list(), ofm.dtype, shape.elements() * [pad_value], np.uint8, quantization=quant
1413 )
1414 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
1415 create_avg_pool_for_concat(
1416 op, op.name + "_right", zero_tens, shape, shp_top.with_width(ofm_shape.width - right)
1417 )
Patrik Gustavssonee99bb12021-04-08 09:04:00 +02001418
Louis Verhaardc822d622021-03-11 14:59:06 +01001419 op.type = Op.ConcatTFLite
1420 return avgpool_op
1421
1422
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001423def add_attrs_to_resizebilinear(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +02001424 if op.type == Op.ResizeBilinear and op.run_on_npu:
Dwight Lidman42fed942020-05-29 09:37:03 +02001425 input_tensor = op.inputs[0]
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001426 input_shape = op.ifm_shapes[0]
1427 upscaled_height = input_shape.height * 2
1428 upscaled_width = input_shape.width * 2
1429 out_shape = op.ofm_shapes[0]
1430 if not op.attrs["align_corners"] and out_shape.height == upscaled_height and out_shape.width == upscaled_width:
Dwight Lidman42fed942020-05-29 09:37:03 +02001431 # this means the output is supposed to be a x2 upscale,
1432 # so we need to do SAME padding
Michael McGeagh16895482020-12-14 15:51:20 +00001433 op.attrs["padding"] = Padding.SAME
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001434 elif (
1435 op.attrs["align_corners"]
1436 and out_shape.height == (upscaled_height - 1)
1437 and out_shape.width == (upscaled_width - 1)
1438 ):
Dwight Lidman42fed942020-05-29 09:37:03 +02001439 # here we can just run the avg pool without padding and
1440 # produce a (M * 2 - 1, N * 2 - 1) sized output
Michael McGeagh16895482020-12-14 15:51:20 +00001441 op.attrs["padding"] = Padding.VALID
Dwight Lidman42fed942020-05-29 09:37:03 +02001442 else:
Charles Xu9a03fdf2020-07-02 15:12:40 +02001443 return op
Dwight Lidman42fed942020-05-29 09:37:03 +02001444 input_tensor.resampling_mode = resampling_mode.NEAREST
Tim Hallc30f4952020-06-15 20:47:35 +01001445 op.attrs.update({"strides": (1, 1, 1, 1), "ksize": (1, 2, 2, 1)})
Dwight Lidman42fed942020-05-29 09:37:03 +02001446 return op
1447
1448
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001449def fixup_bias_tensors(op, arch, nng):
Louis Verhaardaee5d752020-09-30 09:01:52 +02001450 if op.type.needs_bias() and op.bias is None:
Jacob Bohlina41cd4d2020-08-26 18:21:28 +02001451 # Op has no bias, add bias tensor filled with zeros
1452 nr_biases = op.inputs[1].shape[-1]
1453 bias_values = [0] * nr_biases
1454 bias_tensor = create_const_tensor(op.name + "_bias", [nr_biases], DataType.int32, bias_values)
1455 bias_tensor.quant_values = bias_tensor.values
Louis Verhaard1a92f782021-02-09 16:08:26 +01001456 op.set_input_tensor(bias_tensor, op.type.info.indices.biases[0])
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +02001457
1458 return op
1459
1460
Dwight Lidman95b279f2021-03-26 10:53:28 +01001461def convert_mean_to_depthwise_conv_or_avgpool(op, arch, nng):
Dwight Lidman4f728c02020-12-17 15:14:45 +01001462 if op.type == Op.Mean and op.run_on_npu:
1463 keep_dims = op.attrs.get("keep_dims", False)
1464 inp, axis = op.inputs
1465 shape = inp.shape
1466 dims = len(shape)
1467
1468 # Height and width axes have different index depending on dimensions
1469 if axis.shape == []: # single axis
1470 axis = int(axis.values)
1471 if dims in (2, 3):
1472 if axis == 0:
1473 h, w = shape[axis], 1
1474 else:
1475 h, w = 1, shape[axis]
1476 else:
1477 if axis == 1:
1478 h, w = shape[axis], 1
1479 else:
1480 h, w = 1, shape[axis]
1481 else: # multiple axes
1482 axis = sorted(axis.values)
1483 h, w = [shape[i] for i in axis]
1484
1485 # Set necessary depthwise attributes
1486 op.attrs.update(
1487 {
1488 "padding": Padding.VALID,
1489 "stride_h": 1,
1490 "stride_w": 1,
1491 "strides": (1, 1, 1, 1),
1492 "depth_multiplier": 1,
1493 "channel_multiplier": 1,
1494 "dilation_h_factor": 1,
1495 "dilation_w_factor": 1,
1496 "dilation": (1, 1, 1, 1),
1497 }
1498 )
1499 # Change op type
1500 op.type = Op.DepthwiseConv2DBias
1501 # Set IFM/OFM shapes after changing op type
1502 op.set_ifm_ofm_shapes()
1503
Dwight Lidman9b379182021-03-15 19:06:10 +01001504 weight_scale, bias = 1, None
Dwight Lidman4f728c02020-12-17 15:14:45 +01001505 ofmq, ifmq = op.ofm.quantization, inp.quantization
1506 # Set rounding mode, scaling and zero point based on which reference implementation to match
1507 if len(shape) == 4 and axis == [1, 2] and keep_dims:
1508 if inp.dtype == DataType.uint8:
1509 # This attribute means a different scaling calculation is used in order to match reference
1510 op.low_precision_scaling = True
1511 weight_scale = h * w
Dwight Lidman9bb1e2e2021-03-18 14:51:42 +01001512 # Set zero points to 0 as they will be adjusted for with bias term
Dwight Lidman4f728c02020-12-17 15:14:45 +01001513 foq = ofmq.clone()
Dwight Lidman9bb1e2e2021-03-18 14:51:42 +01001514 foq.zero_point = 0
Dwight Lidman4f728c02020-12-17 15:14:45 +01001515 fiq = ifmq.clone()
1516 fiq.zero_point = 0
1517 op.forced_input_quantization = fiq
Dwight Lidman9bb1e2e2021-03-18 14:51:42 +01001518 bias_term = ofmq.zero_point - int(ifmq.zero_point * ifmq.scale_f32 / ofmq.scale_f32)
1519 # If the bias term is outside uint8 range, we need an Add op to apply it.
1520 if bias_term < 0 or bias_term > 255:
1521 intermediate = op.ofm.clone(suffix="_intermediate", set_unique=True)
1522 # Bias term has higher bitness (i32) than input/output (u8).
1523 # 16 bits is enough since the bias is added/subtracted from a u8 value,
1524 # the bias can only effectively assume values in the range [-255, 255].
1525 intermediate.dtype = DataType.int16
1526 intermediate.quantization.zero_point = 0
1527 add_op = Operation(Op.Add, op.name + "_bias")
1528 add_op.forced_output_quantization = foq
1529 add_op.add_input_tensor(intermediate)
1530 quant = QuantizationParameters()
1531 quant.zero_point = 0
1532 bias_term_tens = create_const_tensor(
1533 op.name + "_bias",
1534 [1, 1, 1, 1],
1535 DataType.int16,
1536 [bias_term],
1537 np.int16,
1538 quantization=quant,
1539 quant_value_dtype=np.int16,
1540 )
1541 add_op.add_input_tensor(bias_term_tens)
1542 add_op.set_output_tensor(op.ofm)
1543 add_op.set_ifm_ofm_shapes()
1544 add_op.activation = op.activation
1545 op.activation = None
1546 op.set_output_tensor(intermediate)
1547 op.set_ifm_ofm_shapes()
1548 # If not, we can just do it with the OFM zero point.
1549 else:
1550 foq.zero_point = bias_term
1551 op.forced_output_quantization = foq
Dwight Lidman4f728c02020-12-17 15:14:45 +01001552 else:
1553 assert inp.dtype == DataType.int8
1554 # Use a depthwise to calculate the sum,
1555 # followed by a multiplication with 1/N to get the MEAN
Dwight Lidman4f728c02020-12-17 15:14:45 +01001556 weight_scale = 1
1557 intermediate = op.ofm.clone(suffix="_intermediate", set_unique=True)
1558 intermediate.dtype = DataType.int16
1559 mul_op = Operation(Op.Mul, op.name + "_mul")
1560 mul_op.add_input_tensor(intermediate)
1561 # Create scalar containing 1/N
1562 quant = QuantizationParameters()
1563 quant.zero_point = 0
1564 # The reference rounds negative numbers downwards, e.g. -1.5 is rounded to -2,
1565 # while rounding mode NATURAL would round this to -1.
1566 # This can only occur if N is even, and can be emulated by
1567 # multiplying with a number that is slightly smaller than 1/N.
1568 # It must be so small that other roundings are not affected;
1569 # the calculated value is based on worst case,
1570 # which is sum 256 * N (the maximum sum that can occur with int8)
1571 n = int(h * w)
1572 eps = 1 / (256 * (n + 1)) if n % 2 == 0 else 0
1573 quant.scale_f32 = 1 / (n - eps)
1574 scalar = create_const_tensor(
1575 op.name + "_scalar", [1, 1, 1, 1], DataType.uint8, [1], np.uint8, quantization=quant
1576 )
1577 mul_op.add_input_tensor(scalar)
1578 mul_op.set_output_tensor(op.ofm)
1579 mul_op.set_ifm_ofm_shapes()
1580 mul_op.rounding_mode = NpuRoundingMode.NATURAL
1581 mul_op.activation = op.activation
1582 op.activation = None
1583 op.set_output_tensor(intermediate)
1584 op.set_ifm_ofm_shapes()
1585 elif ifmq.zero_point == ofmq.zero_point and ifmq.scale_f32 == ofmq.scale_f32:
Dwight Lidman95b279f2021-03-26 10:53:28 +01001586 # Here we can just use a simple AvgPool with truncating rounding,
1587 # as we're emulating simple integer division.
Dwight Lidman4f728c02020-12-17 15:14:45 +01001588 op.rounding_mode = NpuRoundingMode.TRUNCATE
Dwight Lidman95b279f2021-03-26 10:53:28 +01001589 op.type = Op.AvgPool
1590 op.attrs.update({"ksize": (1, h, w, 1), "filter_height": h, "filter_width": w})
Dwight Lidman4f728c02020-12-17 15:14:45 +01001591 else:
Dwight Lidman9b379182021-03-15 19:06:10 +01001592 op.rounding_mode = NpuRoundingMode.NATURAL
1593 weight_scale = 1 / (h * w)
1594 # Input zero point is adjusted after mean calculation, so we emulate that with a bias
1595 bias = -ifmq.zero_point * h * w
1596 fiq = ifmq.clone()
1597 fiq.zero_point = 0
1598 op.forced_input_quantization = fiq
Dwight Lidman4f728c02020-12-17 15:14:45 +01001599
1600 # Change dimensions to 4
1601 if dims < 4:
1602 shape = [1] + shape
1603 if dims == 2:
1604 shape += [1]
1605
1606 # If height is greater than max kernel height, reshape to from HxW to 1x(HxW)
1607 if h > 64:
1608 shape = [shape[0], 1, h * w, shape[3]]
1609 op.ifm_shapes[0] = Shape4D(shape)
Dwight Lidman95b279f2021-03-26 10:53:28 +01001610 if h > 256 and op.type == Op.AvgPool:
1611 op.attrs.update({"ksize": (1, 1, h * w, 1), "filter_height": 1, "filter_width": h * w})
1612
1613 # If the AvgPool version is used, we don't need to do anything else
1614 if op.type == Op.AvgPool:
1615 return op
Dwight Lidman4f728c02020-12-17 15:14:45 +01001616
Dwight Lidman4f728c02020-12-17 15:14:45 +01001617 # Make unit weight tensor quantization
Dwight Lidman9b379182021-03-15 19:06:10 +01001618 weight_quant = ifmq.clone()
Dwight Lidman4f728c02020-12-17 15:14:45 +01001619 weight_quant.min = 0
1620 weight_quant.max = 255
1621 weight_quant.scale_f32 = weight_scale
1622 weight_quant.zero_point = 0
1623
1624 # Set weight shape to [H,W,C,B]
1625 weight_shape = shape[1:4] + [shape[0]]
1626 # Add unit weight tensor
1627 op.set_input_tensor(
1628 create_const_tensor(
1629 "weights",
1630 weight_shape,
1631 inp.dtype,
1632 np.ones(weight_shape),
1633 value_dtype=np.uint8,
1634 quantization=weight_quant,
1635 ),
1636 1,
1637 )
Dwight Lidman9b379182021-03-15 19:06:10 +01001638 op.weights.quant_values = np.reshape(op.inputs[1].quant_values, weight_shape)
1639
Dwight Lidman95b279f2021-03-26 10:53:28 +01001640 # Add None bias tensor
1641 op.inputs.append(None)
Dwight Lidman9b379182021-03-15 19:06:10 +01001642 # Add bias tensor
1643 if bias:
1644 bias_shape = [shape[-1]]
1645 op.set_input_tensor(
1646 create_const_tensor(
1647 "bias",
1648 bias_shape,
1649 inp.dtype,
1650 np.ones(bias_shape) * bias,
1651 value_dtype=np.int32,
1652 quant_value_dtype=np.int32,
1653 quantization=None,
1654 ),
1655 2,
1656 )
Dwight Lidman4f728c02020-12-17 15:14:45 +01001657
1658 return op
1659
1660
Patrik Gustavsson3010d9b2020-10-01 08:22:10 +02001661def supported_operator_check(op, arch, nng):
Tim Hall79d07d22020-04-27 18:20:16 +01001662 op.run_on_npu = arch.supported_operators.is_operator_supported(op)
1663 return op
1664
1665
Tim Halle6ccd872020-11-09 16:46:37 +00001666def _record_optimised(op, arch):
1667 if op.type != Op.Const:
1668 DebugDatabase.add_optimised(op, op)
1669
1670
Tim Hall79d07d22020-04-27 18:20:16 +01001671def optimise_graph_a(nng, arch, verbose_graph=False):
1672 if verbose_graph:
1673 nng.print_graph()
1674
Patrik Gustavsson2349d422020-12-01 16:02:29 +01001675 pre_process_list = [
1676 supported_operator_check,
1677 set_ifm_ofm_op_shapes,
1678 # TODO: memory-only Op removal
1679 ]
1680
1681 for idx, sg in enumerate(nng.subgraphs):
1682 # rewrite graph pass
1683 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
1684 nng, sg, arch, [], pre_process_list, rewrite_unsupported=False,
1685 )
1686
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001687 # Handle Concat Ops
1688 for idx, sg in enumerate(nng.subgraphs):
1689 # rewrite graph pass
Patrik Gustavsson2c2522d2021-01-29 11:51:31 +01001690 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [rewrite_concat_ops])
1691 sg.refresh_after_modification()
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001692
1693 # Handle Split Ops
1694 for idx, sg in enumerate(nng.subgraphs):
1695 # rewrite graph pass
1696 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
1697 nng,
1698 sg,
1699 arch,
1700 [],
1701 [rewrite_unpack_output, rewrite_stridedslice_output, convert_nop_split_to_identity],
1702 rewrite_unsupported=False,
1703 )
1704
1705 for idx, sg in enumerate(nng.subgraphs):
1706 # rewrite graph pass
1707 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
1708 nng, sg, arch, [rewrite_split_ops], [], rewrite_unsupported=False,
1709 )
1710
Patrik Gustavsson138d47f2021-02-08 10:13:48 +01001711 # Handle sg input output
1712 for idx, sg in enumerate(nng.subgraphs):
1713 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
1714 nng, sg, arch, [], [fix_sg_input_output], rewrite_unsupported=False,
1715 )
1716
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001717 # Removal of reshapes
1718 for sg in nng.subgraphs:
1719 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [remove_reshapes])
1720 sg.refresh_after_modification()
1721
Tim Hall79d07d22020-04-27 18:20:16 +01001722 op_rewrite_list = [
Tim Hall4e127762020-05-15 16:05:49 +01001723 set_tensor_equivalence,
Dwight Lidman95b279f2021-03-26 10:53:28 +01001724 convert_mean_to_depthwise_conv_or_avgpool,
Tim Hall79d07d22020-04-27 18:20:16 +01001725 convert_depthwise_to_conv,
Michael McGeagh8d939c02020-07-29 13:11:43 +01001726 convert_conv_to_fc,
Fredrik Svedberga0c36242020-06-03 15:43:31 +02001727 convert_softmax,
Diqing Zhong016b8272020-12-16 16:46:06 +01001728 optimise_strided_conv,
Diqing Zhong189f7482021-01-26 12:12:51 +01001729 convert_hardswish_to_lut,
Patrik Gustavsson2c2522d2021-01-29 11:51:31 +01001730 rewrite_fully_connected_input,
Diqing Zhong94457b12020-12-09 15:22:40 +01001731 convert_batched_fc_shape,
Tim Hall79d07d22020-04-27 18:20:16 +01001732 fixup_conv2d_backprop,
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +01001733 fixup_relus_with_differing_ifm_ofm_scaling,
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001734 fixup_elementwise_with_scalars, # TODO Move to early stage?
Jacob Bohline843d332020-06-23 12:12:56 +02001735 reorder_depthwise_weights,
Charles Xu9a03fdf2020-07-02 15:12:40 +02001736 fixup_resizebilinear,
Jacob Bohlina41cd4d2020-08-26 18:21:28 +02001737 fixup_bias_tensors,
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001738 convert_mul_max_to_abs_or_lrelu,
1739 convert_lrelu,
Louis Verhaardf03bad32020-09-25 08:30:44 +02001740 convert_tanh_sigmoid_to_lut,
Louis Verhaardc822d622021-03-11 14:59:06 +01001741 replace_pad_by_hw_pad,
Tim Hall79d07d22020-04-27 18:20:16 +01001742 ]
1743
1744 for idx, sg in enumerate(nng.subgraphs):
1745 # rewrite graph pass
1746 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
Dwight Lidman73320a42020-11-05 10:34:41 +01001747 nng, sg, arch, [], op_rewrite_list, rewrite_unsupported=False,
Tim Hall79d07d22020-04-27 18:20:16 +01001748 )
1749
1750 for idx, sg in enumerate(nng.subgraphs):
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001751 # remove passthrough tensors and attempt further optimizations
1752 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
Louis Verhaardae2d5532020-12-11 17:19:54 +01001753 nng,
1754 sg,
1755 arch,
1756 [remove_passthrough_tensor],
Louis Verhaardc822d622021-03-11 14:59:06 +01001757 [fuse_activation_function_with_prev, convert_pad, add_padding_fields],
Louis Verhaardb9fc33c2020-08-13 11:47:36 +02001758 )
Tim Hall79d07d22020-04-27 18:20:16 +01001759
Patrik Gustavssone3b1b912021-02-09 15:38:46 +01001760 # Removal of SplitSliceRead, need to be done after optimisation has been performed,
1761 # since ifm/ofm_shapes are of importance to this function
1762 for sg in nng.subgraphs:
1763 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [remove_SplitSliceRead])
1764 sg.refresh_after_modification()
1765
Patrik Gustavssonee99bb12021-04-08 09:04:00 +02001766 # Check Tensor Format restrictions
1767 for sg in nng.subgraphs:
1768 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [check_format_restrictions], [])
1769 sg.refresh_after_modification()
1770
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001771 # Post-optimisation operator debug tracing, and checking that no undesired reshapes are left in the graph
Tim Halle6ccd872020-11-09 16:46:37 +00001772 for sg in nng.subgraphs:
Patrik Gustavsson3a269202021-01-21 08:28:55 +01001773 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [check_reshapes, _record_optimised])
Tim Hall79d07d22020-04-27 18:20:16 +01001774
1775 if verbose_graph:
1776 nng.print_graph()
1777 return nng