blob: aad3783d98ff7b1f7e6c544087e163eacc5fccae [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
Louis Verhaardc822d622021-03-11 14:59:06 +010082 concat_offset = [0, 0, 0, 0]
Tim Hall79d07d22020-04-27 18:20:16 +010083
Tim Hall79d07d22020-04-27 18:20:16 +010084 for op in ps.ops:
Louis Verhaardc822d622021-03-11 14:59:06 +010085 if op.write_offset is not None:
86 concat_offset = op.write_offset.as_list()
Louis Verhaardbb010ea2021-03-31 10:01:11 +020087 ofm_start = concat_offset[:]
Louis Verhaardc822d622021-03-11 14:59:06 +010088 ofm_end = (op.write_offset + op.write_shape).as_list()
89 if op.type.is_relu_op() or op.type in (Op.Tanh, Op.Sigmoid):
Louis Verhaarde8a5a782020-11-02 18:04:27 +010090 ps.primary_op.activation = create_activation_function(op.type)
Tim Hall79d07d22020-04-27 18:20:16 +010091
Tim Hall79d07d22020-04-27 18:20:16 +010092 if strat == SchedulingStrategy.WeightStream:
93 ofm_step = block_config[-1]
94 ofm_stop = ofm_end[-1]
Louis Verhaard3c07c972020-05-07 08:12:58 +020095 if weight_tensor is None or not weight_tensor.needs_dma():
Tim Hall79d07d22020-04-27 18:20:16 +010096 ofm_step = ofm_stop
97 for start in range(ofm_start[-1], ofm_stop, ofm_step):
98 end = min(start + ofm_step, ofm_stop)
99 ofm_start[-1] = start
100 ofm_end[-1] = end
101 ofm_box = Box(ofm_start, ofm_end)
102 ifm_box = None
103 ifm2_box = None
104
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100105 if ifm_shape is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100106 ifm_box, _, _ = ofm_box.transform_with_strides_and_skirt(
Louis Verhaardc822d622021-03-11 14:59:06 +0100107 strides, skirt, ifm_shape, npu_block_type, concat_offset, split_offsets[0], upscaling,
Tim Hall79d07d22020-04-27 18:20:16 +0100108 )
109 else:
110 ifm_box = Box([], [])
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100111 if ifm2_shape is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100112 ifm2_box, _, _ = ofm_box.transform_with_strides_and_skirt(
Louis Verhaardc822d622021-03-11 14:59:06 +0100113 strides, skirt, ifm2_shape, npu_block_type, concat_offset, split_offsets[1], upscaling,
Tim Hall79d07d22020-04-27 18:20:16 +0100114 )
115 else:
116 ifm2_box = Box([], [])
117
Charles Xu78792222020-05-13 10:15:26 +0200118 for intermediate in ps.intermediates:
Tim Hallc30f4952020-06-15 20:47:35 +0100119 if (
120 intermediate is not None
121 and intermediate.shape != []
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200122 and intermediate.purpose in (TensorPurpose.FeatureMap, TensorPurpose.LUT)
Tim Hallc30f4952020-06-15 20:47:35 +0100123 ):
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200124 if intermediate.purpose is TensorPurpose.FeatureMap:
125 intermediate_box, _, _ = ofm_box.transform_with_strides_and_skirt(
126 strides,
127 skirt,
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000128 Shape4D(intermediate.shape),
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200129 npu_block_type,
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200130 concat_offset,
131 split_offsets[0],
132 upscaling,
133 )
134 else:
135 intermediate_box = Box([0] * len(intermediate.shape), list(intermediate.shape))
Charles Xu78792222020-05-13 10:15:26 +0200136 yield from dma_if_necessary(ps, intermediate_box, intermediate)
137
Tim Hall79d07d22020-04-27 18:20:16 +0100138 weight_box = None
139 if weight_tensor is not None:
Louis Verhaardc822d622021-03-11 14:59:06 +0100140 weight_offset = concat_offset[len(weight_tensor.shape) - 1]
141 weight_oc_start = start - weight_offset
142 weight_oc_end = end - weight_offset
Tim Hall79d07d22020-04-27 18:20:16 +0100143
144 weight_box = Box.make_weight_box(
145 weight_tensor.shape,
146 npu_block_type,
147 weight_oc_start,
148 weight_oc_end,
149 weight_tensor.weight_transpose_depthwise,
150 )
Charles Xu78792222020-05-13 10:15:26 +0200151 yield from dma_if_necessary(ps, weight_box, weight_tensor)
Tim Hall79d07d22020-04-27 18:20:16 +0100152
153 yield NpuStripe(
154 ps,
155 block_config,
156 is_first,
157 is_last,
158 True,
159 True,
160 ifm_tensor,
161 ifm_box,
162 ofm_tensor,
163 ofm_box,
164 weight_tensor,
165 weight_box,
166 scale_tensor,
Tim Hall79d07d22020-04-27 18:20:16 +0100167 ifm2_tensor=ifm2_tensor,
168 ifm2_box=ifm2_box,
169 )
170
171 elif strat == SchedulingStrategy.IfmStream:
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000172 assert ifm_shape is not None
Tim Hall79d07d22020-04-27 18:20:16 +0100173 y_step = block_config[0]
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100174 y_start = ofm_start[-3]
175 y_dim = ofm_end[-3]
176
Tim Hall79d07d22020-04-27 18:20:16 +0100177 if idx > 0:
178 ifm_y_present = 0
179 prev_pass = passes[idx - 1]
180 prev_pass_gen = generate_high_level_command_stream_for_pass(strat, passes, block_configs, idx - 1)
181 else:
182 ifm_y_present = 1
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000183 ifm_y_present = ifm_shape.height
Tim Hall79d07d22020-04-27 18:20:16 +0100184 prev_pass_gen = []
185 prev_pass = None
186
187 if len(passes) == 1:
188 # no cascading, can just issue one big stripe
189 # but only if we've done allocation and OFM does not overlap IFM
Charles Xu04ce34c2020-06-23 12:42:28 +0200190 if ifm_tensor.address is not None and ofm_tensor.address is not None:
Tim Hall79d07d22020-04-27 18:20:16 +0100191 if (
192 ifm_tensor.address + ifm_tensor.storage_size() <= ofm_tensor.address
193 or ofm_tensor.address + ofm_tensor.storage_size() <= ifm_tensor.address
194 ):
195 y_step = y_dim
196
197 weight_box = None
Andreas Nevalainen897cc142020-10-28 15:42:08 +0100198 scale_box = None
Tim Hall79d07d22020-04-27 18:20:16 +0100199
200 for start in range(y_start, y_dim, y_step):
201 end = min(start + y_step, y_dim)
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100202 ofm_start[-3] = start
203 ofm_end[-3] = end
Tim Hall79d07d22020-04-27 18:20:16 +0100204 ofm_box = Box(ofm_start, ofm_end)
205
206 k_height = 1
Charles Xu89a6bbf2020-08-11 12:31:58 +0200207 if npu_block_type in (NpuBlockType.Pooling, NpuBlockType.ReduceSum):
Tim Hall79d07d22020-04-27 18:20:16 +0100208 if ps.primary_op is not None:
209 k_height = ps.primary_op.attrs["ksize"][1]
210 else:
211 if weight_tensor is not None:
212 k_height = weight_tensor.shape[0]
213
214 ifm_box, pad_top, pad_bottom = ofm_box.transform_with_strides_and_skirt(
Louis Verhaardc822d622021-03-11 14:59:06 +0100215 strides, skirt, ifm_shape, npu_block_type, concat_offset, split_offsets[0], k_height, upscaling,
Tim Hall79d07d22020-04-27 18:20:16 +0100216 )
217
Diqing Zhong455e20e2021-02-03 16:37:31 +0100218 ifm_y_needed = 1
219 if len(ifm_box.end_coord) >= 3:
220 ifm_y_needed = ifm_box.end_coord[-3]
221 if ifm_y_present < ifm_y_needed:
222 for prev_cmd in prev_pass_gen:
223 yield prev_cmd
224 rng = prev_cmd.get_ofm_y_range_for_pass(prev_pass)
225 if rng is not None:
226 ifm_y_present = max(ifm_y_present, rng[1])
227 if ifm_y_present >= ifm_y_needed:
228 break
229
Charles Xu78792222020-05-13 10:15:26 +0200230 for intermediate in ps.intermediates:
Tim Hallc30f4952020-06-15 20:47:35 +0100231 if (
232 intermediate is not None
233 and intermediate.shape != []
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100234 and intermediate.purpose in (TensorPurpose.FeatureMap, TensorPurpose.LUT)
Tim Hallc30f4952020-06-15 20:47:35 +0100235 ):
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100236 if intermediate.purpose is TensorPurpose.FeatureMap:
237 intermediate_box, _, _ = ofm_box.transform_with_strides_and_skirt(
238 strides,
239 skirt,
patrik.gustavssoneeb85152020-12-21 17:10:40 +0000240 Shape4D(intermediate.shape),
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100241 npu_block_type,
Michael McGeagh34ad19b2020-09-04 15:44:23 +0100242 concat_offset,
243 split_offsets[0],
244 upscaling,
245 )
246 else:
247 intermediate_box = Box([0] * len(intermediate.shape), list(intermediate.shape))
Charles Xu78792222020-05-13 10:15:26 +0200248 yield from dma_if_necessary(ps, intermediate_box, intermediate)
249
Andreas Nevalainen897cc142020-10-28 15:42:08 +0100250 if scale_tensor is not None and scale_tensor.purpose == TensorPurpose.FSBias and scale_box is None:
251 scale_box = Box([0] * len(scale_tensor.shape), list(scale_tensor.shape))
252 yield from dma_if_necessary(ps, scale_box, scale_tensor)
253
Tim Hall79d07d22020-04-27 18:20:16 +0100254 if weight_tensor is not None and weight_box is None:
255 weight_box = Box.make_weight_box(
256 weight_tensor.shape, npu_block_type, weights_transposed=weight_tensor.weight_transpose_depthwise
257 )
Charles Xu78792222020-05-13 10:15:26 +0200258 yield from dma_if_necessary(ps, weight_box, weight_tensor)
Tim Hall79d07d22020-04-27 18:20:16 +0100259
260 # Check if first/last stripe in pass
261 is_first_h_stripe = start == y_start
262 is_last_h_stripe = (start + y_step) >= y_dim
263
264 stripe = NpuStripe(
265 ps,
266 block_config,
267 is_first,
268 is_last,
269 is_first_h_stripe,
270 is_last_h_stripe,
271 ifm_tensor,
272 ifm_box,
273 ofm_tensor,
274 ofm_box,
275 weight_tensor,
276 weight_box,
277 scale_tensor,
Tim Hall79d07d22020-04-27 18:20:16 +0100278 None,
279 None,
280 pad_top,
281 pad_bottom,
282 )
283 yield stripe
284 else:
285 assert 0, "unknown scheduling strategy"
286
287
288def generate_high_level_command_stream_for_pass_list(strat, passes, block_configs):
289 if strat == SchedulingStrategy.WeightStream:
290 for idx in range(len(passes)):
291 yield from generate_high_level_command_stream_for_pass(strat, passes, block_configs, idx)
292 elif strat == SchedulingStrategy.IfmStream:
293 yield from generate_high_level_command_stream_for_pass(strat, passes, block_configs, len(passes) - 1)
294 else:
295 assert 0, "Unknown streaming strategy"
296
297
298def generate_high_level_command_stream_for_cascaded_pass(cps):
299 yield from generate_high_level_command_stream_for_pass_list(
300 cps.strategy, cps.passes, [ps.block_config for ps in cps.passes]
301 )
302
303
304def generate_high_level_command_stream(nng, sg, arch, verbose_high_level_command_stream):
305 res = []
306 for cps in sg.cascaded_passes:
307 if cps.placement == PassPlacement.Npu:
308 res += list(generate_high_level_command_stream_for_cascaded_pass(cps))
309
310 sg.high_level_command_stream = res
311 if verbose_high_level_command_stream:
312 sg.print_high_level_command_stream()
313
314
315def calc_allowed_ofm_ifm_overlap_for_pass_list(strat, passes, block_configs):
316 highest_ofm_write = 0
317 if not passes[0].ifm_tensor or not passes[-1].ofm_tensor:
318 return 0
319
Michael McGeagh298e3832020-11-24 14:46:03 +0000320 ifm_read = passes[0].ifm_tensor.storage_size()
Tim Hall79d07d22020-04-27 18:20:16 +0100321 min_overlap = 999999999999999999999
322 ofm_size = passes[-1].ofm_tensor.storage_size()
323 if strat == SchedulingStrategy.WeightStream:
324 return 0
325 for cmd in generate_high_level_command_stream_for_pass_list(strat, passes, block_configs):
326 if cmd.is_npu_pass_command():
327 if cmd.is_first:
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100328 ifm_read = cmd.ifm_tensor.address_offset_for_coordinate(
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100329 cmd.ifm_box.start_coord, cmd.ps.ifm_shapes[0], is_top_box=False
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100330 )
Tim Hall79d07d22020-04-27 18:20:16 +0100331 if ifm_read is None:
332 return 0
333 if cmd.is_last:
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100334 write_offset = cmd.ofm_tensor.address_offset_for_coordinate(
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100335 cmd.ofm_box.end_coord, cmd.ps.ofm_shapes[0], is_top_box=True
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100336 )
Tim Hall79d07d22020-04-27 18:20:16 +0100337 if write_offset is None:
338 return 0
339 highest_ofm_write = max(write_offset, highest_ofm_write)
340
341 if cmd.is_first or cmd.is_last:
342 overlap_required = max(highest_ofm_write - min(ifm_read, ofm_size), 0)
343 can_overwrite = ofm_size - overlap_required
344 min_overlap = min(min_overlap, can_overwrite)
345
346 if cmd.is_first:
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100347 ifm_read = cmd.ifm_tensor.address_offset_for_coordinate(
Patrik Gustavsson3a269202021-01-21 08:28:55 +0100348 cmd.ifm_box.end_coord, cmd.ps.ifm_shapes[0], is_top_box=True
Patrik Gustavsson2349d422020-12-01 16:02:29 +0100349 )
Tim Hall79d07d22020-04-27 18:20:16 +0100350
351 min_overlap = max(min_overlap, 0)
352 return min_overlap