blob: a298ddbb9e9add4e72efdee421ad7fd1f4521e5f [file] [log] [blame]
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +02001# Copyright (C) 2021 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.
16# Description:
17# Early optimisation of the TOSA based network graph, using the rewrite_graph module to do the traversal of the graph.
Patrik Gustavssonf366fb12021-09-07 13:30:29 +020018import numpy as np
19
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020020from . import rewrite_graph
21from .api import NpuRoundingMode
22from .data_type import DataType
23from .debug_database import DebugDatabase
Jonas Ohlsson0957e3e2021-09-01 15:57:21 +020024from .graph_optimiser_util import bypass_memory_only_ops
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020025from .graph_optimiser_util import calc_explicit_padding
Patrik Gustavssondf995102021-08-23 15:33:59 +020026from .graph_optimiser_util import convert_depthwise_to_conv
Patrik Gustavssonf1580f02021-09-01 12:43:02 +020027from .graph_optimiser_util import move_splitsliceread_to_consumer
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020028from .graph_optimiser_util import needed_total_padding
29from .graph_optimiser_util import set_ifm_ofm_op_shapes
30from .graph_optimiser_util import set_tensor_equivalence
31from .operation import ExplicitScaling
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020032from .operation import Op
Patrik Gustavssonf1580f02021-09-01 12:43:02 +020033from .operation_util import create_add_nop
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020034from .operation_util import create_avgpool_nop
Patrik Gustavssonf1580f02021-09-01 12:43:02 +020035from .shape4d import Shape4D
36from .tensor import create_const_tensor
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +020037from .tensor import create_equivalence_id
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020038
39
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020040def replace_rescale_with_avg_pool(rescale_op):
41 assert rescale_op.type == Op.Rescale
42
43 avgpool_op = create_avgpool_nop(rescale_op.name + "_avgpool")
44 rescale_op_clone = rescale_op.clone()
45 op = rescale_op
46 op.attrs = avgpool_op.attrs.copy()
47 op.type = Op.AvgPool
48 DebugDatabase.add_optimised(rescale_op_clone, op)
49
50 return op
51
52
53def calc_skirt(kernel, input_shape, explicit_padding):
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020054 k_w, k_h = kernel.dilated_wh()
55 s_x, s_y = kernel.stride
56 ypad = needed_total_padding(int(input_shape.height), int(s_y), int(k_h))
57 xpad = needed_total_padding(int(input_shape.width), int(s_x), int(k_w))
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020058
59 top, left, bottom, right = explicit_padding
60 top_pad, bottom_pad = calc_explicit_padding(int(input_shape.height), int(s_y), int(k_h), int(top), int(bottom))
61 left_pad, right_pad = calc_explicit_padding(int(input_shape.width), int(s_x), int(k_w), int(left), int(right))
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020062
63 padding = (top_pad, left_pad, bottom_pad, right_pad)
64 skirt = (top_pad, left_pad, ypad - top_pad, xpad - left_pad)
65 return padding, skirt
66
67
68def add_padding_fields(op, arch, nng):
69 if op.run_on_npu:
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020070 if "explicit_padding" in op.attrs:
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020071 input_shape = op.ifm_shapes[0]
72
73 if op.type == Op.Conv2DBackpropInputSwitchedBias:
74 # TODO not yet supported, but there will be need for separate handling
75 assert False
76 else:
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020077 padding, skirt = calc_skirt(op.kernel, input_shape, op.attrs.get("explicit_padding"))
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020078
79 op.attrs["explicit_padding"] = padding
80 op.attrs["skirt"] = skirt
81
82 return op
83
84
Patrik Gustavssonf366fb12021-09-07 13:30:29 +020085# Counts leading zeroes for a (int32)
86def count_leading_zeros(a):
87 lz = int(32)
88 if a != 0:
89 mask = 1 << (32 - 1)
90 lz = 0
91 while (mask & a) == 0:
92 mask = mask >> 1
93 lz = lz + 1
94 return lz
95
96
97def calc_scaling_avgpool(op, arch, nng):
98 if op.type == Op.AvgPool:
99 top, left, _, _ = op.attrs["explicit_padding"]
100 # TODO Only support for when global scaling can be used.
101 # That is when there is no padding
102 assert top == 0 and left == 0
103 assert op.explicit_scaling is None
104 multiplier = []
105 shift = []
106
107 kernel_wh = op.kernel.elements_wh()
108 k = 32 - count_leading_zeros(kernel_wh - 1)
109 numerator = np.int64(((1 << 30) + 1) << k)
110 multiplier.append(numerator // kernel_wh)
111 shift.append(30 + k)
112
113 op.rounding_mode = NpuRoundingMode.NATURAL
114 op.explicit_scaling = ExplicitScaling(False, shift, multiplier)
115 return op
116
117
Patrik Gustavssondf995102021-08-23 15:33:59 +0200118def remove_const_transpose(op, arch, nng):
119 if op.type == Op.Transpose:
120 removed = False
121 if len(op.ifm.ops) == 1:
122 prev_op = op.ifm.ops[0]
123 if prev_op.type == Op.Const:
124 # Transpose the Tensor and data and remove Transpose
125 # TODO move to Tensor?
126 reorder = op.attrs["perms"]
127 shape = op.ifm.shape.copy()
128 tens = op.ifm
129
130 tens.shape = [shape[idx] for idx in reorder]
131 tens.bandwidth_shape = tens.shape
132 tens.storage_shape = tens.shape
133
134 if tens.values is not None:
135 tens.values = tens.values.transpose(reorder)
136
137 op.ofm.values = tens.values
138 # Bypass the Transpose op
139 prev_op.set_output_tensor(op.ofm)
140 DebugDatabase.add_optimised(op, prev_op)
141 removed = True
142
143 if not removed:
Patrik Gustavssonf1580f02021-09-01 12:43:02 +0200144 print("Warning: Cannot remove Transpose, and handling of Transpose is not supported")
Patrik Gustavssondf995102021-08-23 15:33:59 +0200145 assert False
146
147 return op
148
149
Patrik Gustavssonf1580f02021-09-01 12:43:02 +0200150# TODO can we change to add for both TFLite and TOSA?
151def insert_add_copy_op_after_tens(tens):
152 tens_cons_list_copy = tens.consumer_list.copy()
153 copy_tens = tens.clone()
154
155 name = tens.name + "_add"
156 ifm2 = create_const_tensor(
157 name + "_zero_scalar",
158 [1],
159 copy_tens.dtype,
160 [0],
161 copy_tens.dtype.as_numpy_type(),
162 quantization=copy_tens.quantization,
163 )
164 copy_op = create_add_nop(name)
165 copy_op.add_input_tensor(tens)
166 copy_op.add_input_tensor(ifm2)
167 copy_op.set_output_tensor(copy_tens)
168 copy_op.set_ifm_ofm_shapes()
169 copy_op.run_on_npu = True
170
171 # Set copy_ifm consumers
172 for tens_cons in tens_cons_list_copy:
173 if tens_cons is not None:
174 for ifm_idx, cons_inp in enumerate(tens_cons.inputs):
175 if cons_inp == tens:
176 tens_cons.set_input_tensor(copy_tens, ifm_idx)
177
178 DebugDatabase.add_optimised(tens.ops[0], copy_op)
179
180
181def fix_sg_input_output_tosa(op, arch, nng):
182 if not op.run_on_npu or op.type != Op.Reshape:
183 return op
184
185 # For the Reshape operators we want to remove, tensors are removed.
186 # But in order to to do this, they cannot be outputs of the sg,
187 # this need to be fixed prior to the removal.
188 # Solution is to add a copy op, to maintain the original tensor.
189 # This is also valid when reshape ifm/ofm is produced respectively
190 # consumed by CPU
191
192 # Check if operator ifm/ofm are sg ifm/ofm
193 ifm_is_sg_ifm = op.ifm.ops[0].type in (Op.Placeholder, Op.SubgraphInput, Op.Const)
194 ifm_is_sg_ofm = any(ifm_cons is None for ifm_cons in op.ifm.consumer_list)
195 ofm_is_sg_ofm = any(ofm_cons is None for ofm_cons in op.ofm.consumer_list)
196 # Check if ifm/ofm is produced repectivly consumed by CPU
197 ifm_is_cpu_produced = any(ifm_prod is not None and not ifm_prod.run_on_npu for ifm_prod in op.ifm.ops)
198 ofm_is_cpu_consumed = any(ofm_cons is not None and not ofm_cons.run_on_npu for ofm_cons in op.ofm.consumer_list)
199
200 if (ifm_is_sg_ofm or ifm_is_sg_ifm or ifm_is_cpu_produced) and (ofm_is_sg_ofm or ofm_is_cpu_consumed):
201 # Both ifm and ofm need to persist, but only ifm need a copy, in order to remove the Reshape
202 insert_add_copy_op_after_tens(op.ifm)
203
204 return op
205
206
207def create_add_for_concat(concat_op, name, ifm, ifm_shape: Shape4D, write_offset: Shape4D):
208 """Creates an add op for the given concat op/input feature map"""
209 ofm = concat_op.ofm
210 ifm2 = create_const_tensor(
211 name + "_zero_scalar", [1], ofm.dtype, [0], ofm.dtype.as_numpy_type(), quantization=ofm.quantization
212 )
213 add_op = create_add_nop(name)
214
215 add_op.inputs = [ifm, ifm2]
216 add_op.outputs = [ofm]
217 add_op.write_offset = write_offset
218 add_op.write_shape = ifm_shape
219 ofm.ops.append(add_op)
220 DebugDatabase.add_optimised(concat_op, add_op)
221 add_op.ifm_shapes.append(ifm_shape)
222 add_op.ifm_shapes.append(Shape4D(ifm2.shape))
223 add_op.ofm_shapes.append(concat_op.ofm_shapes[0])
224 add_op.memory_function = Op.ConcatSliceWrite
225 return add_op
226
227
228# TODO Could be further optimized checking the type of the consumer,
229# rather than just mimic the TFLite behaviour depending on type.
230# TOSA bool_t not considered yet
231def remove_splitsliceread(op, arch):
232
233 if op.type == Op.SplitSliceRead:
234 # Check if it is possible to put the SplitSliceRead on the tensor consumer, or if an avgpool need to be inserted
235 if (
236 len(op.ofm.consumer_list) == 1
237 and op.ofm.consumer_list[0] is not None
238 and op.ofm.consumer_list[0].run_on_npu
239 and op.ofm.consumer_list[0].type != Op.Reshape
240 and op.ofm_shapes[0] == Shape4D.from_list(op.ofm.shape)
241 and op.ofm.dtype in (DataType.uint8, DataType.int8, DataType.int16)
242 ):
243 # SplitSliceRead can be performed by tensor consumer
244 cons_op = op.ofm.consumer_list[0]
245 move_splitsliceread_to_consumer(op, cons_op)
246 else:
247 name = op.name + "_add"
248 ofm = op.ofm
249 ifm2 = create_const_tensor(
250 name + "_zero_scalar", [1], ofm.dtype, [0], ofm.dtype.as_numpy_type(), quantization=ofm.quantization
251 )
252 add_op = create_add_nop(name)
253 add_op.inputs = [op.ifm, ifm2]
254 add_op.outputs = [ofm]
255 op.ofm.ops.remove(op)
256 op.ofm.ops.append(add_op)
257 add_op.ifm_shapes.append(op.ifm_shapes[0])
258 add_op.ifm_shapes.append(Shape4D(ifm2.shape))
259 add_op.ofm_shapes.append(op.ofm_shapes[0])
260 add_op.read_offsets[0] = op.read_offsets[0]
261 add_op.read_shapes[0] = op.read_shapes[0]
262
263 op.ifm.consumer_list.remove(op)
264 DebugDatabase.add_optimised(op, add_op)
265
266
267def rewrite_concat_ops(op, arch):
268 if not op.run_on_npu or not op.type == Op.Concat:
269 return
270
271 axis_4D = 0
272 ofm = op.ofm
273 ofm.ops = []
274 offset = 0
275
276 inputs = op.inputs
277 axis = op.attrs["axis"]
278
279 for idx, inp in enumerate(inputs):
280 op.ifm_shapes[idx] = Shape4D(inp.shape)
281 if axis >= 0:
282 axis_4D = axis + (4 - len(inp.shape))
283 else:
284 axis_4D = axis
285 write_offset = [0, 0, 0, 0]
286 write_offset[axis_4D] = offset
287 concat_end = offset + op.ifm_shapes[idx][axis_4D]
288 create_add_for_concat(op, op.name + str(idx) + "_add", inp, op.ifm_shapes[idx], Shape4D.from_list(write_offset))
289 offset = concat_end
290 assert ofm.shape[axis] == offset
291
292 return op
293
294
Patrik Gustavssondf995102021-08-23 15:33:59 +0200295def remove_reshapes(op, arch):
296 if op.run_on_npu and op.type == Op.Reshape:
Jonas Ohlsson0957e3e2021-09-01 15:57:21 +0200297 bypass_memory_only_ops(op)
Patrik Gustavssondf995102021-08-23 15:33:59 +0200298
299
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200300def rewrite_activation(op, arch, nng):
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +0200301 if op.type not in (Op.ReluN, Op.Clamp):
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200302 return op
303
304 ifm = op.ifm
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200305 zp = ifm.quantization.zero_point if ifm.quantization.zero_point else 0
306 if op.ofm.quantization.zero_point is None:
307 op.ofm.quantization.zero_point = zp
308
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +0200309 if op.type == Op.Clamp:
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200310 op.attrs["min"] = op.attrs["min_int"] - zp
311 op.attrs["max"] = op.attrs["max_int"] - zp
312 elif op.type == Op.ReluN:
313 op.attrs["max"] = op.attrs["max_int"] - zp
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200314
315 return op
316
317
318def rewrite_rescale(op, arch, nng):
319 if op.type == Op.Rescale:
320 ifm = op.ifm
321 ofm = op.ofm
322
323 # some error checking
324 assert len(ifm.ops) == 1
325 prev_op = ifm.ops[0]
326
327 # TODO currently not supported
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200328 assert len(ifm.consumer_list) == 1
329
330 input_zp = op.attrs["input_zp"]
331 output_zp = op.attrs["output_zp"]
332 multiplier = op.attrs["multiplier"]
333 shift = op.attrs["shift"]
334 scale32 = op.attrs["scale32"]
335 double_round = op.attrs["double_round"]
336 per_channel = op.attrs["per_channel"]
337
338 assert ifm.dtype in (DataType.uint8, DataType.int8, DataType.int32)
339 assert ifm.dtype in (DataType.uint8, DataType.int8) or input_zp == 0
340 assert ofm.dtype in (DataType.uint8, DataType.int8) or output_zp == 0
341 assert (scale32 and ifm.dtype != DataType.int48) or (not scale32 and not double_round)
342
343 # Check that input tensor has the same zp or no zp
344 ifm_zp = ifm.quantization.zero_point
345 if ifm_zp is not None and ifm_zp != input_zp:
346 print("Error (fuse_rescale): zp of tensors producer/consumer differs unexpectedidly ")
347 assert False
348 ifm.quantization.zero_point = input_zp
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200349 ofm.quantization.zero_point = output_zp
350 for s, m in zip(shift, multiplier):
351 # TODO these are the TOSA limitations
352 assert m >= 0
353 assert 2 <= s <= 62
354 # TODO these are the HW limitations
355 assert 0 <= s < (1 << 6)
356 explicit_scaling = ExplicitScaling(per_channel, shift, multiplier)
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200357
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200358 if double_round and scale32:
359 rounding_mode = NpuRoundingMode.TFL
360 else:
361 rounding_mode = NpuRoundingMode.NATURAL
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200362
363 if prev_op.type.is_depthwise_conv2d_op() or prev_op.type.is_conv2d_op() or prev_op.type == Op.FullyConnected:
364 assert len(multiplier) == len(shift) == len(prev_op.bias.values)
365
366 if ifm.dtype == DataType.int32 and per_channel:
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200367 prev_op.explicit_scaling = explicit_scaling
368 prev_op.rounding_mode = rounding_mode
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200369
370 # Bypass op
371 prev_op.set_output_tensor(ofm)
372 DebugDatabase.add_optimised(op, prev_op)
373 return op
374 else:
375 print("Warning, unsupported fusing of TOSA Rescale previous operator is of type:", prev_op.type)
376 assert False
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200377 # TODO which are the cases we need to and can do standalone Rescale?
378 # TODO should we try to identify a conversion uint8<->int8 accomplished by 2 RESCALE ops?
379 # origin might be TFLite op QUANTIZE, should we look to see if they can be translated to QUANTIZE?
380 # limited to these at the moment:
381 elif (
382 (ifm.dtype == DataType.int8 and ofm.dtype == DataType.int8)
383 or (ifm.dtype == DataType.uint8 and ofm.dtype == DataType.int8)
384 or (ifm.dtype == DataType.int8 and ofm.dtype == DataType.uint8)
385 ):
386 # Create NOP performing the RESCALE
387 avgpool_op = replace_rescale_with_avg_pool(op)
388 avgpool_op.rounding_mode = rounding_mode
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200389
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200390 if per_channel:
391 # TODO
392 avgpool_op.explicit_scaling = explicit_scaling
393 print("Warning, unsupported TOSA Rescale")
394 assert False
395 else:
396 avgpool_op.explicit_scaling = explicit_scaling
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200397 else:
398 print("Warning, unsupported fusing of TOSA Rescale previous operator is of type:", prev_op.type)
399 assert False
400 return op
401
402
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +0200403# TODO modified copy of TFLite, solution for TOSA PAD will change so reuse has not been considered
404def convert_pad(op, arch, nng):
405 """
406 Rewrites PAD operator to an add that copies the IFM to the OFM
407 + up to 4 add operators that fill the OFM with zeros at the borders.
408 """
409
410 if op.type != Op.Pad:
411 return op
412
413 # TODO assuming rank <= 4 and N = 1 for rank ==4
414 # This is checked in tosa_supported_operators
415 ifm = op.ifm
416 assert ifm is not None
417 ifm_shape = Shape4D(ifm.shape)
418 ofm = op.ofm
419 assert ofm is not None
420 ofm.ops = []
421 ofm_shape = op.ofm_shapes[0]
422
423 rank = len(ifm.shape)
424 padding = op.inputs[1].values
425 pad_depth = padding[-1]
426 if not (pad_depth == 0).all():
427 print("Warning: For PAD, padding in depth not supported yet")
428 assert False
429
430 top, bottom = 0, 0
431 left, right = 0, 0
432 if rank > 1:
433 left, right = padding[-2][0], padding[-2][1]
434 if rank > 2:
435 top, bottom = padding[-3][0], padding[-3][1]
436 if rank == 4 and not (padding[-4] == 0).all():
437 print("Warning: For PAD, padding not supported in first dimension when rank == 4 yet")
438 assert False
439
440 # Add op that copies IFM to the right place inside the OFM
441 shp0 = Shape4D(0, 0, 0, 0)
442 shp_top = shp0.with_height(top)
443 add_op = create_add_for_concat(op, op.name + "_main", ifm, ifm_shape, shp_top.with_width(left))
444 add_op.activation = op.activation
445
446 quant = ofm.quantization
447 pad_value = ifm.quantization.zero_point
448 # Add operations that fill the borders of the OFM
449 if top > 0:
450 shape = Shape4D(1, top, ofm_shape.width, ofm_shape.depth)
451 zero_tens = create_const_tensor(
452 op.name + "_top",
453 shape.as_list(),
454 ofm.dtype,
455 shape.elements() * [pad_value],
456 np.uint8,
457 quantization=quant, # TODO
458 )
459 # If top/bottom or left/right are equal, the const tensors can be allocated to the same address
460 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
461 create_add_for_concat(op, op.name + "_top", zero_tens, shape, shp0)
462 if bottom > 0:
463 shape = Shape4D(1, bottom, ofm_shape.width, ofm_shape.depth)
464 zero_tens = create_const_tensor(
465 op.name + "_bottom",
466 shape.as_list(),
467 ofm.dtype,
468 shape.elements() * [pad_value],
469 np.uint8,
470 quantization=quant,
471 )
472 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
473 create_add_for_concat(op, op.name + "_bottom", zero_tens, shape, shp0.with_height(ofm_shape.height - bottom))
474 if left > 0:
475 shape = Shape4D(1, ifm_shape.height, left, ofm_shape.depth)
476 zero_tens = create_const_tensor(
477 op.name + "_left", shape.as_list(), ofm.dtype, shape.elements() * [pad_value], np.uint8, quantization=quant
478 )
479 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
480 create_add_for_concat(op, op.name + "_left", zero_tens, shape, shp_top)
481 if right > 0:
482 shape = Shape4D(1, ifm_shape.height, right, ofm_shape.depth)
483 zero_tens = create_const_tensor(
484 op.name + "_right", shape.as_list(), ofm.dtype, shape.elements() * [pad_value], np.uint8, quantization=quant
485 )
486 zero_tens.equivalence_id = create_equivalence_id(tuple(zero_tens.values))
487 create_add_for_concat(op, op.name + "_right", zero_tens, shape, shp_top.with_width(ofm_shape.width - right))
488
489 op.type = Op.ConcatTFLite
490 return add_op
491
492
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200493def fixup_quantization(op, arch, nng):
494 if op.ifm and op.ifm.quantization.zero_point is None:
495 op.ifm.quantization.zero_point = 0
496 if op.ifm2 and op.ifm2.quantization.zero_point is None:
497 op.ifm.quantization.zero_point = 0
498 if op.ofm and op.ofm.quantization.zero_point is None:
499 op.ofm.quantization.zero_point = 0
500 return op
501
502
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200503def supported_operator_check(op, arch, nng):
504 op.run_on_npu = arch.tosa_supported_operators.is_operator_supported(op)
Patrik Gustavssondf995102021-08-23 15:33:59 +0200505 assert op.run_on_npu or op.type in (Op.Placeholder, Op.SubgraphInput, Op.Const)
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200506 return op
507
508
509def tosa_optimise_graph(nng, arch):
510 # Pre-processing step
511 pre_process_list = [
512 supported_operator_check,
513 set_ifm_ofm_op_shapes,
514 ]
515
516 for idx, sg in enumerate(nng.subgraphs):
517 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
518 nng, sg, arch, [], pre_process_list, rewrite_unsupported=False,
519 )
520
Patrik Gustavssondf995102021-08-23 15:33:59 +0200521 # Removal of Transpose
522 for idx, sg in enumerate(nng.subgraphs):
523 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
524 nng, sg, arch, [], [remove_const_transpose], rewrite_unsupported=False,
525 )
526
527 # Handle sg input output
528 for idx, sg in enumerate(nng.subgraphs):
529 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
Patrik Gustavssonf1580f02021-09-01 12:43:02 +0200530 nng, sg, arch, [], [fix_sg_input_output_tosa], rewrite_unsupported=False,
Patrik Gustavssondf995102021-08-23 15:33:59 +0200531 )
532
Patrik Gustavssonf1580f02021-09-01 12:43:02 +0200533 # Rewrite concat ops
534 for idx, sg in enumerate(nng.subgraphs):
535 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [rewrite_concat_ops])
536 sg.refresh_after_modification()
537
Patrik Gustavssondf995102021-08-23 15:33:59 +0200538 # Removal of reshapes
539 for sg in nng.subgraphs:
540 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [remove_reshapes])
541 sg.refresh_after_modification()
542
Patrik Gustavssonf366fb12021-09-07 13:30:29 +0200543 # TODO, when and where to best handle calc_scaling_avgpool
544 for idx, sg in enumerate(nng.subgraphs):
545 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
546 nng, sg, arch, [], [calc_scaling_avgpool], rewrite_unsupported=False,
547 )
548
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200549 # Rewite Operators step
Patrik Gustavssondf995102021-08-23 15:33:59 +0200550 op_rewrite_list = [set_tensor_equivalence, rewrite_rescale, convert_depthwise_to_conv]
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200551
552 for idx, sg in enumerate(nng.subgraphs):
553 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
554 nng, sg, arch, [], op_rewrite_list, rewrite_unsupported=False,
555 )
556
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200557 # Post-processing step 1
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200558 for idx, sg in enumerate(nng.subgraphs):
559 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +0200560 nng, sg, arch, [], [rewrite_activation, convert_pad, add_padding_fields],
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200561 )
562
Patrik Gustavssonf1580f02021-09-01 12:43:02 +0200563 # Removal of Slice, need to be done after optimisation has been performed,
564 # since ifm/ofm_shapes are of importance to this function
565 for sg in nng.subgraphs:
566 rewrite_graph.visit_graph_post_order(sg.output_tensors, arch, [], [remove_splitsliceread])
567 sg.refresh_after_modification()
568
Patrik Gustavssonc74682c2021-08-17 14:26:38 +0200569 # Post-processing step 2
570 for idx, sg in enumerate(nng.subgraphs):
571 nng.subgraphs[idx] = rewrite_graph.rewrite_graph_pre_order(nng, sg, arch, [], [fixup_quantization],)
572
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +0200573 return nng