blob: f157e67bf5c73fe12eba30586e6dc65fc11d458a [file] [log] [blame]
Johan Alfven89146852024-05-13 13:44:42 +02001# SPDX-FileCopyrightText: Copyright 2020-2024 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
Johan Alfven90724962023-02-02 09:07:48 +010042 Memcpy = 512
Tim Hall79d07d22020-04-27 18:20:16 +010043
44
Tim Hall79d07d22020-04-27 18:20:16 +010045mac_main_ops = set(
46 (
47 # convolutions
Louis Verhaardaee5d752020-09-30 09:01:52 +020048 Op.Conv2DBias,
49 Op.Conv2D,
50 Op.QuantizedConv2D,
51 Op.Conv2DBackpropInputSwitchedBias,
Tim Hall79d07d22020-04-27 18:20:16 +010052 # depth-wise convolutions
Louis Verhaardaee5d752020-09-30 09:01:52 +020053 Op.DepthwiseConv2DBias,
Tim Hall79d07d22020-04-27 18:20:16 +010054 # FC layers
Louis Verhaardaee5d752020-09-30 09:01:52 +020055 Op.QuantizedMatMul,
56 Op.MatMul,
57 Op.FullyConnected,
Tim Hall79d07d22020-04-27 18:20:16 +010058 # pooling
Louis Verhaardaee5d752020-09-30 09:01:52 +020059 Op.QuantizedMaxPool,
60 Op.QuantizedAvgPool,
61 Op.AvgPool,
62 Op.MaxPool,
63 Op.ReduceSum,
Tim Hall79d07d22020-04-27 18:20:16 +010064 )
Tim Hall885033b2022-07-21 11:46:03 +010065 # resize ops use pooling operations unless explicitly converted to other operations prior to pass packing
66) | Op.op_set(Op.is_resize_op)
Tim Hall79d07d22020-04-27 18:20:16 +010067
Louis Verhaardaee5d752020-09-30 09:01:52 +020068binary_elem_wise_main_ops = Op.op_set(Op.is_binary_elementwise_op)
Tim Hall79d07d22020-04-27 18:20:16 +010069
Michael McGeaghf3e3ad72020-12-02 12:39:03 +000070unary_elem_wise_main_ops = Op.op_set(Op.is_unary_elementwise_op)
Tim Hall79d07d22020-04-27 18:20:16 +010071
72elem_wise_main_ops = binary_elem_wise_main_ops | unary_elem_wise_main_ops
73
Louis Verhaardaee5d752020-09-30 09:01:52 +020074activation_ops = Op.op_set(Op.is_relu_op)
75npu_post_ops = activation_ops
Tim Hall79d07d22020-04-27 18:20:16 +010076
77npu_post_fuse_limited_ops = set(
78 # Set of post operators that should not be fused with main/elementwise ops
Patrik Gustavsson138d47f2021-02-08 10:13:48 +010079 (Op.Sigmoid, Op.Tanh, Op.Quantize)
Tim Hall79d07d22020-04-27 18:20:16 +010080)
81
Louis Verhaardaee5d752020-09-30 09:01:52 +020082elem_wise_ops = elem_wise_main_ops | activation_ops | set((Op.Sigmoid, Op.Tanh))
Tim Hall79d07d22020-04-27 18:20:16 +010083
84
Louis Verhaardaee5d752020-09-30 09:01:52 +020085quantization_ops = set((Op.Dequantize, Op.Max, Op.Min))
86cpu_ops = set((Op.Softmax, Op.LRN, Op.Shape, Op.Pad, Op.AddN)) | quantization_ops
Tim Hall79d07d22020-04-27 18:20:16 +010087
patrik.gustavsson10683622020-10-14 10:57:46 +000088startup_init_ops = set((Op.Const, Op.Placeholder, Op.SubgraphInput))
Jonas Ohlssond8575072022-03-30 10:30:25 +020089memory_only_ops = set(
90 (
91 Op.Squeeze,
92 Op.Reshape,
93 Op.QuantizedReshape,
94 Op.ExpandDims,
95 )
96)
Johan Alfven90724962023-02-02 09:07:48 +010097memcpy_ops = set((Op.Memcpy,))
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
Johan Alfven90724962023-02-02 09:07:48 +0100163 memcpy_ops,
164 # incompatible_pack_flags
165 PassFlags.Cpu | PassFlags.MemoryOnly | PassFlags.Mac | PassFlags.Main | PassFlags.PostFusingLimited,
166 # flags_to_set
167 PassFlags.Npu | PassFlags.Memcpy | PassFlags.Main,
168 # flags_to_clear
169 PassFlags.Empty,
170 ),
171 (
172 # ops_set
Tim Hall79d07d22020-04-27 18:20:16 +0100173 cpu_ops,
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 ),
Diego Russoea6111a2020-04-14 18:41:58 +0100181 ( # This last one is a fallback for unrecognised operations
Tim Hall79d07d22020-04-27 18:20:16 +0100182 # ops_set
183 None,
184 # incompatible_pack_flags
185 PassFlags.Npu | PassFlags.MemoryOnly | PassFlags.Main,
186 # flags_to_set
187 PassFlags.Cpu | PassFlags.Main,
188 # flags_to_clear
Diego Russoea6111a2020-04-14 18:41:58 +0100189 PassFlags.Empty,
Tim Hall79d07d22020-04-27 18:20:16 +0100190 ),
191]
192
193# Some sanity checking
194for (operation_set, incompatible_pack_flags, flags_to_set, flags_to_clear) in test_sequence:
195 assert not flags_to_clear & flags_to_set
196
Tim Hall79d07d22020-04-27 18:20:16 +0100197
198def pack_into_passes(nng, arch, verbose_packing=False):
Johan Alfvén628928d2022-01-27 06:47:26 +0100199 def visit_op(op, ignored):
Tim Hall79d07d22020-04-27 18:20:16 +0100200 visit_op_refcount[op] += 1
201
202 if visit_op_refcount[op] == 1: # First-time visit, go and fix up unused output tensors
203 for tens in op.outputs:
204 if len(tens.consumers()) == 0:
205 visit_op_refcount[op] += 1
206
Johan Alfvén628928d2022-01-27 06:47:26 +0100207 assert visit_op_refcount[op] <= len(op.outputs)
Tim Hall79d07d22020-04-27 18:20:16 +0100208 if visit_op_refcount[op] == len(op.outputs):
209
210 if op.type in startup_init_ops:
211 startup_list.append(op)
212 else:
Louis Verhaardaee5d752020-09-30 09:01:52 +0200213 ofm_tensor = op.ofm
Tim Hall79d07d22020-04-27 18:20:16 +0100214 if ofm_tensor is None:
215 ofm_tensor = op.outputs[0]
Tim Hall73e843f2021-02-04 22:47:46 +0000216 ofm_shape = op.ofm_shapes[0] if op.run_on_npu else None
Tim Hall79d07d22020-04-27 18:20:16 +0100217
Johan Alfvén628928d2022-01-27 06:47:26 +0100218 build_pass((op,), ofm_tensor, ofm_shape)
Patrik Gustavsson6bb8f672020-12-21 14:49:13 +0100219
Johan Alfvén628928d2022-01-27 06:47:26 +0100220 def build_pass(start_ops_to_process, ofm_tensor=None, ofm_shape=None):
Tim Hall79d07d22020-04-27 18:20:16 +0100221 reverse_ops_list = []
222 curr_flags = PassFlags.Empty
223 npu_block_type = NpuBlockType.Default
224
225 reverse_intermediates = []
226 input_set = set()
227 ifm_tensor = None
228 primary_op = None
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100229 ifm_shapes = None
Tim Hall79d07d22020-04-27 18:20:16 +0100230
231 to_process = collections.deque()
232 for start_op in start_ops_to_process:
233 to_process.append((start_op, None))
234
235 while to_process:
236 curr_op, tens = to_process.popleft()
237
238 if curr_op in reverse_ops_list:
239 continue
240
241 for operation_set, incompatible_pack_flags, flags_to_set, flags_to_clear in test_sequence:
242 if operation_set is None or curr_op.type in operation_set:
243 if not (curr_flags & incompatible_pack_flags):
244 if flags_to_set & PassFlags.Npu:
245 if not curr_op.run_on_npu:
246 continue
247
248 reverse_ops_list.append(curr_op)
Louis Verhaardaee5d752020-09-30 09:01:52 +0200249 new_block_type = curr_op.type.npu_block_type
Tim Hall79d07d22020-04-27 18:20:16 +0100250 if new_block_type != NpuBlockType.Default:
251 assert npu_block_type == NpuBlockType.Default
252 npu_block_type = new_block_type # Only one major block type per pass
253 assert primary_op is None
254 primary_op = curr_op
255
256 curr_flags &= ~flags_to_clear
257 curr_flags |= flags_to_set
258
259 if flags_to_set & PassFlags.Npu:
260 if flags_to_set & (
Johan Alfven90724962023-02-02 09:07:48 +0100261 PassFlags.Mac
262 | PassFlags.ElementWise
263 | PassFlags.Post
264 | PassFlags.PostFusingLimited
265 | PassFlags.Memcpy
Tim Hall79d07d22020-04-27 18:20:16 +0100266 ):
267 assert len(curr_op.inputs) >= 1
Louis Verhaardaee5d752020-09-30 09:01:52 +0200268 ifm_tensor = curr_op.ifm
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100269 ifm_shapes = curr_op.ifm_shapes.copy()
Louis Verhaard04f8c002020-10-09 11:40:21 +0200270 assert ifm_tensor is not None, "IFM missing in {}".format(curr_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100271 assert ifm_tensor.purpose == TensorPurpose.FeatureMap
272
Tim Hall79d07d22020-04-27 18:20:16 +0100273 if operation_set is None:
Tim Hallcd035042023-08-08 14:10:17 +0100274 assert not curr_op.run_on_npu # operator should have been placed on the CPU
Tim Hall79d07d22020-04-27 18:20:16 +0100275
Charles Xu600351a2020-05-18 08:54:47 +0200276 for inp in reversed(curr_op.inputs):
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200277 if inp is None:
278 continue
Patrik Gustavssonfcb1a002021-02-03 09:13:57 +0100279 if can_pack(inp, curr_op):
280 to_process.append((inp.ops[0], inp))
Tim Hall79d07d22020-04-27 18:20:16 +0100281 else:
Tim Hall79d07d22020-04-27 18:20:16 +0100282 input_set.add(inp)
283
284 break
285
286 else:
287 # This operation is not compatible with already packed operations, just register the tensor as an input
288 assert tens is not None
289 input_set.add(tens)
290
291 if curr_flags & PassFlags.Npu and not curr_flags & (PassFlags.ElementWise | PassFlags.Mac):
292 # Make the choice that if we don't have a mac operation, the ambidextrous operations go on the
293 # element wise unit
294 curr_flags |= PassFlags.ElementWise
295
296 is_element_wise = True
297 for op in reverse_ops_list:
Tim Halld8339a72021-05-27 18:49:40 +0100298 if op.type not in elem_wise_ops and op.type:
Tim Hall79d07d22020-04-27 18:20:16 +0100299 is_element_wise = False
300 break
301
302 placement = PassPlacement.Unknown
303 if curr_flags & PassFlags.Npu:
304 assert placement == PassPlacement.Unknown
305 placement = PassPlacement.Npu
306 if curr_flags & PassFlags.Cpu:
307 assert placement == PassPlacement.Unknown
308 placement = PassPlacement.Cpu
309 if curr_flags & PassFlags.MemoryOnly:
310 assert placement == PassPlacement.Unknown
311 placement = PassPlacement.MemoryOnly
312 if curr_flags & PassFlags.StartupInit:
313 assert placement == PassPlacement.Unknown
314 placement = PassPlacement.StartupInit
315 assert placement != PassPlacement.Unknown
316
317 ops_list = list(reversed(reverse_ops_list))
318 intermediates = list(reversed(reverse_intermediates))
319
Diego Russoea6111a2020-04-14 18:41:58 +0100320 if primary_op is None:
Tim Hall79d07d22020-04-27 18:20:16 +0100321 primary_op = create_primary_op(ops_list)
Diego Russoea6111a2020-04-14 18:41:58 +0100322 if primary_op is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100323 visit_tensor_refcount[primary_op.inputs[0]] += 1
Louis Verhaardaee5d752020-09-30 09:01:52 +0200324 npu_block_type = primary_op.type.npu_block_type
Tim Hall79d07d22020-04-27 18:20:16 +0100325 for input_tens in primary_op.inputs:
326 if input_tens not in input_set:
327 input_set.add(input_tens)
328
329 ordered_input_list = []
Louis Verhaard0b8268a2020-08-05 16:11:29 +0200330 # Keep LUT-s in a separate list and add as inputs at the end
331 # to avoid that they would accidentally be assigned as ifm or ifm2
332 lut_list = []
Tim Hall79d07d22020-04-27 18:20:16 +0100333 input_refcounts = collections.defaultdict(int)
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200334 input_ops_list = ops_list.copy()
335
336 # Check primary_op first
337 if primary_op is not None:
338 for inp in primary_op.inputs:
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200339 if inp is None:
340 continue
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200341 add_input_list(inp, input_set, input_refcounts, lut_list, ordered_input_list)
342 input_ops_list.remove(primary_op)
343
344 # Check rest of the list
345 for op in input_ops_list:
Tim Hall79d07d22020-04-27 18:20:16 +0100346 for inp in op.inputs:
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200347 add_input_list(inp, input_set, input_refcounts, lut_list, ordered_input_list)
Tim Hall79d07d22020-04-27 18:20:16 +0100348
349 name = ops_list[0].name
Tim Hall79d07d22020-04-27 18:20:16 +0100350 ps = Pass(name, placement, is_element_wise, npu_block_type)
351 ps.ops = ops_list
352 ps.primary_op = primary_op
353 ps.inputs = ordered_input_list
354 ps.intermediates = intermediates
355 ps.outputs = list(ops_list[-1].outputs)
Tim Hall79d07d22020-04-27 18:20:16 +0100356
357 # ElementWise operation, 2 IFMs
358 if ps.primary_op and ps.primary_op.type in binary_elem_wise_main_ops:
Tim Hall79d07d22020-04-27 18:20:16 +0100359 ps.ifm_tensor = ps.inputs[0]
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200360 ps.ifm2_tensor = ps.inputs[-1]
Tim Hall79d07d22020-04-27 18:20:16 +0100361
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200362 if len(ps.inputs) > 2:
363 ps.ifm_tensor = ps.inputs[-2]
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100364
365 # Get the corresponding ifm_shapes
366 for op in input_ops_list + [primary_op]:
Patrik Gustavsson0a261cd2020-12-23 08:50:44 +0100367 if op.run_on_npu:
368 if ps.ifm_tensor == op.ifm:
369 ps.ifm_shapes.append(op.ifm_shapes[0])
370 elif ps.ifm_tensor == op.ifm2:
371 ps.ifm_shapes.append(op.ifm_shapes[1])
Tim Hallffe8e282021-06-24 18:29:53 +0100372
Patrik Gustavsson0a261cd2020-12-23 08:50:44 +0100373 if ps.ifm2_tensor == op.ifm:
374 ps.ifm_shapes.append(op.ifm_shapes[0])
375 elif ps.ifm2_tensor == op.ifm2:
376 ps.ifm_shapes.append(op.ifm_shapes[1])
Tim Hall79d07d22020-04-27 18:20:16 +0100377 else:
378 ps.ifm_tensor = ifm_tensor
379 ps.ifm2_tensor = None
Patrik Gustavssoncc6915c2020-12-22 09:16:50 +0100380 if ps.primary_op is not None and ps.primary_op.run_on_npu:
Patrik Gustavsson224e99b2021-01-14 10:55:43 +0100381 ps.ifm_shapes.append(ifm_shapes[0])
Tim Hall79d07d22020-04-27 18:20:16 +0100382
383 ps.ofm_tensor = ofm_tensor
Patrik Gustavsson6bb8f672020-12-21 14:49:13 +0100384 ps.ofm_shapes.append(ofm_shape)
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100385
Tim Hall79d07d22020-04-27 18:20:16 +0100386 assert ps.placement != PassPlacement.Npu or ps.ofm_tensor is not None
387 ps.weight_tensor = ps.get_primary_op_ifm_weights()[1]
388 ps.scale_tensor = ps.get_primary_op_ifm_weights_biases_ofm()[2]
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200389 ps.lut_tensor = ps.get_primary_op_lut()
Louis Verhaard0b8268a2020-08-05 16:11:29 +0200390 ps.inputs.extend(lut_list)
Tim Hall79d07d22020-04-27 18:20:16 +0100391
392 for op in ps.ops:
393 op.scheduled_pass = ps
394
395 reverse_pass_list.append(ps)
396
397 for inp, refcount in input_refcounts.items():
398 for _ in range(refcount):
399 visit_tensor(inp)
400
401 return ps
402
403 def visit_tensor(tens):
404 visit_tensor_refcount[tens] += 1
405 assert visit_tensor_refcount[tens] <= len(tens.consumers())
406 if visit_tensor_refcount[tens] == len(tens.consumers()):
Johan Alfvén628928d2022-01-27 06:47:26 +0100407 for op in reversed(tens.ops):
408 visit_op(op, tens)
Tim Hall79d07d22020-04-27 18:20:16 +0100409
Jacob Bohlinfb858732020-08-17 09:42:35 +0200410 def create_primary_op(op_list):
Patrik Gustavssone3b1b912021-02-09 15:38:46 +0100411 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 +0100412 # Configure a 1x1 AvgPool and attach the op onto it
Jacob Bohlinfb858732020-08-17 09:42:35 +0200413 op = op_list[0]
Tim Hall79d07d22020-04-27 18:20:16 +0100414 inp = op.inputs[0]
Michael McGeagh8dbf8cf2020-09-08 11:09:48 +0100415 avgpool_op = create_avgpool_nop(op.name + "_avgpool")
416 avgpool_op.add_input_tensor(inp)
Tim Hall79d07d22020-04-27 18:20:16 +0100417 avgpool_out = inp.clone("_avgpooled")
418 avgpool_out.consumer_list.append(op)
Michael McGeaghc5b549b2020-08-07 11:54:28 +0100419 avgpool_op.set_output_tensor(avgpool_out)
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100420 avgpool_op.ifm_shapes = op.ifm_shapes.copy()
421 avgpool_op.ofm_shapes = op.ofm_shapes.copy()
Patrik Gustavsson56b6c712021-02-16 12:57:03 +0100422 avgpool_op.read_offsets = op.read_offsets.copy()
Tim Hall3df5b962021-12-17 14:09:19 +0000423 avgpool_op.read_shapes = op.read_shapes.copy()
Tim Hall79d07d22020-04-27 18:20:16 +0100424
425 op.inputs[0] = avgpool_out
Jacob Bohlinfb858732020-08-17 09:42:35 +0200426 op_list.insert(0, avgpool_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100427
Tim Halle6ccd872020-11-09 16:46:37 +0000428 DebugDatabase.add_optimised(op, avgpool_op)
Tim Hall79d07d22020-04-27 18:20:16 +0100429 return avgpool_op
430
431 return None
432
Patrik Gustavssonfcb1a002021-02-03 09:13:57 +0100433 def can_pack(inp, curr_op):
434 if len(inp.ops) == 1:
435 next_op = inp.ops[0]
436 for outp in next_op.outputs:
437 consumers = outp.consumers()
438 if len(consumers) > 1 or (len(consumers) == 1 and consumers[0] != curr_op):
439 return False
440
441 # There cannot be any reshaping between next_op ofm and corresponding curr_op ifm
442 if len(curr_op.ifm_shapes) != 0 and len(next_op.ofm_shapes) != 0:
443 if inp == curr_op.ifm and next_op.ofm_shapes[0] != curr_op.ifm_shapes[0]:
444 return False
445 elif (
446 curr_op.ifm2 is not None and inp == curr_op.ifm2 and next_op.ofm_shapes[0] != curr_op.ifm_shapes[1]
447 ):
448 return False
449 else:
450 return False
451
452 return True
453
Diqing Zhong2abd3dd2020-08-25 10:40:36 +0200454 def add_input_list(inp_to_add, inp_set, inp_refcnts, lut_list, ordered_inp_list):
455 if inp_to_add in inp_set:
456 if inp_refcnts[inp_to_add] == 0:
457 if inp_to_add.purpose == TensorPurpose.LUT:
458 lut_list.append(inp_to_add)
459 else:
460 ordered_inp_list.append(inp_to_add)
461 inp_refcnts[inp_to_add] += 1
462
Tim Hall79d07d22020-04-27 18:20:16 +0100463 for sg in nng.subgraphs:
464 reverse_pass_list = []
465 visit_op_refcount = collections.defaultdict(int)
466 visit_tensor_refcount = collections.defaultdict(int)
467
468 startup_list = []
469
470 for tens in sg.output_tensors:
471 visit_tensor(tens)
472
473 if startup_list:
474 startup_ps = build_pass(startup_list)
475 startup_ps.outputs = [op.outputs[0] for op in startup_list] # Need to fixup the outputs
476 startup_ps.name = "startup_weight_initialisation"
477
Johan Alfvén0b207812022-04-19 16:07:05 +0200478 # Graphs with both CPU and NPU ops might not have an optimal order in
479 # the pass list due to how the graph is traversed (depth first search).
480 # This can result in more context switching between CPU and NPU.
481 # Try to optmize this by moving/grouping CPU ops where that is possible.
482 # Criteria for CPU pass to be moved:
483 #
Johan Alfvena8fda882023-10-28 16:04:46 +0200484 # 1) CPU passes that only depends on sg.input_tensors can be
Johan Alfvén0b207812022-04-19 16:07:05 +0200485 # moved to the top of the list.
Johan Alfven9070f0f2023-02-07 13:01:03 +0100486 # ResourceVariables ops like VarHandle, ReadVariable, CallOnce
487 # can also be moved to the top of list.
Johan Alfvén0b207812022-04-19 16:07:05 +0200488 #
489 # 2) A CPU pass X is allowed to be grouped together with CPU pass Y
490 # if there is no NPU pass between pass X and pass Y that depends
491 # on output from pass X or a MemoryOnly pass.
492 #
493 # Criteria 2 will try to move as many CPU passes towards the bottom of
494 # the list.
495
496 pass_list_top = []
497 pass_list = []
498
499 # Filter out early passes from the rest
500 for ps in list(reversed(reverse_pass_list)):
501 if startup_ps == ps:
502 # startup pass belongs in the top
503 pass_list_top.insert(0, ps)
504 continue
505
Johan Alfvena8fda882023-10-28 16:04:46 +0200506 ifm2 = ps.ops[0].ifm2
507 if ifm2 is None:
508 # Dynamic weights must be treated as ifm's.
509 if ps.ops[0].type == Op.FullyConnected and ps.ops[0].weights.purpose == TensorPurpose.FeatureMap:
510 # Op has dynamic weights, include this in the check below
511 ifm2 = ps.ops[0].weights
512
Johan Alfven9070f0f2023-02-07 13:01:03 +0100513 if ps.placement == PassPlacement.Cpu and (
514 ps.ops[0].ifm in sg.input_tensors
Johan Alfvena8fda882023-10-28 16:04:46 +0200515 and (ifm2 in sg.input_tensors or ifm2 is None)
Johan Alfven9070f0f2023-02-07 13:01:03 +0100516 or (ps.ops[0].type in (Op.VarHandle, Op.ReadVariable, Op.CallOnce))
Johan Alfvén0b207812022-04-19 16:07:05 +0200517 ):
Johan Alfven9070f0f2023-02-07 13:01:03 +0100518 # This CPU pass only depends on sg.input_tensors or resource variable
Johan Alfvén0b207812022-04-19 16:07:05 +0200519 pass_list_top.append(ps)
520 else:
521 # Add pass to the list that will be sorted in the next step
522 pass_list.append(ps)
523
Johan Alfven9070f0f2023-02-07 13:01:03 +0100524 # Sort ops by op_index (same call order as in the original graph)
525 pass_list_top = sorted(pass_list_top, key=lambda ps: -1 if ps.ops[0].op_index is None else ps.ops[0].op_index)
526
Johan Alfven89146852024-05-13 13:44:42 +0200527 # A concat is implemented by several AvgPool ops writing to the same ofm but with slice offset
Johan Alfven722f4bf2024-05-20 11:31:41 +0200528 # If there is a cpu op in between, group all AvgPool ops for a concat so that they run
529 # within the same cmd stream
Johan Alfven89146852024-05-13 13:44:42 +0200530 last_idx = len(pass_list) - 1
531 for npu_ps in reversed(pass_list):
532 if npu_ps.placement == PassPlacement.Cpu or not npu_ps.ops[0].original_type.is_concat_op():
533 continue
534 # Concat pass found, search forward for the next avgpool op writing to the same ofm
535 idx = pass_list.index(npu_ps)
Johan Alfven722f4bf2024-05-20 11:31:41 +0200536 concat_is_split_between_npu_ops = False
Johan Alfven89146852024-05-13 13:44:42 +0200537 for next_ps in pass_list[idx + 1 :]:
Johan Alfven722f4bf2024-05-20 11:31:41 +0200538 if next_ps.placement == PassPlacement.Cpu:
539 concat_is_split_between_npu_ops = True
Johan Alfven89146852024-05-13 13:44:42 +0200540 next_is_concat = next_ps.ops[0].original_type.is_concat_op()
Johan Alfven722f4bf2024-05-20 11:31:41 +0200541 if next_is_concat and next_ps.ops[0].ofm == npu_ps.ops[0].ofm and concat_is_split_between_npu_ops:
542 # Avgpool writing to the same OFM and there is a cpu op between them, group them
Johan Alfven89146852024-05-13 13:44:42 +0200543 pass_list.remove(npu_ps)
544 insert_index = pass_list.index(next_ps)
545 pass_list.insert(insert_index, npu_ps)
546 break
547
Johan Alfvén0b207812022-04-19 16:07:05 +0200548 # Sort the rest of the list based on critera 2.
549 # Search from bottom of list and when a CPU pass is found
550 # search forward in the list and see if it is possible to join another CPU pass.
Johan Alfvén1e363b12022-05-19 07:26:03 +0200551 last_idx = len(pass_list) - 1
Johan Alfvén0b207812022-04-19 16:07:05 +0200552 for cpu_ps in reversed(pass_list):
553 if cpu_ps.placement != PassPlacement.Cpu:
554 continue
555 # CPU pass found, search forward and move pass if possible
556 idx = pass_list.index(cpu_ps)
557 for next_ps in pass_list[idx + 1 :]:
558 if next_ps.placement == PassPlacement.Cpu:
559 # It is possible to move the CPU pass
560 pass_list.remove(cpu_ps)
561 insert_index = pass_list.index(next_ps)
562 pass_list.insert(insert_index, cpu_ps)
563 break
Johan Alfvén0b207812022-04-19 16:07:05 +0200564
Johan Alfvenc72cac82023-03-09 16:01:00 +0100565 # Check all outputs from the cpu pass
Johan Alfvén1e363b12022-05-19 07:26:03 +0200566 if (
Johan Alfvenc72cac82023-03-09 16:01:00 +0100567 any(ofm in [next_ps.ops[0].ifm, next_ps.ops[0].ifm2] for ofm in cpu_ps.ops[0].outputs)
Johan Alfvén1e363b12022-05-19 07:26:03 +0200568 or next_ps.placement == PassPlacement.MemoryOnly
569 ):
Johan Alfvenc72cac82023-03-09 16:01:00 +0100570 # Not possible to move since next pass depends on the output from the cpu pass
Johan Alfvén1e363b12022-05-19 07:26:03 +0200571 break
572
573 if pass_list.index(next_ps) == last_idx:
574 # Last element, ok to move the CPU pass
575 pass_list.remove(cpu_ps)
576 pass_list.append(cpu_ps)
577 break
578
Johan Alfvén0b207812022-04-19 16:07:05 +0200579 pass_list_top.extend(pass_list)
580
581 sg.passes = pass_list_top
Tim Hall79d07d22020-04-27 18:20:16 +0100582 sg.build_pass_links()
583
584 if verbose_packing:
585 nng.print_passes()
586
587 return nng