blob: 5c0d8ebea2047d3bb38b508859fb771147358224 [file] [log] [blame]
Rickard Bolinbc6ee582022-11-04 08:24:29 +00001# SPDX-FileCopyrightText: Copyright 2020-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
Tim Hall79d07d22020-04-27 18:20:16 +01002#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an AS IS BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Rickard Bolinbc6ee582022-11-04 08:24:29 +000016#
Tim Hall79d07d22020-04-27 18:20:16 +010017# Description:
18# Packs a subgraph with Neural Network Operations into Passes. Each Pass has one or more Operations.
Diego Russoea6111a2020-04-14 18:41:58 +010019import collections
Diego Russoe8a10452020-04-21 17:39:10 +010020import enum
Diego Russoea6111a2020-04-14 18:41:58 +010021
Tim Halle6ccd872020-11-09 16:46:37 +000022from .debug_database import DebugDatabase
Diego Russoe8a10452020-04-21 17:39:10 +010023from .nn_graph import Pass
24from .nn_graph import PassPlacement
25from .operation import NpuBlockType
Louis Verhaardaee5d752020-09-30 09:01:52 +020026from .operation import Op
Fredrik Svedbergd9c2c422020-12-01 16:33:45 +010027from .operation_util import create_avgpool_nop
Diego Russoea6111a2020-04-14 18:41:58 +010028from .tensor import TensorPurpose
Tim Hall79d07d22020-04-27 18:20:16 +010029
30
31class PassFlags(enum.Flag):
32 Empty = 0
Patrik Gustavsson56b6c712021-02-16 12:57:03 +010033 Main = 1
34 Post = 2
35 Mac = 4
Tim Halld8339a72021-05-27 18:49:40 +010036 ElementWise = 8
37 Npu = 16
38 Cpu = 32
39 StartupInit = 64
40 MemoryOnly = 128
41 PostFusingLimited = 256
Tim Hall79d07d22020-04-27 18:20:16 +010042
43
Tim Hall79d07d22020-04-27 18:20:16 +010044mac_main_ops = set(
45 (
46 # convolutions
Louis Verhaardaee5d752020-09-30 09:01:52 +020047 Op.Conv2DBias,
48 Op.Conv2D,
49 Op.QuantizedConv2D,
50 Op.Conv2DBackpropInputSwitchedBias,
Tim Hall79d07d22020-04-27 18:20:16 +010051 # depth-wise convolutions
Louis Verhaardaee5d752020-09-30 09:01:52 +020052 Op.DepthwiseConv2DBias,
Tim Hall79d07d22020-04-27 18:20:16 +010053 # FC layers
Louis Verhaardaee5d752020-09-30 09:01:52 +020054 Op.QuantizedMatMul,
55 Op.MatMul,
56 Op.FullyConnected,
Tim Hall79d07d22020-04-27 18:20:16 +010057 # RNN/LSTM/GRU
Louis Verhaardaee5d752020-09-30 09:01:52 +020058 Op.BlockLSTM,
Tim Hall79d07d22020-04-27 18:20:16 +010059 # pooling
Louis Verhaardaee5d752020-09-30 09:01:52 +020060 Op.QuantizedMaxPool,
61 Op.QuantizedAvgPool,
62 Op.AvgPool,
63 Op.MaxPool,
64 Op.ReduceSum,
Tim Hall79d07d22020-04-27 18:20:16 +010065 )
Tim Hall885033b2022-07-21 11:46:03 +010066 # resize ops use pooling operations unless explicitly converted to other operations prior to pass packing
67) | Op.op_set(Op.is_resize_op)
Tim Hall79d07d22020-04-27 18:20:16 +010068
Louis Verhaardaee5d752020-09-30 09:01:52 +020069binary_elem_wise_main_ops = Op.op_set(Op.is_binary_elementwise_op)
Tim Hall79d07d22020-04-27 18:20:16 +010070
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000071unary_elem_wise_main_ops = Op.op_set(Op.is_unary_elementwise_op)
Tim Hall79d07d22020-04-27 18:20:16 +010072
73elem_wise_main_ops = binary_elem_wise_main_ops | unary_elem_wise_main_ops
74
Louis Verhaardaee5d752020-09-30 09:01:52 +020075activation_ops = Op.op_set(Op.is_relu_op)
76npu_post_ops = activation_ops
Tim Hall79d07d22020-04-27 18:20:16 +010077
78npu_post_fuse_limited_ops = set(
79 # Set of post operators that should not be fused with main/elementwise ops
Patrik Gustavsson138d47f2021-02-08 10:13:48 +010080 (Op.Sigmoid, Op.Tanh, Op.Quantize)
Tim Hall79d07d22020-04-27 18:20:16 +010081)
82
Louis Verhaardaee5d752020-09-30 09:01:52 +020083elem_wise_ops = elem_wise_main_ops | activation_ops | set((Op.Sigmoid, Op.Tanh))
Tim Hall79d07d22020-04-27 18:20:16 +010084
85
Louis Verhaardaee5d752020-09-30 09:01:52 +020086quantization_ops = set((Op.Dequantize, Op.Max, Op.Min))
87cpu_ops = set((Op.Softmax, Op.LRN, Op.Shape, Op.Pad, Op.AddN)) | quantization_ops
Tim Hall79d07d22020-04-27 18:20:16 +010088
patrik.gustavsson10683622020-10-14 10:57:46 +000089startup_init_ops = set((Op.Const, Op.Placeholder, Op.SubgraphInput))
Jonas Ohlssond8575072022-03-30 10:30:25 +020090memory_only_ops = set(
91 (
92 Op.Squeeze,
93 Op.Reshape,
94 Op.QuantizedReshape,
95 Op.ExpandDims,
96 )
97)
Tim Hall79d07d22020-04-27 18:20:16 +010098
99
100test_sequence = [
101 (
102 # ops_set
103 npu_post_ops,
104 # incompatible_pack_flags
Patrik Gustavsson56b6c712021-02-16 12:57:03 +0100105 PassFlags.Cpu | PassFlags.MemoryOnly | PassFlags.Main,
Tim Hall79d07d22020-04-27 18:20:16 +0100106 # flags_to_set
107 PassFlags.Npu | PassFlags.Post,
108 # flags_to_clear
109 PassFlags.Empty,
110 ),
111 (
112 # ops_set
113 npu_post_fuse_limited_ops,
114 # incompatible_pack_flags
Tim Hallb1a9a922021-10-29 12:51:53 +0100115 PassFlags.Cpu | PassFlags.MemoryOnly | PassFlags.Main | PassFlags.PostFusingLimited,
Tim Hall79d07d22020-04-27 18:20:16 +0100116 # flags_to_set
117 PassFlags.Npu | PassFlags.PostFusingLimited,
118 # flags_to_clear
119 PassFlags.Empty,
120 ),
121 (
122 # ops_set
123 mac_main_ops,
124 # incompatible_pack_flags
Patrik Gustavsson56b6c712021-02-16 12:57:03 +0100125 PassFlags.Cpu | PassFlags.MemoryOnly | PassFlags.ElementWise | PassFlags.Main | PassFlags.PostFusingLimited,
Tim Hall79d07d22020-04-27 18:20:16 +0100126 # flags_to_set
127 PassFlags.Npu | PassFlags.Mac | PassFlags.Main,
128 # flags_to_clear
129 PassFlags.Empty,
130 ),
131 (
132 # ops_set
133 elem_wise_main_ops,
134 # incompatible_pack_flags
Patrik Gustavsson56b6c712021-02-16 12:57:03 +0100135 PassFlags.Cpu | PassFlags.MemoryOnly | PassFlags.Mac | PassFlags.Main | PassFlags.PostFusingLimited,
Tim Hall79d07d22020-04-27 18:20:16 +0100136 # flags_to_set
137 PassFlags.Npu | PassFlags.ElementWise | PassFlags.Main,
138 # flags_to_clear
139 PassFlags.Empty,
140 ),
141 (
142 # ops_set
Tim Hall79d07d22020-04-27 18:20:16 +0100143 startup_init_ops,
144 # incompatible_pack_flags
145 PassFlags.Npu | PassFlags.Cpu | PassFlags.MemoryOnly,
146 # flags_to_set
147 PassFlags.StartupInit | PassFlags.Main,
148 # flags_to_clear
149 PassFlags.Empty,
150 ),
151 (
152 # ops_set
153 memory_only_ops,
154 # incompatible_pack_flags
155 PassFlags.Npu | PassFlags.Cpu,
156 # flags_to_set
157 PassFlags.MemoryOnly | PassFlags.Main,
158 # flags_to_clear
Diego Russoea6111a2020-04-14 18:41:58 +0100159 PassFlags.Empty,
Tim Hall79d07d22020-04-27 18:20:16 +0100160 ),
161 (
162 # ops_set
163 cpu_ops,
164 # incompatible_pack_flags
165 PassFlags.Npu | PassFlags.MemoryOnly | PassFlags.Main,
166 # flags_to_set
167 PassFlags.Cpu | PassFlags.Main,
168 # flags_to_clear
Diego Russoea6111a2020-04-14 18:41:58 +0100169 PassFlags.Empty,
Tim Hall79d07d22020-04-27 18:20:16 +0100170 ),
Diego Russoea6111a2020-04-14 18:41:58 +0100171 ( # This last one is a fallback for unrecognised operations
Tim Hall79d07d22020-04-27 18:20:16 +0100172 # ops_set
173 None,
174 # incompatible_pack_flags
175 PassFlags.Npu | PassFlags.MemoryOnly | PassFlags.Main,
176 # flags_to_set
177 PassFlags.Cpu | PassFlags.Main,
178 # flags_to_clear
Diego Russoea6111a2020-04-14 18:41:58 +0100179 PassFlags.Empty,
Tim Hall79d07d22020-04-27 18:20:16 +0100180 ),
181]
182
183# Some sanity checking
184for (operation_set, incompatible_pack_flags, flags_to_set, flags_to_clear) in test_sequence:
185 assert not flags_to_clear & flags_to_set
186
Tim Hall79d07d22020-04-27 18:20:16 +0100187
188def pack_into_passes(nng, arch, verbose_packing=False):
Johan Alfvén628928d2022-01-27 06:47:26 +0100189 def visit_op(op, ignored):
Tim Hall79d07d22020-04-27 18:20:16 +0100190 visit_op_refcount[op] += 1
191
192 if visit_op_refcount[op] == 1: # First-time visit, go and fix up unused output tensors
193 for tens in op.outputs:
194 if len(tens.consumers()) == 0:
195 visit_op_refcount[op] += 1
196
Johan Alfvén628928d2022-01-27 06:47:26 +0100197 assert visit_op_refcount[op] <= len(op.outputs)
Tim Hall79d07d22020-04-27 18:20:16 +0100198 if visit_op_refcount[op] == len(op.outputs):
199
200 if op.type in startup_init_ops:
201 startup_list.append(op)
202 else:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200203 ofm_tensor = op.ofm
Tim Hall79d07d22020-04-27 18:20:16 +0100204 if ofm_tensor is None:
205 ofm_tensor = op.outputs[0]
Tim Hall73e843f2021-02-04 22:47:46 +0000206 ofm_shape = op.ofm_shapes[0] if op.run_on_npu else None
Tim Hall79d07d22020-04-27 18:20:16 +0100207
Johan Alfvén628928d2022-01-27 06:47:26 +0100208 build_pass((op,), ofm_tensor, ofm_shape)
Patrik Gustavsson6bb8f672020-12-21 14:49:13 +0100209
Johan Alfvén628928d2022-01-27 06:47:26 +0100210 def build_pass(start_ops_to_process, ofm_tensor=None, ofm_shape=None):
Tim Hall79d07d22020-04-27 18:20:16 +0100211 reverse_ops_list = []
212 curr_flags = PassFlags.Empty
213 npu_block_type = NpuBlockType.Default
214
215 reverse_intermediates = []
216 input_set = set()
217 ifm_tensor = None
218 primary_op = None
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100219 ifm_shapes = None
Tim Hall79d07d22020-04-27 18:20:16 +0100220
221 to_process = collections.deque()
222 for start_op in start_ops_to_process:
223 to_process.append((start_op, None))
224
225 while to_process:
226 curr_op, tens = to_process.popleft()
227
228 if curr_op in reverse_ops_list:
229 continue
230
231 for operation_set, incompatible_pack_flags, flags_to_set, flags_to_clear in test_sequence:
232 if operation_set is None or curr_op.type in operation_set:
233 if not (curr_flags & incompatible_pack_flags):
234 if flags_to_set & PassFlags.Npu:
235 if not curr_op.run_on_npu:
236 continue
237
238 reverse_ops_list.append(curr_op)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200239 new_block_type = curr_op.type.npu_block_type
Tim Hall79d07d22020-04-27 18:20:16 +0100240 if new_block_type != NpuBlockType.Default:
241 assert npu_block_type == NpuBlockType.Default
242 npu_block_type = new_block_type # Only one major block type per pass
243 assert primary_op is None
244 primary_op = curr_op
245
246 curr_flags &= ~flags_to_clear
247 curr_flags |= flags_to_set
248
249 if flags_to_set & PassFlags.Npu:
250 if flags_to_set & (
251 PassFlags.Mac | PassFlags.ElementWise | PassFlags.Post | PassFlags.PostFusingLimited
252 ):
253 assert len(curr_op.inputs) >= 1
Louis Verhaardaee5d752020-09-30 09:01:52 +0200254 ifm_tensor = curr_op.ifm
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100255 ifm_shapes = curr_op.ifm_shapes.copy()
Louis Verhaard04f8c002020-10-09 11:40:21 +0200256 assert ifm_tensor is not None, "IFM missing in {}".format(curr_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100257 assert ifm_tensor.purpose == TensorPurpose.FeatureMap
258
Tim Hall79d07d22020-04-27 18:20:16 +0100259 if operation_set is None:
260 print("Warning:", curr_op.type, "operation is unknown or unsupported, placing on CPU")
261
Charles Xu600351a2020-05-18 08:54:47 +0200262 for inp in reversed(curr_op.inputs):
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200263 if inp is None:
264 continue
Patrik Gustavssonfcb1a002021-02-03 09:13:57 +0100265 if can_pack(inp, curr_op):
266 to_process.append((inp.ops[0], inp))
Tim Hall79d07d22020-04-27 18:20:16 +0100267 else:
Tim Hall79d07d22020-04-27 18:20:16 +0100268 input_set.add(inp)
269
270 break
271
272 else:
273 # This operation is not compatible with already packed operations, just register the tensor as an input
274 assert tens is not None
275 input_set.add(tens)
276
277 if curr_flags & PassFlags.Npu and not curr_flags & (PassFlags.ElementWise | PassFlags.Mac):
278 # Make the choice that if we don't have a mac operation, the ambidextrous operations go on the
279 # element wise unit
280 curr_flags |= PassFlags.ElementWise
281
282 is_element_wise = True
283 for op in reverse_ops_list:
Tim Halld8339a72021-05-27 18:49:40 +0100284 if op.type not in elem_wise_ops and op.type:
Tim Hall79d07d22020-04-27 18:20:16 +0100285 is_element_wise = False
286 break
287
288 placement = PassPlacement.Unknown
289 if curr_flags & PassFlags.Npu:
290 assert placement == PassPlacement.Unknown
291 placement = PassPlacement.Npu
292 if curr_flags & PassFlags.Cpu:
293 assert placement == PassPlacement.Unknown
294 placement = PassPlacement.Cpu
295 if curr_flags & PassFlags.MemoryOnly:
296 assert placement == PassPlacement.Unknown
297 placement = PassPlacement.MemoryOnly
298 if curr_flags & PassFlags.StartupInit:
299 assert placement == PassPlacement.Unknown
300 placement = PassPlacement.StartupInit
301 assert placement != PassPlacement.Unknown
302
303 ops_list = list(reversed(reverse_ops_list))
304 intermediates = list(reversed(reverse_intermediates))
305
Diego Russoea6111a2020-04-14 18:41:58 +0100306 if primary_op is None:
Tim Hall79d07d22020-04-27 18:20:16 +0100307 primary_op = create_primary_op(ops_list)
Diego Russoea6111a2020-04-14 18:41:58 +0100308 if primary_op is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100309 visit_tensor_refcount[primary_op.inputs[0]] += 1
Louis Verhaardaee5d752020-09-30 09:01:52 +0200310 npu_block_type = primary_op.type.npu_block_type
Tim Hall79d07d22020-04-27 18:20:16 +0100311 for input_tens in primary_op.inputs:
312 if input_tens not in input_set:
313 input_set.add(input_tens)
314
315 ordered_input_list = []
Louis Verhaard0b8268a2020-08-05 16:11:29 +0200316 # Keep LUT-s in a separate list and add as inputs at the end
317 # to avoid that they would accidentally be assigned as ifm or ifm2
318 lut_list = []
Tim Hall79d07d22020-04-27 18:20:16 +0100319 input_refcounts = collections.defaultdict(int)
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200320 input_ops_list = ops_list.copy()
321
322 # Check primary_op first
323 if primary_op is not None:
324 for inp in primary_op.inputs:
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200325 if inp is None:
326 continue
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200327 add_input_list(inp, input_set, input_refcounts, lut_list, ordered_input_list)
328 input_ops_list.remove(primary_op)
329
330 # Check rest of the list
331 for op in input_ops_list:
Tim Hall79d07d22020-04-27 18:20:16 +0100332 for inp in op.inputs:
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200333 add_input_list(inp, input_set, input_refcounts, lut_list, ordered_input_list)
Tim Hall79d07d22020-04-27 18:20:16 +0100334
335 name = ops_list[0].name
Tim Hall79d07d22020-04-27 18:20:16 +0100336 ps = Pass(name, placement, is_element_wise, npu_block_type)
337 ps.ops = ops_list
338 ps.primary_op = primary_op
339 ps.inputs = ordered_input_list
340 ps.intermediates = intermediates
341 ps.outputs = list(ops_list[-1].outputs)
Tim Hall79d07d22020-04-27 18:20:16 +0100342
343 # ElementWise operation, 2 IFMs
344 if ps.primary_op and ps.primary_op.type in binary_elem_wise_main_ops:
Tim Hall79d07d22020-04-27 18:20:16 +0100345 ps.ifm_tensor = ps.inputs[0]
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200346 ps.ifm2_tensor = ps.inputs[-1]
Tim Hall79d07d22020-04-27 18:20:16 +0100347
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200348 if len(ps.inputs) > 2:
349 ps.ifm_tensor = ps.inputs[-2]
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100350
351 # Get the corresponding ifm_shapes
352 for op in input_ops_list + [primary_op]:
Patrik Gustavsson0a261cd2020-12-23 08:50:44 +0100353 if op.run_on_npu:
354 if ps.ifm_tensor == op.ifm:
355 ps.ifm_shapes.append(op.ifm_shapes[0])
356 elif ps.ifm_tensor == op.ifm2:
357 ps.ifm_shapes.append(op.ifm_shapes[1])
Tim Hallffe8e282021-06-24 18:29:53 +0100358
Patrik Gustavsson0a261cd2020-12-23 08:50:44 +0100359 if ps.ifm2_tensor == op.ifm:
360 ps.ifm_shapes.append(op.ifm_shapes[0])
361 elif ps.ifm2_tensor == op.ifm2:
362 ps.ifm_shapes.append(op.ifm_shapes[1])
Tim Hall79d07d22020-04-27 18:20:16 +0100363 else:
364 ps.ifm_tensor = ifm_tensor
365 ps.ifm2_tensor = None
Patrik Gustavssoncc6915c2020-12-22 09:16:50 +0100366 if ps.primary_op is not None and ps.primary_op.run_on_npu:
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100367 ps.ifm_shapes.append(ifm_shapes[0])
Tim Hall79d07d22020-04-27 18:20:16 +0100368
369 ps.ofm_tensor = ofm_tensor
Patrik Gustavsson6bb8f672020-12-21 14:49:13 +0100370 ps.ofm_shapes.append(ofm_shape)
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100371
Tim Hall79d07d22020-04-27 18:20:16 +0100372 assert ps.placement != PassPlacement.Npu or ps.ofm_tensor is not None
373 ps.weight_tensor = ps.get_primary_op_ifm_weights()[1]
374 ps.scale_tensor = ps.get_primary_op_ifm_weights_biases_ofm()[2]
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200375 ps.lut_tensor = ps.get_primary_op_lut()
Louis Verhaard0b8268a2020-08-05 16:11:29 +0200376 ps.inputs.extend(lut_list)
Tim Hall79d07d22020-04-27 18:20:16 +0100377
378 for op in ps.ops:
379 op.scheduled_pass = ps
380
381 reverse_pass_list.append(ps)
382
383 for inp, refcount in input_refcounts.items():
384 for _ in range(refcount):
385 visit_tensor(inp)
386
387 return ps
388
389 def visit_tensor(tens):
390 visit_tensor_refcount[tens] += 1
391 assert visit_tensor_refcount[tens] <= len(tens.consumers())
392 if visit_tensor_refcount[tens] == len(tens.consumers()):
Johan Alfvén628928d2022-01-27 06:47:26 +0100393 for op in reversed(tens.ops):
394 visit_op(op, tens)
Tim Hall79d07d22020-04-27 18:20:16 +0100395
Jacob Bohlinfb858732020-08-17 09:42:35 +0200396 def create_primary_op(op_list):
Patrik Gustavssone3b1b912021-02-09 15:38:46 +0100397 if any(op.type in (npu_post_ops | npu_post_fuse_limited_ops) and op.run_on_npu for op in op_list):
Tim Hall79d07d22020-04-27 18:20:16 +0100398 # Configure a 1x1 AvgPool and attach the op onto it
Jacob Bohlinfb858732020-08-17 09:42:35 +0200399 op = op_list[0]
Tim Hall79d07d22020-04-27 18:20:16 +0100400 inp = op.inputs[0]
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100401 avgpool_op = create_avgpool_nop(op.name + "_avgpool")
402 avgpool_op.add_input_tensor(inp)
Tim Hall79d07d22020-04-27 18:20:16 +0100403 avgpool_out = inp.clone("_avgpooled")
404 avgpool_out.consumer_list.append(op)
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100405 avgpool_op.set_output_tensor(avgpool_out)
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100406 avgpool_op.ifm_shapes = op.ifm_shapes.copy()
407 avgpool_op.ofm_shapes = op.ofm_shapes.copy()
Patrik Gustavsson56b6c712021-02-16 12:57:03 +0100408 avgpool_op.read_offsets = op.read_offsets.copy()
Tim Hall3df5b962021-12-17 14:09:19 +0000409 avgpool_op.read_shapes = op.read_shapes.copy()
Tim Hall79d07d22020-04-27 18:20:16 +0100410
411 op.inputs[0] = avgpool_out
Jacob Bohlinfb858732020-08-17 09:42:35 +0200412 op_list.insert(0, avgpool_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100413
Tim Halle6ccd872020-11-09 16:46:37 +0000414 DebugDatabase.add_optimised(op, avgpool_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100415 return avgpool_op
416
417 return None
418
Patrik Gustavssonfcb1a002021-02-03 09:13:57 +0100419 def can_pack(inp, curr_op):
420 if len(inp.ops) == 1:
421 next_op = inp.ops[0]
422 for outp in next_op.outputs:
423 consumers = outp.consumers()
424 if len(consumers) > 1 or (len(consumers) == 1 and consumers[0] != curr_op):
425 return False
426
427 # There cannot be any reshaping between next_op ofm and corresponding curr_op ifm
428 if len(curr_op.ifm_shapes) != 0 and len(next_op.ofm_shapes) != 0:
429 if inp == curr_op.ifm and next_op.ofm_shapes[0] != curr_op.ifm_shapes[0]:
430 return False
431 elif (
432 curr_op.ifm2 is not None and inp == curr_op.ifm2 and next_op.ofm_shapes[0] != curr_op.ifm_shapes[1]
433 ):
434 return False
435 else:
436 return False
437
438 return True
439
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200440 def add_input_list(inp_to_add, inp_set, inp_refcnts, lut_list, ordered_inp_list):
441 if inp_to_add in inp_set:
442 if inp_refcnts[inp_to_add] == 0:
443 if inp_to_add.purpose == TensorPurpose.LUT:
444 lut_list.append(inp_to_add)
445 else:
446 ordered_inp_list.append(inp_to_add)
447 inp_refcnts[inp_to_add] += 1
448
Tim Hall79d07d22020-04-27 18:20:16 +0100449 for sg in nng.subgraphs:
450 reverse_pass_list = []
451 visit_op_refcount = collections.defaultdict(int)
452 visit_tensor_refcount = collections.defaultdict(int)
453
454 startup_list = []
455
456 for tens in sg.output_tensors:
457 visit_tensor(tens)
458
459 if startup_list:
460 startup_ps = build_pass(startup_list)
461 startup_ps.outputs = [op.outputs[0] for op in startup_list] # Need to fixup the outputs
462 startup_ps.name = "startup_weight_initialisation"
463
Johan Alfvén0b207812022-04-19 16:07:05 +0200464 # Graphs with both CPU and NPU ops might not have an optimal order in
465 # the pass list due to how the graph is traversed (depth first search).
466 # This can result in more context switching between CPU and NPU.
467 # Try to optmize this by moving/grouping CPU ops where that is possible.
468 # Criteria for CPU pass to be moved:
469 #
470 # 1) CPU passes that only depends on sg.input_tensor can be
471 # moved to the top of the list.
472 #
473 # 2) A CPU pass X is allowed to be grouped together with CPU pass Y
474 # if there is no NPU pass between pass X and pass Y that depends
475 # on output from pass X or a MemoryOnly pass.
476 #
477 # Criteria 2 will try to move as many CPU passes towards the bottom of
478 # the list.
479
480 pass_list_top = []
481 pass_list = []
482
483 # Filter out early passes from the rest
484 for ps in list(reversed(reverse_pass_list)):
485 if startup_ps == ps:
486 # startup pass belongs in the top
487 pass_list_top.insert(0, ps)
488 continue
489
490 if (
491 ps.placement == PassPlacement.Cpu
492 and ps.ops[0].ifm in sg.input_tensors
493 and (ps.ops[0].ifm2 in sg.input_tensors or ps.ops[0].ifm2 is None)
494 ):
495 # This CPU pass only depends on sg.input_tensors
496 pass_list_top.append(ps)
497 else:
498 # Add pass to the list that will be sorted in the next step
499 pass_list.append(ps)
500
501 # Sort the rest of the list based on critera 2.
502 # Search from bottom of list and when a CPU pass is found
503 # search forward in the list and see if it is possible to join another CPU pass.
Johan Alfvén1e363b12022-05-19 07:26:03 +0200504 last_idx = len(pass_list) - 1
Johan Alfvén0b207812022-04-19 16:07:05 +0200505 for cpu_ps in reversed(pass_list):
506 if cpu_ps.placement != PassPlacement.Cpu:
507 continue
508 # CPU pass found, search forward and move pass if possible
509 idx = pass_list.index(cpu_ps)
510 for next_ps in pass_list[idx + 1 :]:
511 if next_ps.placement == PassPlacement.Cpu:
512 # It is possible to move the CPU pass
513 pass_list.remove(cpu_ps)
514 insert_index = pass_list.index(next_ps)
515 pass_list.insert(insert_index, cpu_ps)
516 break
Johan Alfvén0b207812022-04-19 16:07:05 +0200517
Johan Alfvén1e363b12022-05-19 07:26:03 +0200518 if (
519 cpu_ps.ops[0].ofm in [next_ps.ops[0].ifm, next_ps.ops[0].ifm2]
520 or next_ps.placement == PassPlacement.MemoryOnly
521 ):
522 # Not possible to move
523 break
524
525 if pass_list.index(next_ps) == last_idx:
526 # Last element, ok to move the CPU pass
527 pass_list.remove(cpu_ps)
528 pass_list.append(cpu_ps)
529 break
530
Johan Alfvén0b207812022-04-19 16:07:05 +0200531 pass_list_top.extend(pass_list)
532
533 sg.passes = pass_list_top
Tim Hall79d07d22020-04-27 18:20:16 +0100534 sg.build_pass_links()
535
536 if verbose_packing:
537 nng.print_passes()
538
539 return nng