blob: e0f114eb26a57cb53b1bd83bca1e578cdd02327b [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# Copyright (C) 2020 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.
Tim Hall79d07d22020-04-27 18:20:16 +010016# Description:
17# Register level (low-level) command stream generation for Ethos-U55. Takes a high-level command stream and generates
18# all the register settings. Calculates dependencies between commands and inserts wait operations. And generates a bit
19# stream suitable for interpretation by the Ethos-U55 processor.
Tim Hall79d07d22020-04-27 18:20:16 +010020from collections import defaultdict
Diego Russoe8a10452020-04-21 17:39:10 +010021from enum import Enum
22from enum import IntEnum
Diego Russoea6111a2020-04-14 18:41:58 +010023
24import numpy as np
25
26from . import scaling
Diego Russoe8a10452020-04-21 17:39:10 +010027from .architecture_features import ArchitectureFeatures
28from .architecture_features import Block
29from .architecture_features import Kernel
30from .architecture_features import Rect
31from .architecture_features import SharedBufferArea
32from .architecture_features import SHRAMElements
33from .data_type import BaseType
34from .data_type import DataType
35from .ethos_u55_regs.ethos_u55_regs import acc_format
36from .ethos_u55_regs.ethos_u55_regs import activation
37from .ethos_u55_regs.ethos_u55_regs import cmd0
38from .ethos_u55_regs.ethos_u55_regs import cmd1
39from .ethos_u55_regs.ethos_u55_regs import elementwise_mode
40from .ethos_u55_regs.ethos_u55_regs import ifm_precision
Fredrik Svedberga0c36242020-06-03 15:43:31 +020041from .ethos_u55_regs.ethos_u55_regs import pooling_mode
Jacob Bohlincf7da102020-05-20 09:03:40 +020042from .ethos_u55_regs.ethos_u55_regs import resampling_mode
Diego Russoe8a10452020-04-21 17:39:10 +010043from .ethos_u55_regs.ethos_u55_regs import rounding
Tim Hall79d07d22020-04-27 18:20:16 +010044from .high_level_command_stream import CommandType
Diego Russoe8a10452020-04-21 17:39:10 +010045from .numeric_util import clamp_sigmoid
46from .numeric_util import clamp_tanh
Louis Verhaardb2fb2122020-06-04 15:51:24 +020047from .numeric_util import full_shape
Diego Russoe8a10452020-04-21 17:39:10 +010048from .numeric_util import quantise_float32
49from .numeric_util import round_away_zero
Diego Russoe8a10452020-04-21 17:39:10 +010050from .numeric_util import round_up_to_int
Tim Hall79d07d22020-04-27 18:20:16 +010051from .operation import NpuBlockType
Tim Hall79d07d22020-04-27 18:20:16 +010052from .shared_buffer_allocation import SharedBufferAllocation
Patrik Gustavssoneca2e952020-05-27 09:15:11 +020053from .tensor import MemType
Diego Russoe8a10452020-04-21 17:39:10 +010054from .tensor import TensorBlockTraversal
55from .tensor import TensorFormat
Fredrik Svedberga0c36242020-06-03 15:43:31 +020056from .tensor import TensorPurpose
Tim Hall79d07d22020-04-27 18:20:16 +010057
58
59class RegisterMachine:
60 def __init__(self):
61 self.n_banks = 1
62 self.registers = [defaultdict(lambda: None) for _ in range(self.n_banks)]
63 self.bank_idx = 0
64
65 def set_register(self, reg, value):
66 is_changed = self.registers[self.bank_idx][reg] != value
67 self.registers[self.bank_idx][reg] = value
68 # is_changed = True # force command
69 return is_changed
70
71 def switch_bank(self):
72 self.bank_idx = (self.bank_idx + 1) % self.n_banks
73
74
75class CmdMode(IntEnum):
76 NoPayload = 0x0000
77 Payload32 = 0x4000
78 Mask = 0xC000
79 CmdOpMask = 0x03FF
80
81
82class BasePointerIndex(IntEnum):
Patrik Gustavssoneca2e952020-05-27 09:15:11 +020083 WeightTensor = 0 # base address index for the Weight tensor
84 ScratchTensor = 1 # base address index for the Scratch_tensor in the TensorArena
85 ScratchFastTensor = 2 # base address for the Scratch_fast_tensor
Fredrik Svedberga0c36242020-06-03 15:43:31 +020086 Mem2Mem = (1 << 8) | (3 << 0) # base address slot for memory 2 memory transfer
Tim Hall79d07d22020-04-27 18:20:16 +010087
88
89# TODO: Replace with definitions from ethos_u55_regs
90class IFM2Broadcast(IntEnum):
91 BroadcastHdim = 1 << 0
92 BroadcastWdim = 1 << 1
93 BroadcastCdim = 1 << 2
94 ReverseOperandOrder = 1 << 6
95 UseIFM2Scalar = 1 << 7
96
97
98class CommandStreamEmitter:
99 def __init__(self):
100 self.cmd_stream = []
101 self.reg_machine = [RegisterMachine(), RegisterMachine()]
102 self.last_absolute_wait = defaultdict(int)
103
104 def get_reg_machine(self, cmd):
105 if "DMA" in cmd.name:
106 return self.reg_machine[1]
107 else:
108 return self.reg_machine[0]
109
110 def size_in_bytes(self):
111 sz = 0
112 for cmd in self.cmd_stream:
113 sz += len(cmd) * 4
114 return sz
115
116 def to_list(self):
117 return [elem for cmd in self.cmd_stream for elem in cmd]
118
119 def print_cmds(self):
120 print("Code: Command: Param: Payload:")
121 for words_for_one_command in self.cmd_stream:
122 code = words_for_one_command[0] & 0x0000FFFF # lower 16 bits
123 param = words_for_one_command[0] >> 16 # higher 16 bits
124
125 payload_mode = CmdMode(code & CmdMode.Mask)
126
127 # code and command
128 s = " 0x%04x " % code
129 if payload_mode == CmdMode.NoPayload:
130 s += str(cmd0(code & CmdMode.CmdOpMask))
131 else:
132 s += str(cmd1(code & CmdMode.CmdOpMask))
133
134 s = s.ljust(40)
135 s += "%5d" % param
136
137 # payload
138 if payload_mode == CmdMode.Payload32:
139 s += " 0x%08x (%d)" % (words_for_one_command[1], words_for_one_command[1])
140 else:
141 s += " -"
142
143 print(s)
144
145 def cmd0_with_param(self, cmd, param):
146 if isinstance(param, Enum):
147 param = int(param.value)
148 else:
149 param = int(param)
150 param = param & 0xFFFF
151 command = cmd.value | (param << 16)
152 if not self.get_reg_machine(cmd).set_register(cmd, (command, param)):
153 return
154
155 # This is not a redundant command, actually write it
156 self.cmd_stream.append((command,))
157
158 def cmd1_with_offset(self, cmd, offset, param=0x0):
159 offset = int(offset) & 0xFFFFFFFFF
160 command = cmd.value | CmdMode.Payload32.value | (param << 16)
161
162 if not self.get_reg_machine(cmd).set_register(cmd, (command, offset)):
163 return
164
165 # This is not a redundant command, actually write it
166 self.cmd_stream.append((command, offset))
167
168 def cmd_wait(self, cmd, param, absolute_wait_time):
169 if absolute_wait_time <= self.last_absolute_wait[cmd]:
170 return
171
172 self.last_absolute_wait[cmd] = absolute_wait_time
173 param = int(param)
174 command = ((param & 0xFFFF) << 16) | cmd.value
175 self.cmd_stream.append((command,))
176
177 def cmd_do_operation(self, cmd, param=0):
178 param = int(param)
179 command = ((param & 0xFFFF) << 16) | cmd.value
180
181 self.cmd_stream.append((command,))
182 self.get_reg_machine(cmd).switch_bank()
183
184
185def calc_command_dependencies(cmd_stream, arch):
186 cmd_starts = {}
187 cmd_ends = {}
188 memory_accesses = {}
189
190 # Keep track of accumulated number of commands in command stream.
191 # First element kernel ops: (# of blocks, # of commands)
192 # Second element DMA ops: (# of commands)
Michael McGeagh8677e532020-07-28 11:32:22 +0100193 pos = np.array((np.array((0, 0)), np.array([0])), dtype=object)
Tim Hall79d07d22020-04-27 18:20:16 +0100194
195 dependencies = {}
196
197 for cmd in cmd_stream:
198 cmd_starts[cmd] = pos
199 op_count = cmd.get_operation_count()
200 # Keep track of both num blocks and commands
201 cmd_add = 0 if (op_count[0] == 0) else 1
Michael McGeagh8677e532020-07-28 11:32:22 +0100202 pos = np.array((pos[0] + np.array((op_count[0], cmd_add)), pos[1] + np.array([op_count[1]])), dtype=object)
203 cmd_ends[cmd] = np.array((pos[0], pos[1]), dtype=object)
Tim Hall79d07d22020-04-27 18:20:16 +0100204 memory_accesses[cmd] = cmd.get_memory_accesses()
205
206 for idx, cmd in enumerate(cmd_stream):
207 curr_accesses = memory_accesses[cmd]
208 # Keep track of command dependency.
209 # First element kernel ops: (# of blocks, # of commands)
210 # Second element DMA ops: (# of commands)
Michael McGeagh8677e532020-07-28 11:32:22 +0100211 dep_offsets = np.array((np.array((-1, -1)), np.array([-1])), dtype=object)
Tim Hall79d07d22020-04-27 18:20:16 +0100212 dep_cmds = [None] * CommandType.Size.value
213 if idx > 0:
214 # Look at the previous commands in backwards order
215 for prev_cmd in cmd_stream[idx - 1 :: -1]:
216 assert prev_cmd is not cmd
217 if dep_cmds[prev_cmd.cmdtype] is None:
218 is_dependency = False
219 if cmd.cmdtype == CommandType.NpuStripe and prev_cmd.cmdtype == CommandType.NpuStripe:
220 # Special handling here, as dpu -> dpu operations require additional care
221 if not SharedBufferAllocation.is_compatible(prev_cmd.ps.shared_buffer, cmd.ps.shared_buffer):
222 is_dependency = True
223 elif memory_accesses[prev_cmd].conflicts(curr_accesses):
224 is_dependency = True
225 else:
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200226 if memory_accesses[prev_cmd].conflicts(curr_accesses) or (
227 prev_cmd.cmdtype == CommandType.DMA and prev_cmd.in_tensor.purpose == TensorPurpose.LUT
228 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100229 is_dependency = True
230
231 if is_dependency:
232 new_offset = cmd_ends[prev_cmd][prev_cmd.cmdtype]
233 if new_offset[0] > dep_offsets[prev_cmd.cmdtype][0]:
234 dep_cmds[prev_cmd.cmdtype] = prev_cmd
235 dep_offsets[prev_cmd.cmdtype] = new_offset
236
237 # Check if we've got dependencies for all commands, in which case we can early out
238 for dep in dep_cmds:
239 if dep is None:
240 break
241 else:
242 break # all handled
243
244 # Convert absolute to relative dependencies, using None to signal the special case of no
245 # dependency of this kind
246 res = [None] * CommandType.Size.value
247 for i in range(CommandType.Size.value):
248 if dep_cmds[i] is not None:
249 res[i] = cmd_starts[cmd][i] - dep_offsets[i]
250
251 dependencies[cmd] = cmd_starts[cmd], res
252
253 return dependencies
254
255
256def get_op_kernel(ps):
257 if ps.primary_op is None:
258 return None
259
260 strides = ps.primary_op.attrs.get("strides", (1, 1, 1, 1))
261 dilation = ps.primary_op.attrs.get("dilation", (1, 1, 1, 1))
262 if ps.weight_tensor:
263 if ps.npu_block_type in set((NpuBlockType.VectorProduct, NpuBlockType.ElementWise)):
264 k_h = 1
265 k_w = 1
266 else:
267 k_h = ps.weight_tensor.shape[0]
268 k_w = ps.weight_tensor.shape[1]
269 else:
270 k_h = ps.primary_op.attrs.get("filter_height", 1)
271 k_w = ps.primary_op.attrs.get("filter_width", 1)
272
273 return Kernel(k_w, k_h, strides[2], strides[1], dilation[2], dilation[1])
274
275
Tim Hall79d07d22020-04-27 18:20:16 +0100276def has_prev_op_dependency(prev_cmd, cmd):
277 if prev_cmd is None:
278 return False
279 if (prev_cmd.cmdtype == cmd.cmdtype == CommandType.NpuStripe) and (prev_cmd.ps != cmd.ps):
Tim Hall90337952020-05-07 16:42:35 +0100280 if prev_cmd.ofm_tensor.equivalence_id == cmd.ifm_tensor.equivalence_id:
Tim Hall79d07d22020-04-27 18:20:16 +0100281 return True
Tim Hall90337952020-05-07 16:42:35 +0100282 elif cmd.ifm2_tensor is not None:
Louis Verhaardb2fb2122020-06-04 15:51:24 +0200283 return prev_cmd.ofm_tensor.equivalence_id == cmd.ifm2_tensor.equivalence_id
Tim Hall79d07d22020-04-27 18:20:16 +0100284 return False
285
286
287def get_op_ofm_rect(cmd):
Charles Xu3e9c4342020-04-22 08:31:43 +0200288 start = full_shape(4, cmd.ofm_box.start_coord, 0)
289 end = full_shape(4, cmd.ofm_box.end_coord, 1)
Tim Hall79d07d22020-04-27 18:20:16 +0100290 return Rect(start[-2], start[-3], start[-1], end[-2] - 1, end[-3] - 1, end[-1] - 1)
291
292
293def get_op_ifm_rect(cmd):
Charles Xu3e9c4342020-04-22 08:31:43 +0200294 start = full_shape(4, cmd.ifm_box.start_coord, 0)
295 end = full_shape(4, cmd.ifm_box.end_coord, 1)
Tim Hall79d07d22020-04-27 18:20:16 +0100296 return Rect(start[-2], start[-3], start[-1], end[-2] - 1, end[-3] - 1, end[-1] - 1)
297
298
299def get_op_ifmofm_block_depth(arch, cmd):
300 # Note: NOT equivalent to the normal ifm block depth calculation since
301 # it takes into account 'depthless' block operations by returning full
302 # depth
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200303 if cmd.ps.npu_block_type in (
304 NpuBlockType.ConvolutionDepthWise,
305 NpuBlockType.Pooling,
306 NpuBlockType.ElementWise,
307 NpuBlockType.ReduceSum,
308 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100309 return cmd.ofm_box.get_size_shape()[-1]
310
311 return arch.calc_ifm_block_depth(cmd.ifm_box.get_size_shape()[-1], cmd.ifm_tensor.dtype.bits)
312
313
314def get_op_padding_lt(cmd):
315 if cmd.ps.npu_block_type not in (
316 NpuBlockType.ConvolutionDepthWise,
317 NpuBlockType.Pooling,
318 NpuBlockType.ConvolutionMxN,
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200319 NpuBlockType.ReduceSum,
Tim Hall79d07d22020-04-27 18:20:16 +0100320 ):
321 return (0, 0)
322
323 explicit_padding = list(cmd.ps.primary_op.attrs["explicit_padding"]) # (top, left, bottom, right)
324
325 # Check if this is for horizontal ifm streaming
326 if not (cmd.is_first_h_stripe and cmd.is_last_h_stripe):
327 explicit_padding[0] = cmd.pad_top
328 explicit_padding[2] = cmd.pad_bottom
329
330 return (explicit_padding[1], explicit_padding[0])
331
332
333def generate_register_command_stream(nng, sg, arch, verbose=False):
334 emit = CommandStreamEmitter()
335
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200336 if arch.feature_map_storage_mem_area == arch.fast_storage_mem_area:
337 base_ptr_idx_map = {
338 MemType.Permanent_NPU: BasePointerIndex.WeightTensor,
339 MemType.Permanent_CPU: BasePointerIndex.WeightTensor,
340 MemType.Scratch: BasePointerIndex.ScratchTensor,
341 MemType.Scratch_fast: BasePointerIndex.ScratchTensor,
342 }
343 else:
344 base_ptr_idx_map = {
345 MemType.Permanent_NPU: BasePointerIndex.WeightTensor,
346 MemType.Permanent_CPU: BasePointerIndex.WeightTensor,
347 MemType.Scratch: BasePointerIndex.ScratchTensor,
348 MemType.Scratch_fast: BasePointerIndex.ScratchFastTensor,
349 }
Tim Hall79d07d22020-04-27 18:20:16 +0100350
351 # Maps an AccumulatorType enum to the corresponding acc_format value
352 acc_format_map = {
353 SHRAMElements.Acc16: acc_format.FP_S5_10.value,
354 SHRAMElements.Acc32: acc_format.INT_32BIT.value,
355 SHRAMElements.Acc40: acc_format.INT_40BIT.value,
356 }
357
358 # Maps an elementwise op type to an elementwise_mode enum value used by NPU_OP_ELEMENTWISE
359 elementwise_mode_map = {
360 "MulAct": elementwise_mode.MUL.value,
361 "AddAct": elementwise_mode.ADD.value,
362 "SubAct": elementwise_mode.SUB.value,
363 "Minimum": elementwise_mode.MIN.value,
364 "Maximum": elementwise_mode.MAX.value,
365 "LeakyRelu": elementwise_mode.LRELU.value,
366 "Abs": elementwise_mode.ABS.value,
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200367 "CLZ": elementwise_mode.CLZ.value,
368 "SHR": elementwise_mode.SHR.value,
369 "SHL": elementwise_mode.SHL.value,
Tim Hall79d07d22020-04-27 18:20:16 +0100370 }
371
372 cmd_stream = []
373 for cmd in sg.high_level_command_stream:
374 if cmd.cmdtype == CommandType.NpuStripe and cmd.ps.npu_block_type == NpuBlockType.Default:
375 print("Warning: Skipping register command stream generation for", cmd.ps)
376 else:
377 cmd_stream.append(cmd)
378
379 dependencies = calc_command_dependencies(cmd_stream, arch)
380
381 # Initialise operator dependency state
382 prev_ifm_rect = cur_ifm_rect = None
383 prev_ifm_block_depth = cur_ifm_block_depth = None
384 prev_ofm_rect = cur_ofm_rect = None
385 prev_ofm_block = cur_ofm_block = None
386 prev_kernel = cur_kernel = None
387 prev_cmd = None
388
389 def emit_wait_commands(cmd):
390 # The command is fully set up, emit whatever wait commands we need
391 absolute_dep, relative_dep = dependencies[cmd]
392 if relative_dep[CommandType.NpuStripe] is not None:
393 if cmd.cmdtype == CommandType.DMA:
394 param = relative_dep[CommandType.NpuStripe][1]
395 if param <= 3:
396 emit.cmd_wait(cmd0.NPU_OP_KERNEL_WAIT, param, absolute_dep[CommandType.NpuStripe][1])
397 else:
398 param = relative_dep[CommandType.NpuStripe][0]
399 param = min(param, 0xFFFF) # Clamp to allowable wait amount
400
401 if relative_dep[CommandType.DMA] is not None:
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200402 # TODO This can be optimized for yoda
403 param = 0
Tim Hall79d07d22020-04-27 18:20:16 +0100404 emit.cmd_wait(cmd0.NPU_OP_DMA_WAIT, param, absolute_dep[CommandType.DMA][0])
Tim Hall79d07d22020-04-27 18:20:16 +0100405
Tim Hall42e41892020-07-06 10:51:31 +0100406 if arch.is_yoda_system:
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200407 emit.cmd0_with_param(cmd0.NPU_SET_PARALLEL_MODE, arch.ncores - 1)
Tim Hallf7e810a2020-06-25 15:04:31 +0100408
Tim Hall79d07d22020-04-27 18:20:16 +0100409 for cmd in cmd_stream:
410 if cmd.cmdtype == CommandType.DMA:
411 start_coord = cmd.box.start_coord
412
413 src_addr = cmd.in_tensor.address_for_coordinate(start_coord)
414 dst_addr = cmd.out_tensor.address_for_coordinate(start_coord)
415
416 if cmd.in_tensor.compressed_values is not None:
417 stream_index = cmd.in_tensor.compressed_stream_index_from_coord(start_coord)
418 sz = cmd.in_tensor.size_of_compressed_stream(stream_index)
419 else:
420 sz = cmd.in_tensor.address_for_coordinate(cmd.box.end_coord, is_top_box=True) - src_addr
421
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200422 emit.cmd0_with_param(cmd0.NPU_SET_DMA0_SRC_REGION, base_ptr_idx_map[cmd.in_tensor.mem_type])
Tim Hall79d07d22020-04-27 18:20:16 +0100423 emit.cmd1_with_offset(cmd1.NPU_SET_DMA0_SRC, src_addr)
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200424 if cmd.out_tensor.purpose == TensorPurpose.LUT:
425 emit.cmd0_with_param(cmd0.NPU_SET_DMA0_DST_REGION, BasePointerIndex.Mem2Mem)
426 else:
427 emit.cmd0_with_param(cmd0.NPU_SET_DMA0_DST_REGION, base_ptr_idx_map[cmd.out_tensor.mem_type])
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200428
Tim Hall79d07d22020-04-27 18:20:16 +0100429 emit.cmd1_with_offset(cmd1.NPU_SET_DMA0_DST, dst_addr)
430 emit.cmd1_with_offset(cmd1.NPU_SET_DMA0_LEN, sz)
431 dma_channel = 0
432 mode = 0 # From external to external
433
434 emit_wait_commands(cmd)
435 emit.cmd_do_operation(cmd0.NPU_OP_DMA_START, dma_channel * 16 + mode)
436
437 elif cmd.cmdtype == CommandType.NpuStripe:
438
439 ps = cmd.ps
440 primary_op = ps.primary_op
441 npu_block_type = ps.npu_block_type
442 # Specifies if global scale from the NPU_SET_OFM_SCALE register should be used instead of per-channel scale
443 use_global_scale = False
444 # Specifies type of rounding to be used.
445 rounding_mode = rounding.TFL
Louis Verhaardb2fb2122020-06-04 15:51:24 +0200446 if primary_op.type == "ResizeBilinear":
Dwight Lidman3ec04ac2020-04-30 11:54:48 +0200447 rounding_mode = rounding.TRUNCATE
Tim Hall79d07d22020-04-27 18:20:16 +0100448 fmf = primary_op.attrs.get("fused_memory_function", None)
449 faf = primary_op.attrs.get("fused_activation_function", None)
Jacob Bohlin9fbc4912020-06-29 11:58:50 +0200450 fused_quantize = any(op.type == "Quantize" for op in ps.ops)
Tim Hall79d07d22020-04-27 18:20:16 +0100451
452 # Specifies which operand to apply scaling to in bitexact elementwise ADD/SUB
453 op_to_scale = 0
454
455 # Update state history
456 prev_ifm_rect = cur_ifm_rect
457 prev_ifm_block_depth = cur_ifm_block_depth
458 prev_ofm_rect = cur_ofm_rect
459 prev_ofm_block = cur_ofm_block
460 prev_kernel = cur_kernel
Louis Verhaardb2fb2122020-06-04 15:51:24 +0200461 cur_kernel = get_op_kernel(ps)
Tim Hall79d07d22020-04-27 18:20:16 +0100462
463 block_config = ps.block_config
464 emit.cmd0_with_param(cmd0.NPU_SET_OFM_BLK_HEIGHT_M1, block_config[0] - 1)
465 emit.cmd0_with_param(cmd0.NPU_SET_OFM_BLK_WIDTH_M1, block_config[1] - 1)
466 emit.cmd0_with_param(cmd0.NPU_SET_OFM_BLK_DEPTH_M1, block_config[3] - 1)
467
468 shared_buffer = ps.shared_buffer
469
470 if npu_block_type == NpuBlockType.ElementWise:
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200471 ifm2_broadcast = (
472 IFM2Broadcast.ReverseOperandOrder if primary_op.attrs.get("reverse_op_order", False) else 0
473 )
Tim Hall79d07d22020-04-27 18:20:16 +0100474
475 if cmd.ifm_tensor.shape == []:
476 # The scalar has to be the ifm2 tensor so switch the ifms
477 cmd.ifm_tensor, cmd.ifm2_tensor = cmd.ifm2_tensor, cmd.ifm_tensor
478 cmd.ifm_box, cmd.ifm2_box = cmd.ifm2_box, cmd.ifm_box
479
480 # Set ReverseOperandOrder bit to IFM2_BROADCAST
481 ifm2_broadcast |= IFM2Broadcast.ReverseOperandOrder
482
483 # Calculate scales needed for arithmetic elementwise operators
484 if primary_op.type in set(("AddAct", "MulAct", "SubAct",)):
485 input_scale = cmd.ifm_tensor.quantization.scale_f32
486 input2_scale = cmd.ifm2_tensor.quantization.scale_f32
487 output_scale = cmd.ofm_tensor.quantization.scale_f32
488 use_global_scale = True
489
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200490 if output_scale is not None and faf in ("Sigmoid", "Tanh"):
491 output_scale = 1 / 0x3000
Tim Hall79d07d22020-04-27 18:20:16 +0100492
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200493 if primary_op.type == "MulAct":
494 if None in (input_scale, input2_scale, output_scale):
495 ofm_scale = 1
496 shift = 0
497 else:
498 ofm_scale, shift = scaling.elementwise_mul_scale(input_scale, input2_scale, output_scale)
Tim Hall79d07d22020-04-27 18:20:16 +0100499 emit.cmd1_with_offset(cmd1.NPU_SET_OFM_SCALE, ofm_scale, shift)
500 else: # AddAct/SubAct
Charles Xu9a03fdf2020-07-02 15:12:40 +0200501 # Force output scale same as the input scale for
502 # resizebiliner 1x1 that is converted to add
503 if "resizebilinear" in primary_op.attrs:
504 output_scale = input2_scale
505
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200506 if None in (input_scale, input2_scale, output_scale):
507 opa_scale = opb_scale = ofm_scale = 1
508 opa_shift = shift = 0
509 elif input_scale == input2_scale:
Tim Hall79d07d22020-04-27 18:20:16 +0100510 opa_scale, opb_scale, ofm_scale, shift = scaling.simplified_elementwise_add_sub_scale(
511 input_scale, input2_scale, output_scale
512 )
513 opa_shift = 0 # Unused for this case
514 else:
515 # Use advanced implementation only when input scales differ
516 bitdepth = cmd.ifm_tensor.dtype.bits
517 (
518 opa_scale,
519 opa_shift,
520 ofm_scale,
521 shift,
522 op_to_scale,
523 ) = scaling.advanced_elementwise_add_sub_scale(
524 input_scale, input2_scale, output_scale, bitdepth
525 )
526 opb_scale = 0 # Unused for this case
527 if ifm2_broadcast & IFM2Broadcast.ReverseOperandOrder:
528 # If the operand order is reversed we also have to swap which operand is scaled
529 if op_to_scale == scaling.OperandToScale.OPa:
530 op_to_scale = scaling.OperandToScale.OPb
531 else:
532 op_to_scale = scaling.OperandToScale.OPa
533
534 emit.cmd1_with_offset(cmd1.NPU_SET_OPA_SCALE, opa_scale, opa_shift)
535 emit.cmd1_with_offset(cmd1.NPU_SET_OPB_SCALE, opb_scale)
536 emit.cmd1_with_offset(cmd1.NPU_SET_OFM_SCALE, ofm_scale, shift)
537
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200538 elif primary_op.type in set(("LeakyRelu", "Abs",)):
Tim Hall79d07d22020-04-27 18:20:16 +0100539 output_scale = cmd.ofm_tensor.quantization.scale_f32
540 use_global_scale = True
541
542 if primary_op.type == "LeakyRelu":
543 output_scale *= primary_op.attrs["alpha"]
544
545 ofm_scale, shift = scaling.quantise_scale(output_scale)
546 emit.cmd1_with_offset(cmd1.NPU_SET_OFM_SCALE, ofm_scale, shift)
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200547 else:
548 emit.cmd1_with_offset(cmd1.NPU_SET_OFM_SCALE, 1, 0)
Tim Hall79d07d22020-04-27 18:20:16 +0100549
550 # For elementwise set the required SHRAM to be equal to the total size of SHRAM
551 shram_required = arch.shram_total_banks
552 emit.cmd0_with_param(cmd0.NPU_SET_IFM_IB_END, shram_required)
553
554 # Acc buffers not needed so set AB_START to size of SHRAM
555 emit.cmd0_with_param(cmd0.NPU_SET_AB_START, arch.shram_total_banks)
556
557 # Is not a unary operator
558 if cmd.ifm2_tensor is not None:
559 if cmd.ifm2_tensor.shape == []:
560 # IFM2 is a constant, set UseIFM2Scalar bit to IFM2_BROADCAST
561 ifm2_broadcast |= IFM2Broadcast.UseIFM2Scalar
562 else:
563 ifm_box_shape = cmd.ifm_box.get_size_shape()
564 ifm2_box_shape = cmd.ifm2_box.get_size_shape()
565
566 if len(cmd.ifm_tensor.shape) > 1 and ifm_box_shape[1] != ifm2_box_shape[1]:
567 # Broadcast in 'H' dimension
568 assert cmd.ifm2_tensor.shape[1] == 1
569 ifm2_broadcast |= IFM2Broadcast.BroadcastHdim
570
571 if len(cmd.ifm_tensor.shape) > 2 and ifm_box_shape[2] != ifm2_box_shape[2]:
572 # Broadcast in 'W' dimension
573 assert cmd.ifm2_tensor.shape[2] == 1
574 ifm2_broadcast |= IFM2Broadcast.BroadcastWdim
575
576 if len(cmd.ifm_tensor.shape) > 3 and ifm_box_shape[3] != ifm2_box_shape[3]:
577 # Broadcast in 'C' dimension
578 assert cmd.ifm2_tensor.shape[3] == 1
579 ifm2_broadcast |= IFM2Broadcast.BroadcastCdim
580
581 # Set IFM2_IB_START to the latter half of the IB space
582 ifm_ib_start = shared_buffer.bank_locations[SharedBufferArea.IFM]
583 emit.cmd0_with_param(
584 cmd0.NPU_SET_IFM2_IB_START, (shram_required - ifm_ib_start) / 2 + ifm_ib_start
585 )
586
587 emit.cmd0_with_param(cmd0.NPU_SET_IFM2_BROADCAST, ifm2_broadcast)
588
589 else:
590 emit.cmd0_with_param(
591 cmd0.NPU_SET_IFM_IB_END,
592 shared_buffer.bank_locations[SharedBufferArea.IFM]
593 + shared_buffer.banks_required[SharedBufferArea.IFM],
594 )
595 emit.cmd0_with_param(cmd0.NPU_SET_AB_START, shared_buffer.bank_locations[SharedBufferArea.Accumulators])
596
597 emit.cmd0_with_param(cmd0.NPU_SET_ACC_FORMAT, acc_format_map[shared_buffer.use_accumulator_element])
598
Louis Verhaardb2fb2122020-06-04 15:51:24 +0200599 if primary_op.type == "ResizeBilinear":
Dwight Lidman3ec04ac2020-04-30 11:54:48 +0200600 # perform nearest neighbor upscale
Jacob Bohlincf7da102020-05-20 09:03:40 +0200601 emit.cmd0_with_param(cmd0.NPU_SET_IFM_UPSCALE, resampling_mode.NEAREST)
602 elif primary_op.type == "Conv2DBackpropInputSwitchedBias":
603 # perform insert zero upscale
604 emit.cmd0_with_param(cmd0.NPU_SET_IFM_UPSCALE, resampling_mode.TRANSPOSE)
Dwight Lidman3ec04ac2020-04-30 11:54:48 +0200605 else:
Jacob Bohlincf7da102020-05-20 09:03:40 +0200606 emit.cmd0_with_param(cmd0.NPU_SET_IFM_UPSCALE, resampling_mode.NONE)
Tim Hall79d07d22020-04-27 18:20:16 +0100607
608 if npu_block_type in set(
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200609 (
610 NpuBlockType.ConvolutionMxN,
611 NpuBlockType.ConvolutionDepthWise,
612 NpuBlockType.Pooling,
613 NpuBlockType.ReduceSum,
614 )
Tim Hall79d07d22020-04-27 18:20:16 +0100615 ):
616 # Set up padding
617 explicit_padding = list(primary_op.attrs["explicit_padding"]) # (top, left, bottom, right)
618
619 # Check if this is for horizontal ifm streaming
620 if not (cmd.is_first_h_stripe and cmd.is_last_h_stripe):
621 explicit_padding[0] = cmd.pad_top
622 explicit_padding[2] = cmd.pad_bottom
623
624 # Indexing from end since a 1x1 Avgpool might have been added with non 4-dimensional input/output,
625 # because of activation function needed to be fused.
626 if cmd.ifm_box.start_coord[-2] > 0:
627 explicit_padding[1] = 0
628 if cmd.ifm_box.end_coord[-2] < cmd.ifm_tensor.shape[-2]:
629 explicit_padding[3] = 0
Tim Hall79d07d22020-04-27 18:20:16 +0100630 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_TOP, explicit_padding[0])
631 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_LEFT, explicit_padding[1])
632 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_BOTTOM, explicit_padding[2])
633 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_RIGHT, explicit_padding[3])
634
Dwight Lidman0538a772020-05-06 14:09:17 +0200635 # set kernel x stride low bit
636 stride = primary_op.attrs["strides"][2] - 1 & 1
637 # set kernel y stride low bit
638 stride |= (primary_op.attrs["strides"][1] - 1 & 1) << 1
639 # set kernel x stride extension bits
640 stride |= (primary_op.attrs["strides"][2] - 1 >> 1) << 6
641 # set kernel y stride extension bits
642 stride |= (primary_op.attrs["strides"][1] - 1 >> 1) << 9
643
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200644 if npu_block_type in set((NpuBlockType.Pooling, NpuBlockType.ReduceSum)):
Tim Hall79d07d22020-04-27 18:20:16 +0100645 k_height, k_width = primary_op.attrs["ksize"][1:3]
646 emit.cmd0_with_param(cmd0.NPU_SET_KERNEL_HEIGHT_M1, k_height - 1)
647 emit.cmd0_with_param(cmd0.NPU_SET_KERNEL_WIDTH_M1, k_width - 1)
648
649 valid_padding = sum(explicit_padding) == 0
650
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200651 if (
652 primary_op.type in set(("AvgPool", "AvgPoolAct", "ResizeBilinear", "ReduceSum"))
653 and valid_padding
654 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100655 # For valid padding vela has to output scaling values
656 if faf == "Sigmoid" or faf == "Tanh":
657 rescale = 0x3000 * cmd.ifm_tensor.quantization.scale_f32
Tim Hall79d07d22020-04-27 18:20:16 +0100658
Fredrik Svedberg620d88c2020-05-19 10:43:01 +0200659 if cmd.ifm_tensor.dtype == DataType.int16:
Charles Xu749d9212020-06-11 12:39:19 +0200660 multiplier = max(1, int(4096 * cmd.ifm_tensor.quantization.scale_f32 + 0.5))
Fredrik Svedberg620d88c2020-05-19 10:43:01 +0200661 rescale *= 3 * multiplier
662
663 rescale_bits = len(bin(round_up_to_int(rescale))) - 2 + 1
Tim Hall79d07d22020-04-27 18:20:16 +0100664 scale, shift = scaling.quantise_pooling_scale(k_height * k_width, rescale_bits)
Fredrik Svedberg620d88c2020-05-19 10:43:01 +0200665
666 if cmd.ifm_tensor.dtype == DataType.int16:
667 scale = (1 << shift) * 3 * multiplier
668 else:
669 scale = int(round_away_zero(scale * rescale))
Jacob Bohlin9fbc4912020-06-29 11:58:50 +0200670 elif fused_quantize:
671 # Quantize op requires different scaling
672 ifm_scale_f64 = np.double(cmd.ifm_tensor.quantization.scale_f32)
673 ofm_scale_f64 = np.double(cmd.ofm_tensor.quantization.scale_f32)
674 scale, shift = scaling.quantise_scale(ifm_scale_f64 / ofm_scale_f64)
Tim Hall79d07d22020-04-27 18:20:16 +0100675 else:
676 # In case avg pool fused with concat or other memory operation, rescaling might be needed.
677 # k_height == k_width == 1 is allways true in this case
678 # Normally the scale is maximised, to get maximum precision, which means that
679 # if rescale != 1, scale need to consider the number of bits needed for rescaling
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200680 if None not in (
681 cmd.ofm_tensor.quantization.scale_f32,
682 cmd.ifm_tensor.quantization.scale_f32,
683 ):
684 rescale = cmd.ifm_tensor.quantization.scale_f32 / cmd.ofm_tensor.quantization.scale_f32
685 rescale_bits = 0
686 if k_height == k_width == 1:
687 if fmf == "ConcatSliceWrite":
688 rounding_mode = rounding.NATURAL
689 if rescale > 1:
690 rescale_bits = len(bin(round_up_to_int(rescale))) - 2 + 1
691 elif rescale < 1:
692 rescale_bits = -(len(bin(round_up_to_int(1 / rescale))) - 2 - 1)
693 scale, shift = scaling.quantise_pooling_scale(k_height * k_width, rescale_bits)
694 scale = int(round_away_zero(scale * rescale))
695 else:
696 scale = 1
697 shift = 0
Tim Hall79d07d22020-04-27 18:20:16 +0100698
699 emit.cmd1_with_offset(cmd1.NPU_SET_OFM_SCALE, scale, shift)
700 # Valid-padded average pool should use the global scale from
701 # NPU_SET_OFM_SCALE register, which is set above.
702 use_global_scale = True
703
704 else: # Convolution
705 assert cmd.weight_tensor.block_traversal != TensorBlockTraversal.Default
Fredrik Svedbergd67c0aa2020-03-30 13:15:28 +0200706 # Reduced precision quantization and natural rounding used for int16
707 if cmd.ifm_tensor.dtype == DataType.int16:
708 rounding_mode = rounding.NATURAL
Louis Verhaardb2fb2122020-06-04 15:51:24 +0200709 stride |= (cur_kernel.dilation.y - 1) << 4
710 stride |= (cur_kernel.dilation.x - 1) << 3
711 emit.cmd0_with_param(
712 cmd0.NPU_SET_KERNEL_HEIGHT_M1, cur_kernel.dilation.y * (cmd.weight_tensor.shape[0] - 1)
713 )
714 emit.cmd0_with_param(
715 cmd0.NPU_SET_KERNEL_WIDTH_M1, cur_kernel.dilation.x * (cmd.weight_tensor.shape[1] - 1)
716 )
Tim Hall79d07d22020-04-27 18:20:16 +0100717 if cmd.weight_tensor.block_traversal == TensorBlockTraversal.PartKernelFirst:
718 # Part-kernel-first weight ordering
719 assert npu_block_type == NpuBlockType.ConvolutionMxN
720 stride |= 1 << 2
721
722 emit.cmd0_with_param(cmd0.NPU_SET_KERNEL_STRIDE, stride)
723
724 elif npu_block_type in set((NpuBlockType.VectorProduct,)):
725 # Vector product is implemented using a 1x1 convolution so need
726 # to setup the appropriate padding and kernel info
727 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_TOP, 0)
728 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_LEFT, 0)
729 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_BOTTOM, 0)
730 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PAD_RIGHT, 0)
731
732 # kernel stride reg = 0 means stride(1,1) + depth first weight
733 # order + dilation(0,0) + kernel_split_size=8
734 emit.cmd0_with_param(cmd0.NPU_SET_KERNEL_STRIDE, 0)
735
736 emit.cmd0_with_param(cmd0.NPU_SET_KERNEL_HEIGHT_M1, 0)
737 emit.cmd0_with_param(cmd0.NPU_SET_KERNEL_WIDTH_M1, 0)
738
739 if npu_block_type in set(
740 (NpuBlockType.ConvolutionMxN, NpuBlockType.ConvolutionDepthWise, NpuBlockType.VectorProduct)
741 ):
742 # Emit Weight base address commands, only maps the area required for
743 # this command's weights from the larger tensor.
744 stream_index = cmd.weight_tensor.compressed_stream_index_from_coord(cmd.weight_box.start_coord)
Tim Hallf7e810a2020-06-25 15:04:31 +0100745 weight_substream_offsets = cmd.weight_tensor.compressed_values_substream_offsets[stream_index]
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200746 substreams = len(weight_substream_offsets) - 1 # Offset list must terminate with full stream length
Tim Hallf7e810a2020-06-25 15:04:31 +0100747
748 # Extract weight substream offsets and calculate their lengths
749 assert len(weight_substream_offsets) > 1 and (weight_substream_offsets[0] == 0)
Tim Hall79d07d22020-04-27 18:20:16 +0100750 weight_addr = cmd.weight_tensor.address_for_coordinate(cmd.weight_box.start_coord)
Tim Hallf7e810a2020-06-25 15:04:31 +0100751
Tim Hall62316762020-06-25 16:55:02 +0100752 # Set weights sources for active and present cores
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200753 for core, param in enumerate(
754 [
755 (cmd1.NPU_SET_WEIGHT_BASE, cmd1.NPU_SET_WEIGHT_LENGTH),
756 (cmd1.NPU_SET_WEIGHT1_BASE, cmd1.NPU_SET_WEIGHT1_LENGTH),
757 ]
758 ):
Tim Hall62316762020-06-25 16:55:02 +0100759 if core < substreams:
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200760 emit.cmd1_with_offset(param[0], weight_addr + weight_substream_offsets[core])
761 emit.cmd1_with_offset(
762 param[1], weight_substream_offsets[core + 1] - weight_substream_offsets[core]
763 )
Tim Hall62316762020-06-25 16:55:02 +0100764 elif core < arch.ncores:
765 emit.cmd1_with_offset(param[0], weight_addr)
766 emit.cmd1_with_offset(param[1], 0)
Tim Hallf7e810a2020-06-25 15:04:31 +0100767
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200768 weight_region = base_ptr_idx_map[cmd.weight_tensor.mem_type]
Tim Hall79d07d22020-04-27 18:20:16 +0100769 emit.cmd0_with_param(cmd0.NPU_SET_WEIGHT_REGION, weight_region)
Tim Hall79d07d22020-04-27 18:20:16 +0100770
771 # Emit Scale & Bias base address commands, with length matching the amount required by
772 # the weight tensors.
773 if cmd.scale_tensor is not None:
Tim Hallf7e810a2020-06-25 15:04:31 +0100774 scale_substream_offsets = cmd.scale_tensor.compressed_values_substream_offsets[stream_index]
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200775 substreams = len(scale_substream_offsets) - 1 # Offset list must terminate with full stream length
Tim Hallf7e810a2020-06-25 15:04:31 +0100776
777 # Extract scale substream offsets and calculate their lengths
778 assert len(scale_substream_offsets) > 1 and (scale_substream_offsets[0] == 0)
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200779 scale_addr = cmd.scale_tensor.address_for_coordinate(cmd.weight_box.start_coord[-1:])
Tim Hallf7e810a2020-06-25 15:04:31 +0100780
Tim Hall62316762020-06-25 16:55:02 +0100781 # Set scale sources for active and present cores
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200782 for core, param in enumerate(
783 [
784 (cmd1.NPU_SET_SCALE_BASE, cmd1.NPU_SET_SCALE_LENGTH),
785 (cmd1.NPU_SET_SCALE1_BASE, cmd1.NPU_SET_SCALE1_LENGTH),
786 ]
787 ):
Tim Hall62316762020-06-25 16:55:02 +0100788 if core < substreams:
Jacob Bohlin0b9ca782020-07-09 11:16:30 +0200789 emit.cmd1_with_offset(param[0], scale_addr + scale_substream_offsets[core])
790 emit.cmd1_with_offset(
791 param[1], scale_substream_offsets[core + 1] - scale_substream_offsets[core]
792 )
Tim Hall62316762020-06-25 16:55:02 +0100793 elif core < arch.ncores:
794 emit.cmd1_with_offset(param[0], scale_addr)
795 emit.cmd1_with_offset(param[1], 0)
Tim Hallf7e810a2020-06-25 15:04:31 +0100796
Tim Hall79d07d22020-04-27 18:20:16 +0100797 # Emit base address for NPU to access scale & bias data
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200798 scale_region = base_ptr_idx_map[cmd.scale_tensor.mem_type]
Tim Hall79d07d22020-04-27 18:20:16 +0100799 emit.cmd0_with_param(cmd0.NPU_SET_SCALE_REGION, scale_region)
Tim Hall79d07d22020-04-27 18:20:16 +0100800
801 ofm_quant = cmd.ofm_tensor.quantization
802 ofm_quant_qmin = cmd.ofm_tensor.quantization.quant_min
803 ofm_quant_qmax = cmd.ofm_tensor.quantization.quant_max
804 ifm_min = cmd.ifm_tensor.quantization.min
805 ifm_max = cmd.ifm_tensor.quantization.max
806
807 # Emit commands for any fused activation function
Diego Russoea6111a2020-04-14 18:41:58 +0100808 if faf is None:
Tim Hall79d07d22020-04-27 18:20:16 +0100809 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, activation.NONE)
810 # Even if no activation function, values need to be set to override previous values
811 faf_min = ofm_quant_qmin
812 faf_max = ofm_quant_qmax
813 elif faf == "Relu":
814 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, activation.NONE)
815 faf_min = quantise_float32(0.0, ofm_quant.scale_f32, ofm_quant.zero_point)
816 faf_max = ofm_quant_qmax
817 elif faf == "Relu6":
818 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, activation.NONE)
819 faf_min = quantise_float32(0.0, ofm_quant.scale_f32, ofm_quant.zero_point)
820 faf_max = quantise_float32(6.0, ofm_quant.scale_f32, ofm_quant.zero_point)
821 elif faf == "ReluN1To1":
822 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, activation.NONE)
823 faf_min = quantise_float32(-1.0, ofm_quant.scale_f32, ofm_quant.zero_point)
824 faf_max = quantise_float32(1.0, ofm_quant.scale_f32, ofm_quant.zero_point)
825 elif faf == "Tanh":
826 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, activation.TANH)
Fredrik Svedberg620d88c2020-05-19 10:43:01 +0200827 if primary_op.type in set(("AvgPool", "AvgPoolAct", "ResizeBilinear")):
828 faf_min = quantise_float32(-1.0, ofm_quant.scale_f32, ofm_quant.zero_point)
829 faf_max = quantise_float32(1.0, ofm_quant.scale_f32, ofm_quant.zero_point)
830 else:
831 faf_min = quantise_float32(clamp_tanh(ifm_min), ofm_quant.scale_f32, ofm_quant.zero_point)
832 faf_max = quantise_float32(clamp_tanh(ifm_max), ofm_quant.scale_f32, ofm_quant.zero_point)
Tim Hall79d07d22020-04-27 18:20:16 +0100833 elif faf == "Sigmoid":
834 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, activation.SIGMOID)
Fredrik Svedberg620d88c2020-05-19 10:43:01 +0200835 if primary_op.type in set(("AvgPool", "AvgPoolAct", "ResizeBilinear")):
836 faf_min = quantise_float32(0, ofm_quant.scale_f32, ofm_quant.zero_point)
837 faf_max = quantise_float32(1.0, ofm_quant.scale_f32, ofm_quant.zero_point)
838 else:
839 faf_min = quantise_float32(clamp_sigmoid(ifm_min), ofm_quant.scale_f32, ofm_quant.zero_point)
840 faf_max = quantise_float32(clamp_sigmoid(ifm_max), ofm_quant.scale_f32, ofm_quant.zero_point)
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200841 elif faf == "LUT":
842 lut_index = int(activation.LUT_START.value) + primary_op.attrs.get("lut_index", 0)
843 assert lut_index <= activation.LUT_END.value, "LUT index out of range."
844 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION, lut_index)
845 faf_min = ofm_quant_qmin
846 faf_max = ofm_quant_qmax
Tim Hall79d07d22020-04-27 18:20:16 +0100847 else:
848 raise Exception("Unsupported fused_activation_function = " + faf)
849
850 # Activation range needs to be set based upon the quantisation range and the fused activation range
851 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION_MIN, max(ofm_quant_qmin, faf_min))
852 emit.cmd0_with_param(cmd0.NPU_SET_ACTIVATION_MAX, min(ofm_quant_qmax, faf_max))
853
854 out_shape = cmd.ofm_box.get_size_shape()
855 if len(out_shape) >= 4:
856 emit.cmd0_with_param(cmd0.NPU_SET_OFM_HEIGHT_M1, out_shape[-3] - 1)
857 else:
858 emit.cmd0_with_param(cmd0.NPU_SET_OFM_HEIGHT_M1, 0)
859 if len(out_shape) >= 2:
860 emit.cmd0_with_param(cmd0.NPU_SET_OFM_WIDTH_M1, out_shape[-2] - 1)
861 else:
862 emit.cmd0_with_param(cmd0.NPU_SET_OFM_WIDTH_M1, 0)
863 emit.cmd0_with_param(cmd0.NPU_SET_OFM_DEPTH_M1, out_shape[-1] - 1)
864
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200865 if npu_block_type in set((NpuBlockType.ConvolutionMxN, NpuBlockType.VectorProduct, NpuBlockType.ReduceSum)):
Tim Hall79d07d22020-04-27 18:20:16 +0100866 in_shape = cmd.ifm_box.get_size_shape()
867 emit.cmd0_with_param(cmd0.NPU_SET_IFM_DEPTH_M1, in_shape[-1] - 1)
868 else:
869 emit.cmd0_with_param(cmd0.NPU_SET_IFM_DEPTH_M1, out_shape[-1] - 1)
870
Jacob Bohlin3c678292020-04-27 10:27:25 +0200871 for tens, box, region_op, ptr_ops, stride_ops, zero_point_op in (
Tim Hall79d07d22020-04-27 18:20:16 +0100872 (
873 cmd.ifm_tensor,
874 cmd.ifm_box,
Jacob Bohlin3c678292020-04-27 10:27:25 +0200875 cmd0.NPU_SET_IFM_REGION,
Tim Hall79d07d22020-04-27 18:20:16 +0100876 (cmd1.NPU_SET_IFM_BASE0, cmd1.NPU_SET_IFM_BASE1, cmd1.NPU_SET_IFM_BASE2, cmd1.NPU_SET_IFM_BASE3),
877 (cmd1.NPU_SET_IFM_STRIDE_C, cmd1.NPU_SET_IFM_STRIDE_Y, cmd1.NPU_SET_IFM_STRIDE_X),
878 cmd0.NPU_SET_IFM_ZERO_POINT,
879 ),
880 (
881 cmd.ifm2_tensor,
882 cmd.ifm2_box,
Jacob Bohlin3c678292020-04-27 10:27:25 +0200883 cmd0.NPU_SET_IFM2_REGION,
Tim Hall79d07d22020-04-27 18:20:16 +0100884 (
885 cmd1.NPU_SET_IFM2_BASE0,
886 cmd1.NPU_SET_IFM2_BASE1,
887 cmd1.NPU_SET_IFM2_BASE2,
888 cmd1.NPU_SET_IFM2_BASE3,
889 ),
890 (cmd1.NPU_SET_IFM2_STRIDE_C, cmd1.NPU_SET_IFM2_STRIDE_Y, cmd1.NPU_SET_IFM2_STRIDE_X),
891 cmd0.NPU_SET_IFM2_ZERO_POINT,
892 ),
893 (
894 cmd.ofm_tensor,
895 cmd.ofm_box,
Jacob Bohlin3c678292020-04-27 10:27:25 +0200896 cmd0.NPU_SET_OFM_REGION,
Tim Hall79d07d22020-04-27 18:20:16 +0100897 (cmd1.NPU_SET_OFM_BASE0, cmd1.NPU_SET_OFM_BASE1, cmd1.NPU_SET_OFM_BASE2, cmd1.NPU_SET_OFM_BASE3),
898 (cmd1.NPU_SET_OFM_STRIDE_C, cmd1.NPU_SET_OFM_STRIDE_Y, cmd1.NPU_SET_OFM_STRIDE_X),
899 cmd0.NPU_SET_OFM_ZERO_POINT,
900 ),
901 ):
902
Diego Russoea6111a2020-04-14 18:41:58 +0100903 if tens is None:
Tim Hall79d07d22020-04-27 18:20:16 +0100904 continue
905
Jacob Bohlin9fbc4912020-06-29 11:58:50 +0200906 need_zero_point = (faf is not None) or (fmf == "ConcatSliceWrite") or fused_quantize
Tim Hall79d07d22020-04-27 18:20:16 +0100907 if (
Dwight Lidman86d49932020-06-04 15:31:56 +0200908 primary_op.type in set(("AvgPool", "AvgPoolAct", "ResizeBilinear")) and not need_zero_point
Diego Russoea6111a2020-04-14 18:41:58 +0100909 ) or tens.quantization is None:
Tim Hall79d07d22020-04-27 18:20:16 +0100910 # Actual integer operation, just set scale to 1 and zero point to 0
911 emit.cmd0_with_param(zero_point_op, 0)
912 else:
913 assert tens.quantization.zero_point is not None, "need an actual zero point set"
Charles Xu9a03fdf2020-07-02 15:12:40 +0200914 if (
915 "resizebilinear" in primary_op.attrs
916 and primary_op.type == "AddAct"
917 and cmd0.NPU_SET_OFM_ZERO_POINT == zero_point_op
918 ):
919 # Force output zero point same as the input zero point
920 # for resizebiliner 1x1 that is converted to add
921 zero_point = cmd.ifm2_tensor.quantization.zero_point
922 else:
923 zero_point = tens.quantization.zero_point
924 emit.cmd0_with_param(zero_point_op, int(zero_point))
Tim Hall79d07d22020-04-27 18:20:16 +0100925
926 if tens.shape == []:
927 # Empty shape, elementwise constant
Louis Verhaardc88a96f2020-06-10 09:04:33 +0200928 ifm2_scalar = tens.quant_values
Tim Hall79d07d22020-04-27 18:20:16 +0100929 assert ifm2_scalar.size == 1
Louis Verhaardc88a96f2020-06-10 09:04:33 +0200930 emit.cmd0_with_param(cmd0.NPU_SET_IFM2_SCALAR, int(ifm2_scalar.item(0)))
Tim Hall79d07d22020-04-27 18:20:16 +0100931 continue
932
933 height_0, height_1, width_0, addresses = tens.addresses_for_rolling_buffer(
934 box.start_coord, box.end_coord
935 )
936 if npu_block_type != NpuBlockType.VectorProduct:
937 if tens == cmd.ifm_tensor:
938 emit.cmd0_with_param(cmd0.NPU_SET_IFM_HEIGHT0_M1, height_0 - 1)
939 emit.cmd0_with_param(cmd0.NPU_SET_IFM_HEIGHT1_M1, height_1 - 1)
940 emit.cmd0_with_param(cmd0.NPU_SET_IFM_WIDTH0_M1, width_0 - 1)
941 elif tens == cmd.ofm_tensor:
942 emit.cmd0_with_param(cmd0.NPU_SET_OFM_HEIGHT0_M1, height_0 - 1)
943 emit.cmd0_with_param(cmd0.NPU_SET_OFM_HEIGHT1_M1, height_1 - 1)
944 emit.cmd0_with_param(cmd0.NPU_SET_OFM_WIDTH0_M1, width_0 - 1)
Louis Verhaard0cf06c72020-05-12 08:31:05 +0200945 if tens == cmd.ifm2_tensor:
Tim Hall79d07d22020-04-27 18:20:16 +0100946 emit.cmd0_with_param(cmd0.NPU_SET_IFM2_HEIGHT0_M1, height_0 - 1)
947 emit.cmd0_with_param(cmd0.NPU_SET_IFM2_HEIGHT1_M1, height_1 - 1)
948 emit.cmd0_with_param(cmd0.NPU_SET_IFM2_WIDTH0_M1, width_0 - 1)
949 else:
950 if len(out_shape) == 2:
951 # TODO: N is put in W-dimension for now
952 # Should be spread over H and W, but then block size selectetion,
953 # and stride calculation should be changed
954 if tens == cmd.ifm_tensor:
955 emit.cmd0_with_param(cmd0.NPU_SET_IFM_WIDTH0_M1, out_shape[-2] - 1)
956 elif tens == cmd.ofm_tensor:
957 emit.cmd0_with_param(cmd0.NPU_SET_OFM_WIDTH0_M1, out_shape[-2] - 1)
958 else:
959 assert False
960
Patrik Gustavssoneca2e952020-05-27 09:15:11 +0200961 emit.cmd0_with_param(region_op, base_ptr_idx_map[tens.mem_type])
Jacob Bohlin3c678292020-04-27 10:27:25 +0200962
Tim Hall79d07d22020-04-27 18:20:16 +0100963 for idx, addr in enumerate(addresses):
964 if addr is None:
965 addresses[idx] = 0
966
967 emit.cmd1_with_offset(ptr_ops[0], addresses[0])
968 emit.cmd1_with_offset(ptr_ops[1], addresses[1])
969 emit.cmd1_with_offset(ptr_ops[2], addresses[2])
970 emit.cmd1_with_offset(ptr_ops[3], addresses[3])
971
972 strides = tens.get_strides()
973 emit.cmd1_with_offset(stride_ops[0], strides[1]) # stride between 16-byte channel blocks (C)
974 emit.cmd1_with_offset(stride_ops[2], strides[3]) # stride between horisontal values (W)
975 emit.cmd1_with_offset(stride_ops[1], strides[2]) # stride between vertical values (H)
976
977 if tens.format == TensorFormat.NHCWB16:
978 # Check that all BasePointer addresses are aligned to 16 bytes
979 assert (int(addresses[0]) % 16) == 0
980 assert (int(addresses[1]) % 16) == 0
981 assert (int(addresses[2]) % 16) == 0
982 assert (int(addresses[3]) % 16) == 0
983
984 ofm_dtype = cmd.ofm_tensor.dtype
985 assert ofm_dtype.type & BaseType.Int
986 prec = 0
987 if ofm_dtype.size_in_bits() == 8:
988 prec = 0
989 elif ofm_dtype.size_in_bits() == 16:
990 prec = 2
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200991 elif ofm_dtype.size_in_bits() == 32:
992 prec = 4
Tim Hall79d07d22020-04-27 18:20:16 +0100993 else:
994 assert 0
995
996 if ofm_dtype.type & BaseType.Signed:
997 prec += 1
998
999 if use_global_scale:
1000 # Set global scale bit, as opposed to using per channel scale
1001 prec |= 1 << 8
1002
1003 if cmd.ofm_tensor.format == TensorFormat.NHCWB16:
1004 prec |= 1 << 6
1005
1006 prec |= rounding_mode.value << 14
1007
1008 emit.cmd0_with_param(cmd0.NPU_SET_OFM_PRECISION, prec)
1009
1010 prec = None
1011 weight_bits = 8
1012 if cmd.weight_tensor is not None:
1013 weight_bits = cmd.weight_tensor.dtype.size_in_bits()
1014
1015 ifm_dtype = cmd.ifm_tensor.dtype
1016
1017 assert weight_bits == 8, "Unsupported weight bit depth"
Fredrik Svedberga0c36242020-06-03 15:43:31 +02001018 assert (
1019 ifm_dtype.size_in_bits() in {8, 16}
1020 or ifm_dtype.size_in_bits() == 32
1021 and npu_block_type in (NpuBlockType.ElementWise, NpuBlockType.ReduceSum)
1022 ), "Unsupported ifm bit depth"
Tim Hall79d07d22020-04-27 18:20:16 +01001023
1024 if ifm_dtype.size_in_bits() == 8:
1025 if ifm_dtype.type & BaseType.Signed:
Diqing Zhongfed918b2020-04-27 10:27:34 +02001026 prec = ifm_precision.S8
Tim Hall79d07d22020-04-27 18:20:16 +01001027 else:
Diqing Zhongfed918b2020-04-27 10:27:34 +02001028 prec = ifm_precision.U8
Tim Hall79d07d22020-04-27 18:20:16 +01001029 elif ifm_dtype.size_in_bits() == 16:
1030 if ifm_dtype.type & BaseType.Signed:
Diqing Zhongfed918b2020-04-27 10:27:34 +02001031 prec = ifm_precision.S16
Tim Hall79d07d22020-04-27 18:20:16 +01001032 else:
Diqing Zhongfed918b2020-04-27 10:27:34 +02001033 prec = ifm_precision.U16
Fredrik Svedberga0c36242020-06-03 15:43:31 +02001034 elif ifm_dtype == DataType.int32:
1035 prec = ifm_precision.S32
Tim Hall79d07d22020-04-27 18:20:16 +01001036
1037 ifm_prec = prec.value
1038 ifm2_prec = ifm_prec
1039
1040 if cmd.ifm_tensor.format == TensorFormat.NHCWB16:
1041 ifm_prec |= 1 << 6
1042
1043 ifm_prec |= op_to_scale << 8
1044
1045 emit.cmd0_with_param(cmd0.NPU_SET_IFM_PRECISION, ifm_prec)
1046
1047 if cmd.ifm2_tensor is not None:
1048 if cmd.ifm2_tensor.format == TensorFormat.NHCWB16:
1049 ifm2_prec |= 1 << 6
1050 emit.cmd0_with_param(cmd0.NPU_SET_IFM2_PRECISION, ifm2_prec)
1051
1052 emit_wait_commands(cmd)
1053
1054 # Get op parameters
1055 cur_ifm_block_depth = get_op_ifmofm_block_depth(arch, cmd)
1056 cur_ofm_block = Block(ps.block_config[1], ps.block_config[0], ps.block_config[3])
1057 cur_ofm_rect = get_op_ofm_rect(cmd)
1058 cur_ifm_rect = get_op_ifm_rect(cmd)
Tim Hall79d07d22020-04-27 18:20:16 +01001059 cur_padLT = get_op_padding_lt(cmd)
1060 if (prev_kernel is not None) and (cur_kernel is not None) and has_prev_op_dependency(prev_cmd, cmd):
1061 if cmd.ifm_tensor.shape == prev_cmd.ofm_tensor.shape:
1062 blockdep = arch.calc_block_dep(
1063 prev_ifm_rect,
1064 prev_ofm_rect,
1065 prev_ifm_block_depth,
1066 prev_ofm_block,
1067 prev_kernel,
1068 cur_ifm_rect,
1069 cur_ofm_rect,
1070 cur_ifm_block_depth,
1071 cur_ofm_block,
1072 cur_kernel,
1073 cur_padLT,
1074 )
1075 else:
1076 blockdep = 0
1077 else:
1078 blockdep = ArchitectureFeatures.MAX_BLOCKDEP
1079
1080 # Set between every op (dependent or not)
1081 blockdep = min(blockdep, arch.max_blockdep)
1082 emit.cmd0_with_param(cmd0.NPU_SET_BLOCKDEP, blockdep)
1083 prev_cmd = cmd
1084
1085 if npu_block_type == NpuBlockType.ConvolutionMxN:
1086 emit.cmd_do_operation(cmd0.NPU_OP_CONV)
1087 elif npu_block_type == NpuBlockType.ConvolutionDepthWise:
1088 emit.cmd_do_operation(cmd0.NPU_OP_DEPTHWISE)
1089 elif npu_block_type == NpuBlockType.VectorProduct:
1090 # Vector product is implemented using a 1x1 convolution
1091 emit.cmd_do_operation(cmd0.NPU_OP_CONV)
1092 elif npu_block_type == NpuBlockType.Pooling:
Fredrik Svedberga0c36242020-06-03 15:43:31 +02001093 param = pooling_mode.MAX.value if "Max" in primary_op.type else pooling_mode.AVERAGE.value
Tim Hall79d07d22020-04-27 18:20:16 +01001094 emit.cmd_do_operation(cmd0.NPU_OP_POOL, param=param)
Fredrik Svedberga0c36242020-06-03 15:43:31 +02001095 elif npu_block_type == NpuBlockType.ReduceSum:
1096 emit.cmd_do_operation(cmd0.NPU_OP_POOL, param=pooling_mode.REDUCE_SUM.value)
Tim Hall79d07d22020-04-27 18:20:16 +01001097 elif npu_block_type == NpuBlockType.ElementWise:
1098 param = elementwise_mode_map[primary_op.type]
1099 emit.cmd_do_operation(cmd0.NPU_OP_ELEMENTWISE, param)
1100 else:
1101 print("Warning: Skipping register command stream generation for", ps)
1102
1103 # Fill in final part of command stream:
1104 emit.cmd_do_operation(cmd0.NPU_OP_STOP, param=0xFFFF)
1105
1106 sg.register_command_stream = emit.to_list()
1107 if verbose:
1108 emit.print_cmds()
1109 print("number of commands", len(emit.cmd_stream))
1110 print("command stream length in words", len(sg.register_command_stream))