blob: 1ce7e7e3e4b3885acbf4bea0c6b51fe72d68c63b [file] [log] [blame]
Patrik Gustavssone3b1b912021-02-09 15:38:46 +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# Generate a high-level command stream from a scheduled subgraph with CascadedPasses.
18#
19# Also used during scheduling to work out allowable IFM/OFM overlap, this functionality can be accessed using
20# calc_allowed_ofm_ifm_overlap_for_cascaded_pass().
Diego Russoe8a10452020-04-21 17:39:10 +010021from .high_level_command_stream import Box
22from .high_level_command_stream import DMA
23from .high_level_command_stream import NpuStripe
24from .nn_graph import PassPlacement
25from .nn_graph import SchedulingStrategy
Charles Xu89a6bbf2020-08-11 12:31:58 +020026from .numeric_util import round_up_divide
Louis Verhaarde8a5a782020-11-02 18:04:27 +010027from .operation import create_activation_function
Tim Hall79d07d22020-04-27 18:20:16 +010028from .operation import NpuBlockType
Louis Verhaardaee5d752020-09-30 09:01:52 +020029from .operation import Op
patrik.gustavssoneeb85152020-12-21 17:10:40 +000030from .shape4d import Shape4D
Charles Xu78792222020-05-13 10:15:26 +020031from .tensor import TensorPurpose
Tim Hall79d07d22020-04-27 18:20:16 +010032
33
Charles Xu78792222020-05-13 10:15:26 +020034def dma_if_necessary(ps, box, tensor):
Louis Verhaard3c07c972020-05-07 08:12:58 +020035 if tensor.needs_dma():
Charles Xu78792222020-05-13 10:15:26 +020036 dma_op = tensor.ops[0]
Tim Hall79d07d22020-04-27 18:20:16 +010037 in_tensor = dma_op.inputs[0]
Louis Verhaard0b8268a2020-08-05 16:11:29 +020038 yield DMA(ps, in_tensor, tensor, box)
Tim Hall79d07d22020-04-27 18:20:16 +010039
Tim Hallc30f4952020-06-15 20:47:35 +010040
Tim Hall79d07d22020-04-27 18:20:16 +010041def generate_high_level_command_stream_for_pass(strat, passes, block_configs, idx):
42 is_first = idx == 0
43 is_last = idx == len(passes) - 1
44 ps = passes[idx]
45 block_config = block_configs[idx]
Charles Xu600351a2020-05-18 08:54:47 +020046 npu_block_type = ps.npu_block_type
Patrik Gustavssone3b1b912021-02-09 15:38:46 +010047 split_offsets = list(ps.primary_op.read_offsets) # offset for [ifm, ifm2]
Charles Xu600351a2020-05-18 08:54:47 +020048
Louis Verhaard2e186c72020-10-09 10:47:04 +020049 if ps.ifm_tensor is not None and ps.ifm2_tensor is not None and npu_block_type == NpuBlockType.ElementWise:
Patrik Gustavsson438e5632020-09-01 12:23:25 +020050 # Ensure correct ifm and ifm2 order
Patrik Gustavssone3b1b912021-02-09 15:38:46 +010051 if ps.inputs[0] == ps.primary_op.inputs[1] and ps.inputs[1] == ps.primary_op.inputs[0]:
Charles Xu600351a2020-05-18 08:54:47 +020052 ps.ifm_tensor, ps.ifm2_tensor = ps.ifm2_tensor, ps.ifm_tensor
Patrik Gustavsson2349d422020-12-01 16:02:29 +010053 ps.ifm_shapes[0], ps.ifm_shapes[1] = ps.ifm_shapes[1], ps.ifm_shapes[0]
Patrik Gustavsson438e5632020-09-01 12:23:25 +020054
Tim Hall79d07d22020-04-27 18:20:16 +010055 ifm_tensor = ps.ifm_tensor
Patrik Gustavsson2349d422020-12-01 16:02:29 +010056 ifm_shape = None
57 if ifm_tensor.shape != []:
58 ifm_shape = ps.ifm_shapes[0]
Tim Hall79d07d22020-04-27 18:20:16 +010059 ifm2_tensor = ps.ifm2_tensor
Patrik Gustavsson2349d422020-12-01 16:02:29 +010060 ifm2_shape = None
61 if ifm2_tensor is not None and ifm2_tensor.shape != []:
62 ifm2_shape = ps.ifm_shapes[1]
Tim Hall79d07d22020-04-27 18:20:16 +010063 ofm_tensor = ps.ofm_tensor
Patrik Gustavsson2349d422020-12-01 16:02:29 +010064 ofm_shape = ps.ofm_shapes[0]
Tim Hall79d07d22020-04-27 18:20:16 +010065 weight_tensor = ps.weight_tensor
66 scale_tensor = ps.scale_tensor
67
patrik.gustavssoneeb85152020-12-21 17:10:40 +000068 ofm_start = [0, 0, 0, 0]
69 ofm_end = ofm_shape.as_list()
Tim Hall79d07d22020-04-27 18:20:16 +010070
71 strides = None
72 skirt = None
Jacob Bohlin611fcdf2020-06-11 15:09:57 +020073 upscaling = 1
Tim Hall79d07d22020-04-27 18:20:16 +010074 if ps.primary_op is not None:
75 strides = ps.primary_op.attrs.get("strides", None)
76 skirt = ps.primary_op.attrs.get("skirt", None)
Louis Verhaardaee5d752020-09-30 09:01:52 +020077 if ps.primary_op.type == Op.Conv2DBackpropInputSwitchedBias:
patrik.gustavssoneeb85152020-12-21 17:10:40 +000078 upscaling = ofm_shape.height // ifm_shape.height
Louis Verhaardaee5d752020-09-30 09:01:52 +020079 elif ps.primary_op.type == Op.ResizeBilinear:
patrik.gustavssoneeb85152020-12-21 17:10:40 +000080 upscaling = round_up_divide(ofm_shape.height, ifm_shape.height)
Tim Hall79d07d22020-04-27 18:20:16 +010081
Tim Hall79d07d22020-04-27 18:20:16 +010082 concat_axis = 0
83 concat_offset = 0
84
Tim Hall79d07d22020-04-27 18:20:16 +010085 for op in ps.ops:
Patrik Gustavsson138d47f2021-02-08 10:13:48 +010086 if op.attrs.get("concat_axis", None) is not None:
Tim Hall79d07d22020-04-27 18:20:16 +010087 concat_axis = op.attrs["concat_axis"]
88 concat_start = op.attrs["concat_start"]
89 concat_end = op.attrs["concat_end"]
90
91 ofm_start[concat_axis] = concat_start
92 ofm_end[concat_axis] = concat_end
93 concat_offset = concat_start
Louis Verhaardaee5d752020-09-30 09:01:52 +020094 elif op.type.is_relu_op() or op.type in (Op.Tanh, Op.Sigmoid):
Louis Verhaarde8a5a782020-11-02 18:04:27 +010095 ps.primary_op.activation = create_activation_function(op.type)
Tim Hall79d07d22020-04-27 18:20:16 +010096
Tim Hall79d07d22020-04-27 18:20:16 +010097 if strat == SchedulingStrategy.WeightStream:
98 ofm_step = block_config[-1]
99 ofm_stop = ofm_end[-1]
Louis Verhaard3c07c972020-05-07 08:12:58 +0200100 if weight_tensor is None or not weight_tensor.needs_dma():
Tim Hall79d07d22020-04-27 18:20:16 +0100101 ofm_step = ofm_stop
102 for start in range(ofm_start[-1], ofm_stop, ofm_step):
103 end = min(start + ofm_step, ofm_stop)
104 ofm_start[-1] = start
105 ofm_end[-1] = end
106 ofm_box = Box(ofm_start, ofm_end)
107 ifm_box = None
108 ifm2_box = None
109
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100110 if ifm_shape is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100111 ifm_box, _, _ = ofm_box.transform_with_strides_and_skirt(
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000112 strides, skirt, ifm_shape, npu_block_type, concat_axis, concat_offset, split_offsets[0], upscaling,
Tim Hall79d07d22020-04-27 18:20:16 +0100113 )
114 else:
115 ifm_box = Box([], [])
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100116 if ifm2_shape is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100117 ifm2_box, _, _ = ofm_box.transform_with_strides_and_skirt(
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100118 strides, skirt, ifm2_shape, npu_block_type, concat_axis, concat_offset, split_offsets[1], upscaling,
Tim Hall79d07d22020-04-27 18:20:16 +0100119 )
120 else:
121 ifm2_box = Box([], [])
122
Charles Xu78792222020-05-13 10:15:26 +0200123 for intermediate in ps.intermediates:
Tim Hallc30f4952020-06-15 20:47:35 +0100124 if (
125 intermediate is not None
126 and intermediate.shape != []
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200127 and intermediate.purpose in (TensorPurpose.FeatureMap, TensorPurpose.LUT)
Tim Hallc30f4952020-06-15 20:47:35 +0100128 ):
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200129 if intermediate.purpose is TensorPurpose.FeatureMap:
130 intermediate_box, _, _ = ofm_box.transform_with_strides_and_skirt(
131 strides,
132 skirt,
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000133 Shape4D(intermediate.shape),
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200134 npu_block_type,
135 concat_axis,
136 concat_offset,
137 split_offsets[0],
138 upscaling,
139 )
140 else:
141 intermediate_box = Box([0] * len(intermediate.shape), list(intermediate.shape))
Charles Xu78792222020-05-13 10:15:26 +0200142 yield from dma_if_necessary(ps, intermediate_box, intermediate)
143
Tim Hall79d07d22020-04-27 18:20:16 +0100144 weight_box = None
145 if weight_tensor is not None:
146 weight_oc_start = start
147 weight_oc_end = end
148 if concat_axis - len(weight_tensor.shape) == -1:
149 weight_oc_start -= concat_offset
150 weight_oc_end -= concat_offset
151
152 weight_box = Box.make_weight_box(
153 weight_tensor.shape,
154 npu_block_type,
155 weight_oc_start,
156 weight_oc_end,
157 weight_tensor.weight_transpose_depthwise,
158 )
Charles Xu78792222020-05-13 10:15:26 +0200159 yield from dma_if_necessary(ps, weight_box, weight_tensor)
Tim Hall79d07d22020-04-27 18:20:16 +0100160
161 yield NpuStripe(
162 ps,
163 block_config,
164 is_first,
165 is_last,
166 True,
167 True,
168 ifm_tensor,
169 ifm_box,
170 ofm_tensor,
171 ofm_box,
172 weight_tensor,
173 weight_box,
174 scale_tensor,
175 concat_axis,
176 concat_offset,
177 ifm2_tensor=ifm2_tensor,
178 ifm2_box=ifm2_box,
179 )
180
181 elif strat == SchedulingStrategy.IfmStream:
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000182 assert ifm_shape is not None
Tim Hall79d07d22020-04-27 18:20:16 +0100183 y_step = block_config[0]
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100184 y_start = ofm_start[-3]
185 y_dim = ofm_end[-3]
186
Tim Hall79d07d22020-04-27 18:20:16 +0100187 if idx > 0:
188 ifm_y_present = 0
189 prev_pass = passes[idx - 1]
190 prev_pass_gen = generate_high_level_command_stream_for_pass(strat, passes, block_configs, idx - 1)
191 else:
192 ifm_y_present = 1
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000193 ifm_y_present = ifm_shape.height
Tim Hall79d07d22020-04-27 18:20:16 +0100194 prev_pass_gen = []
195 prev_pass = None
196
197 if len(passes) == 1:
198 # no cascading, can just issue one big stripe
199 # but only if we've done allocation and OFM does not overlap IFM
Charles Xu04ce34c2020-06-23 12:42:28 +0200200 if ifm_tensor.address is not None and ofm_tensor.address is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100201 if (
202 ifm_tensor.address + ifm_tensor.storage_size() <= ofm_tensor.address
203 or ofm_tensor.address + ofm_tensor.storage_size() <= ifm_tensor.address
204 ):
205 y_step = y_dim
206
207 weight_box = None
Andreas Nevalainen897cc142020-10-28 15:42:08 +0100208 scale_box = None
Tim Hall79d07d22020-04-27 18:20:16 +0100209
210 for start in range(y_start, y_dim, y_step):
211 end = min(start + y_step, y_dim)
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100212 ofm_start[-3] = start
213 ofm_end[-3] = end
Tim Hall79d07d22020-04-27 18:20:16 +0100214 ofm_box = Box(ofm_start, ofm_end)
215
216 k_height = 1
Charles Xu89a6bbf2020-08-11 12:31:58 +0200217 if npu_block_type in (NpuBlockType.Pooling, NpuBlockType.ReduceSum):
Tim Hall79d07d22020-04-27 18:20:16 +0100218 if ps.primary_op is not None:
219 k_height = ps.primary_op.attrs["ksize"][1]
220 else:
221 if weight_tensor is not None:
222 k_height = weight_tensor.shape[0]
223
224 ifm_box, pad_top, pad_bottom = ofm_box.transform_with_strides_and_skirt(
Tim Hallc30f4952020-06-15 20:47:35 +0100225 strides,
226 skirt,
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100227 ifm_shape,
Tim Hallc30f4952020-06-15 20:47:35 +0100228 npu_block_type,
229 concat_axis,
230 concat_offset,
231 split_offsets[0],
232 k_height,
233 upscaling,
Tim Hall79d07d22020-04-27 18:20:16 +0100234 )
235
Diqing Zhong455e20e2021-02-03 16:37:31 +0100236 ifm_y_needed = 1
237 if len(ifm_box.end_coord) >= 3:
238 ifm_y_needed = ifm_box.end_coord[-3]
239 if ifm_y_present < ifm_y_needed:
240 for prev_cmd in prev_pass_gen:
241 yield prev_cmd
242 rng = prev_cmd.get_ofm_y_range_for_pass(prev_pass)
243 if rng is not None:
244 ifm_y_present = max(ifm_y_present, rng[1])
245 if ifm_y_present >= ifm_y_needed:
246 break
247
Charles Xu78792222020-05-13 10:15:26 +0200248 for intermediate in ps.intermediates:
Tim Hallc30f4952020-06-15 20:47:35 +0100249 if (
250 intermediate is not None
251 and intermediate.shape != []
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100252 and intermediate.purpose in (TensorPurpose.FeatureMap, TensorPurpose.LUT)
Tim Hallc30f4952020-06-15 20:47:35 +0100253 ):
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100254 if intermediate.purpose is TensorPurpose.FeatureMap:
255 intermediate_box, _, _ = ofm_box.transform_with_strides_and_skirt(
256 strides,
257 skirt,
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000258 Shape4D(intermediate.shape),
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100259 npu_block_type,
260 concat_axis,
261 concat_offset,
262 split_offsets[0],
263 upscaling,
264 )
265 else:
266 intermediate_box = Box([0] * len(intermediate.shape), list(intermediate.shape))
Charles Xu78792222020-05-13 10:15:26 +0200267 yield from dma_if_necessary(ps, intermediate_box, intermediate)
268
Andreas Nevalainen897cc142020-10-28 15:42:08 +0100269 if scale_tensor is not None and scale_tensor.purpose == TensorPurpose.FSBias and scale_box is None:
270 scale_box = Box([0] * len(scale_tensor.shape), list(scale_tensor.shape))
271 yield from dma_if_necessary(ps, scale_box, scale_tensor)
272
Tim Hall79d07d22020-04-27 18:20:16 +0100273 if weight_tensor is not None and weight_box is None:
274 weight_box = Box.make_weight_box(
275 weight_tensor.shape, npu_block_type, weights_transposed=weight_tensor.weight_transpose_depthwise
276 )
Charles Xu78792222020-05-13 10:15:26 +0200277 yield from dma_if_necessary(ps, weight_box, weight_tensor)
Tim Hall79d07d22020-04-27 18:20:16 +0100278
279 # Check if first/last stripe in pass
280 is_first_h_stripe = start == y_start
281 is_last_h_stripe = (start + y_step) >= y_dim
282
283 stripe = NpuStripe(
284 ps,
285 block_config,
286 is_first,
287 is_last,
288 is_first_h_stripe,
289 is_last_h_stripe,
290 ifm_tensor,
291 ifm_box,
292 ofm_tensor,
293 ofm_box,
294 weight_tensor,
295 weight_box,
296 scale_tensor,
297 concat_axis,
298 concat_offset,
299 None,
300 None,
301 pad_top,
302 pad_bottom,
303 )
304 yield stripe
305 else:
306 assert 0, "unknown scheduling strategy"
307
308
309def generate_high_level_command_stream_for_pass_list(strat, passes, block_configs):
310 if strat == SchedulingStrategy.WeightStream:
311 for idx in range(len(passes)):
312 yield from generate_high_level_command_stream_for_pass(strat, passes, block_configs, idx)
313 elif strat == SchedulingStrategy.IfmStream:
314 yield from generate_high_level_command_stream_for_pass(strat, passes, block_configs, len(passes) - 1)
315 else:
316 assert 0, "Unknown streaming strategy"
317
318
319def generate_high_level_command_stream_for_cascaded_pass(cps):
320 yield from generate_high_level_command_stream_for_pass_list(
321 cps.strategy, cps.passes, [ps.block_config for ps in cps.passes]
322 )
323
324
325def generate_high_level_command_stream(nng, sg, arch, verbose_high_level_command_stream):
326 res = []
327 for cps in sg.cascaded_passes:
328 if cps.placement == PassPlacement.Npu:
329 res += list(generate_high_level_command_stream_for_cascaded_pass(cps))
330
331 sg.high_level_command_stream = res
332 if verbose_high_level_command_stream:
333 sg.print_high_level_command_stream()
334
335
336def calc_allowed_ofm_ifm_overlap_for_pass_list(strat, passes, block_configs):
337 highest_ofm_write = 0
338 if not passes[0].ifm_tensor or not passes[-1].ofm_tensor:
339 return 0
340
Michael McGeagh298e3832020-11-24 14:46:03 +0000341 ifm_read = passes[0].ifm_tensor.storage_size()
Tim Hall79d07d22020-04-27 18:20:16 +0100342 min_overlap = 999999999999999999999
343 ofm_size = passes[-1].ofm_tensor.storage_size()
344 if strat == SchedulingStrategy.WeightStream:
345 return 0
346 for cmd in generate_high_level_command_stream_for_pass_list(strat, passes, block_configs):
347 if cmd.is_npu_pass_command():
348 if cmd.is_first:
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100349 ifm_read = cmd.ifm_tensor.address_offset_for_coordinate(
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100350 cmd.ifm_box.start_coord, cmd.ps.ifm_shapes[0], is_top_box=False
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100351 )
Tim Hall79d07d22020-04-27 18:20:16 +0100352 if ifm_read is None:
353 return 0
354 if cmd.is_last:
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100355 write_offset = cmd.ofm_tensor.address_offset_for_coordinate(
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100356 cmd.ofm_box.end_coord, cmd.ps.ofm_shapes[0], is_top_box=True
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100357 )
Tim Hall79d07d22020-04-27 18:20:16 +0100358 if write_offset is None:
359 return 0
360 highest_ofm_write = max(write_offset, highest_ofm_write)
361
362 if cmd.is_first or cmd.is_last:
363 overlap_required = max(highest_ofm_write - min(ifm_read, ofm_size), 0)
364 can_overwrite = ofm_size - overlap_required
365 min_overlap = min(min_overlap, can_overwrite)
366
367 if cmd.is_first:
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100368 ifm_read = cmd.ifm_tensor.address_offset_for_coordinate(
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100369 cmd.ifm_box.end_coord, cmd.ps.ifm_shapes[0], is_top_box=True
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100370 )
Tim Hall79d07d22020-04-27 18:20:16 +0100371
372 min_overlap = max(min_overlap, 0)
373 return min_overlap