blob: a82f8124599b524749202ec9014dba54410f419c [file] [log] [blame]
Louis Verhaardebf4af62021-01-27 15:57:57 +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# The SupportedOperators class which is a collection of all supported operators and parameter checks.
Michael McGeagh1f951fc2020-10-14 09:30:02 +010018from collections import defaultdict
19
Charles Xu87c13502020-08-06 12:17:26 +020020import numpy as np
21
Tim Hallc30f4952020-06-15 20:47:35 +010022from .data_type import BaseType
23from .data_type import DataType
Dwight Lidman8359a472020-09-28 15:53:40 +020024from .numeric_util import is_integer
Louis Verhaardfa2f92a2020-09-21 11:56:18 +020025from .operation import get_slice_offsets
Louis Verhaardaee5d752020-09-30 09:01:52 +020026from .operation import Op
Michael McGeagh16895482020-12-14 15:51:20 +000027from .operation import Padding
Tim Hall93582962020-09-09 21:58:15 +010028from .tensor import check_quantized_tens_scaling_equal
Michael McGeagh837dc1b2020-11-10 12:38:25 +000029from .tflite_mapping import BUILTIN_OPERATOR_UNKNOWN
Michael McGeagh219ec072020-11-09 11:11:26 +000030from .tflite_mapping import optype_to_builtintype
Louis Verhaardfa2f92a2020-09-21 11:56:18 +020031
32
Michael McGeagh37ded342020-10-01 15:37:44 +010033# Custom decorator function to allow formatting docstrings containing "{}"
34def docstring_format_args(args):
35 def docstring(func):
36 func.__doc__ = func.__doc__.format(*args)
37 return func
38
39 return docstring
40
41
Michael McGeagh34d29172020-11-25 12:36:23 +000042def _list_formatter(arg):
43 # Order and join into a string representation
44 return ", ".join(sorted(map(str, arg)))
45
46
Michael McGeagh837dc1b2020-11-10 12:38:25 +000047def _optype_formatter(op_list):
48 # Convert internal op types to external names
49 output = map(optype_to_builtintype, op_list)
50 # Remove UNKNOWNs
51 output = (x for x in output if x is not BUILTIN_OPERATOR_UNKNOWN)
Michael McGeagh34d29172020-11-25 12:36:23 +000052 return _list_formatter(output)
Michael McGeagh837dc1b2020-11-10 12:38:25 +000053
54
Tim Hall79d07d22020-04-27 18:20:16 +010055class SupportedOperators:
Michael McGeagh1eeea512020-09-30 14:23:09 +010056 # Categorised lists of supported operators
Louis Verhaardaee5d752020-09-30 09:01:52 +020057 npu_pre_ops = set((Op.SplitSliceRead,))
58 convolution_ops = set((Op.Conv2DBias, Op.Conv2D, Op.QuantizedConv2D,))
59 depthwise_convolution_ops = set((Op.DepthwiseConv2DBias,))
60 transpose_convolution_ops = set((Op.Conv2DBackpropInput,))
Michael McGeagh1f951fc2020-10-14 09:30:02 +010061 convolution_like_ops = convolution_ops | depthwise_convolution_ops | transpose_convolution_ops
Louis Verhaardaee5d752020-09-30 09:01:52 +020062 max_pooling_ops = Op.op_set(Op.is_maxpool_op)
63 avg_pooling_ops = Op.op_set(Op.is_avgpool_op)
64 pooling_ops = set((Op.ReduceSum,)) | max_pooling_ops | avg_pooling_ops
65 resizing_ops = set((Op.ResizeBilinear,))
66 fc_vector_products = set((Op.QuantizedMatMul, Op.MatMul, Op.FullyConnected,))
Michael McGeagh1eeea512020-09-30 14:23:09 +010067 mac_main_ops = (
68 # RNN/LSTM/GRU
Louis Verhaardaee5d752020-09-30 09:01:52 +020069 set((Op.BlockLSTM,))
Michael McGeagh1f951fc2020-10-14 09:30:02 +010070 # conv/depthwiseconv/transposeconv
71 | convolution_like_ops
Michael McGeagh1eeea512020-09-30 14:23:09 +010072 # pooling
73 | pooling_ops
74 # resizing/upscaling
75 | resizing_ops
76 # FC layers
77 | fc_vector_products
Dwight Lidman4f728c02020-12-17 15:14:45 +010078 # Mean (converts to depthwise conv)
79 | set((Op.Mean,))
Michael McGeagh1eeea512020-09-30 14:23:09 +010080 )
Louis Verhaardaee5d752020-09-30 09:01:52 +020081 unary_elem_wise_main_ops = Op.op_set(Op.is_unary_elementwise_op)
82 binary_elem_wise_min_max_ops = set((Op.Minimum, Op.Maximum,))
83 binary_elem_wise_shift_ops = set((Op.SHL, Op.SHR,))
84 binary_elem_wise_add_mul_sub = set((Op.Add, Op.Mul, Op.Sub,))
Michael McGeagh1eeea512020-09-30 14:23:09 +010085 binary_elem_wise_main_ops = binary_elem_wise_min_max_ops | binary_elem_wise_add_mul_sub | binary_elem_wise_shift_ops
86 elem_wise_main_ops = binary_elem_wise_main_ops | unary_elem_wise_main_ops
Erik Anderssonf27a8b62020-12-10 14:58:23 +010087 pad_ops = set((Op.Pad,))
Michael McGeagh37ded342020-10-01 15:37:44 +010088 supported_int32_tensor_ops = (
Louis Verhaardaee5d752020-09-30 09:01:52 +020089 set((Op.ReduceSum, Op.CLZ,)) | binary_elem_wise_add_mul_sub | binary_elem_wise_shift_ops
Michael McGeagh37ded342020-10-01 15:37:44 +010090 )
Michael McGeagh65fd9982020-10-20 11:49:28 +010091 relu_ops = Op.op_set(Op.is_relu_op)
Diqing Zhong189f7482021-01-26 12:12:51 +010092 activation_ops = relu_ops | set((Op.Tanh, Op.Sigmoid, Op.Softmax, Op.HardSwish))
Michael McGeagh1eeea512020-09-30 14:23:09 +010093 npu_post_ops = (
Michael McGeagh1eeea512020-09-30 14:23:09 +010094 # activation functions
Louis Verhaardaee5d752020-09-30 09:01:52 +020095 activation_ops
96 # concatenation write direction
97 | set((Op.ConcatSliceWrite,))
98 # Quantization
99 | set((Op.Quantize,))
Michael McGeagh1eeea512020-09-30 14:23:09 +0100100 )
Louis Verhaardaee5d752020-09-30 09:01:52 +0200101 split_ops = set((Op.Split, Op.SplitV, Op.StridedSlice, Op.Slice, Op.UnpackReshaped, Op.Unpack,))
102 concat_ops = set((Op.Concat, Op.ConcatTFLite, Op.PackReshaped, Op.Pack,))
Louis Verhaard3d22f3c2021-02-03 08:43:54 +0100103 memory_only_ops = set((Op.Reshape, Op.QuantizedReshape,)) | concat_ops | split_ops
Dwight Lidman4f728c02020-12-17 15:14:45 +0100104 shapeless_input_ops = binary_elem_wise_main_ops | set((Op.Split, Op.SplitV, Op.Mean))
Dwight Lidmanc7187432020-11-16 17:40:46 +0100105 per_axis_quant_ops = convolution_like_ops # per-axis/channel quantization only currently supported for conv ops
Michael McGeagh65fd9982020-10-20 11:49:28 +0100106 supported_fused_activations = relu_ops | set((Op.Tanh, Op.Sigmoid, Op.LUT,))
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100107 supported_operators = npu_pre_ops | mac_main_ops | elem_wise_main_ops | pad_ops | npu_post_ops | memory_only_ops
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100108 # Supported data types
109 supported_op_dtypes = set((DataType.uint8, DataType.int8, DataType.int16, DataType.int32))
Louis Verhaardc7761512021-02-03 10:22:38 +0100110 supported_faf_dtypes = set((DataType.uint8, DataType.int8, DataType.int16))
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100111 supported_bias_dtypes = set((DataType.int32, DataType.int64))
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100112 supported_pad_dtypes = set((DataType.int32, DataType.int64))
Michael McGeagh37ded342020-10-01 15:37:44 +0100113 # Defined ranges for allowed values:
114 tens_dim_range = (1, 65535)
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100115 stride_range = (1, 3)
116 dilation_range = (1, 2)
117 dilated_height_range = (1, 64)
118 dilated_product_range = (1, 64 * 64)
119 weights_limit = 127 * 65536
Michael McGeagh65fd9982020-10-20 11:49:28 +0100120 filter_range = (1, 8)
121 filter_height_range = (1, 256)
122 filter_product_range = (1, 256 * 256)
Dwight Lidman4f728c02020-12-17 15:14:45 +0100123 mean_kernel_product = 64 * 64
124 mean_kernel_product_int8 = 16 * 16
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100125 # Supported consumers
Louis Verhaard1a92f782021-02-09 16:08:26 +0100126 supported_pad_consumers = convolution_ops | depthwise_convolution_ops | pooling_ops
Michael McGeagh1eeea512020-09-30 14:23:09 +0100127
Fredrik Svedberg880e7352020-08-25 11:31:47 +0200128 def __init__(self):
Michael McGeagh184b2502020-10-09 17:19:52 +0100129 # Setup the generic constraints. Note: the order matters
Michael McGeagh37ded342020-10-01 15:37:44 +0100130 self.generic_constraints = []
Michael McGeagh65fd9982020-10-20 11:49:28 +0100131 self.generic_constraints.append(SupportedOperators.constraint_tens_no_dynamic)
Michael McGeagh37ded342020-10-01 15:37:44 +0100132 self.generic_constraints.append(SupportedOperators.constraint_tens_defined_shape)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100133 self.generic_constraints.append(SupportedOperators.constraint_tens_output_scalar)
134 self.generic_constraints.append(SupportedOperators.constraint_tens_input_scalar)
Michael McGeagh37ded342020-10-01 15:37:44 +0100135 self.generic_constraints.append(SupportedOperators.constraint_tens_shape_size)
136 self.generic_constraints.append(SupportedOperators.constraint_tens_dtype)
Michael McGeagh184b2502020-10-09 17:19:52 +0100137 self.generic_constraints.append(SupportedOperators.constraint_tens_int32_ops)
Michael McGeagh37ded342020-10-01 15:37:44 +0100138 self.generic_constraints.append(SupportedOperators.constraint_tens_dimension)
Dwight Lidman8359a472020-09-28 15:53:40 +0200139 self.generic_constraints.append(SupportedOperators.constraint_tens_quant_none_check)
Michael McGeagh184b2502020-10-09 17:19:52 +0100140 self.generic_constraints.append(SupportedOperators.constraint_tens_quant_scale)
Dwight Lidmanc7187432020-11-16 17:40:46 +0100141 self.generic_constraints.append(SupportedOperators.constraint_tens_quant_per_axis)
Michael McGeagh184b2502020-10-09 17:19:52 +0100142 self.generic_constraints.append(SupportedOperators.constraint_faf)
Louis Verhaardc7761512021-02-03 10:22:38 +0100143 self.generic_constraints.append(SupportedOperators.constraint_faf_type)
Louis Verhaard9a0cff12021-01-08 11:17:33 +0100144 self.generic_constraints.append(SupportedOperators.constraint_quant_scale_inf)
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100145
Michael McGeagh65fd9982020-10-20 11:49:28 +0100146 # Setup specific constraints. Note: the order matters
147 self.specific_constraints = defaultdict(list)
148
149 # Conv-like checks:
150 for op_type in SupportedOperators.convolution_like_ops:
151 self.specific_constraints[op_type].append(SupportedOperators.constraint_stride_type)
152 self.specific_constraints[op_type].append(SupportedOperators.constraint_stride_range)
153 self.specific_constraints[op_type].append(SupportedOperators.constraint_dilation_type)
154 self.specific_constraints[op_type].append(SupportedOperators.constraint_dilation_range)
155 self.specific_constraints[op_type].append(SupportedOperators.constraint_dilated_height_range)
156 self.specific_constraints[op_type].append(SupportedOperators.constraint_dilated_product_range)
157 self.specific_constraints[op_type].append(SupportedOperators.constraint_weights_type)
158 self.specific_constraints[op_type].append(SupportedOperators.constraint_weights_const)
159 self.specific_constraints[op_type].append(SupportedOperators.constraint_weights_limit)
160 self.specific_constraints[op_type].append(SupportedOperators.constraint_bias_type)
161 self.specific_constraints[op_type].append(SupportedOperators.constraint_bias_40bit)
162 self.specific_constraints[op_type].append(SupportedOperators.constraint_batch_size)
163 # Depthwise Conv specific checks:
164 for op_type in SupportedOperators.depthwise_convolution_ops:
165 self.specific_constraints[op_type].append(SupportedOperators.constraint_depth_multiplier)
166 # Transpose Conv specific checks:
167 for op_type in SupportedOperators.transpose_convolution_ops:
168 self.specific_constraints[op_type].append(SupportedOperators.constraint_tconv_stride)
169 self.specific_constraints[op_type].append(SupportedOperators.constraint_tconv_same)
170 self.specific_constraints[op_type].append(SupportedOperators.constraint_tconv_valid)
171
172 # Pooling checks:
173 for op_type in SupportedOperators.pooling_ops:
174 self.specific_constraints[op_type].append(SupportedOperators.constraint_batch_size)
175 self.specific_constraints[op_type].append(SupportedOperators.constraint_stride_type)
176 self.specific_constraints[op_type].append(SupportedOperators.constraint_stride_range)
177 # AVG pooling specific checks:
178 for op_type in SupportedOperators.avg_pooling_ops:
179 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_in_out_types)
180 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_type)
181 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_range)
182 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_height_range_valid_pad)
183 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_product_range_valid_pad)
184 # MAX pooling specific checks:
185 for op_type in SupportedOperators.max_pooling_ops:
186 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_in_out_types)
187 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_type)
188 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_height_range)
189 self.specific_constraints[op_type].append(SupportedOperators.constraint_filter_product_range)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100190
191 # Resizing specific checks:
192 for op_type in SupportedOperators.resizing_ops:
193 self.specific_constraints[op_type].append(SupportedOperators.constraint_resize)
194
195 # Vector Product specific checks:
196 for op_type in SupportedOperators.fc_vector_products:
197 self.specific_constraints[op_type].append(SupportedOperators.constraint_weights_type)
198 self.specific_constraints[op_type].append(SupportedOperators.constraint_weights_const)
199 self.specific_constraints[op_type].append(SupportedOperators.constraint_bias_type)
200 self.specific_constraints[op_type].append(SupportedOperators.constraint_bias_40bit)
201
202 # Concat specific checks:
203 for op_type in (Op.Concat, Op.ConcatTFLite):
204 self.specific_constraints[op_type].append(SupportedOperators.constraint_axis_exists)
205 self.specific_constraints[op_type].append(SupportedOperators.constraint_axis_valid)
206 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_dimensionality)
207 self.specific_constraints[op_type].append(SupportedOperators.constraint_valid_dimensions)
208
209 # Element-wise checks:
210 for op_type in SupportedOperators.elem_wise_main_ops:
211 self.specific_constraints[op_type].append(SupportedOperators.constraint_elemwise_batch_size)
212 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_either_shapes)
213 # Unary specific checks:
214 for op_type in SupportedOperators.unary_elem_wise_main_ops:
215 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_in_out_types)
216 # Binary Min/Max specific checks:
217 for op_type in SupportedOperators.binary_elem_wise_min_max_ops:
218 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_in_out_types)
219 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_quantization_parameters)
Andreas Nevalainend059d8b2020-11-19 14:40:35 +0100220 self.specific_constraints[op_type].append(SupportedOperators.constraint_broadcast_shapes)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100221 # Binary Add/Mul/Sub specific checks:
222 for op_type in SupportedOperators.binary_elem_wise_add_mul_sub:
223 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_inputs_types)
224 self.specific_constraints[op_type].append(SupportedOperators.constraint_matching_signed)
225 self.specific_constraints[op_type].append(SupportedOperators.constraint_unsigned_valid)
Andreas Nevalainend059d8b2020-11-19 14:40:35 +0100226 self.specific_constraints[op_type].append(SupportedOperators.constraint_broadcast_shapes)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100227 # Binary Shift specific checks:
228 for op_type in SupportedOperators.binary_elem_wise_shift_ops:
229 self.specific_constraints[op_type].append(SupportedOperators.constraint_inputs_int32)
Andreas Nevalainend059d8b2020-11-19 14:40:35 +0100230 self.specific_constraints[op_type].append(SupportedOperators.constraint_broadcast_shapes)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100231
232 # SHL specific checks:
233 self.specific_constraints[Op.SHL].append(SupportedOperators.constraint_output_int32)
234
235 # CLZ specific checks:
236 self.specific_constraints[Op.CLZ].append(SupportedOperators.constraint_output_int32)
237
238 # Softmax specific checks:
239 self.specific_constraints[Op.Softmax].append(SupportedOperators.constraint_matching_shapes)
240 self.specific_constraints[Op.Softmax].append(SupportedOperators.constraint_matching_in_out_types)
Patrik Gustavsson2fa15882020-11-13 09:02:31 +0100241 self.specific_constraints[Op.Softmax].append(SupportedOperators.constraint_beta_value_range)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100242
243 # SplitV specific checks:
244 self.specific_constraints[Op.SplitV].append(SupportedOperators.constraint_splitv_inferred)
245
246 # StridedSlice specific checks:
247 self.specific_constraints[Op.StridedSlice].append(SupportedOperators.constraint_stridedslice_input_count)
248 self.specific_constraints[Op.StridedSlice].append(SupportedOperators.constraint_stridedslice_inputs_const)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100249 self.specific_constraints[Op.StridedSlice].append(SupportedOperators.constraint_stridedslice_stride_values)
250 self.specific_constraints[Op.StridedSlice].append(SupportedOperators.constraint_ellipsis_mask)
251 self.specific_constraints[Op.StridedSlice].append(SupportedOperators.constraint_axis_masks)
252 self.specific_constraints[Op.StridedSlice].append(SupportedOperators.constraint_slice_ranges)
253
254 # LeakyRelu specific checks:
255 self.specific_constraints[Op.LeakyRelu].append(SupportedOperators.constraint_alpha_valid)
Tim Hall79d07d22020-04-27 18:20:16 +0100256
Dwight Lidman0dd21c72020-11-24 13:45:50 +0100257 # FullyConnected specific checks:
258 self.specific_constraints[Op.FullyConnected].append(SupportedOperators.constraint_fc_output_2d)
erik.andersson@arm.com0cbb1662021-02-22 15:47:07 +0100259 self.specific_constraints[Op.FullyConnected].append(SupportedOperators.constraint_keep_dim_ifm_ofm)
Dwight Lidman0dd21c72020-11-24 13:45:50 +0100260
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100261 # Pad specific checks:
262 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_matching_in_out_types)
263 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_matching_quantization_parameters)
264 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_pad_input_count)
265 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_pad_shape)
266 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_padding_dimensions)
267 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_pad_type)
268 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_pad_constant)
269 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_pad_ofm)
Louis Verhaardebf4af62021-01-27 15:57:57 +0100270 self.specific_constraints[Op.Pad].append(SupportedOperators.constraint_pad_size)
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100271
Diqing Zhong189f7482021-01-26 12:12:51 +0100272 # HardSwish specific checks:
273 self.specific_constraints[Op.HardSwish].append(SupportedOperators.constraint_input_8bit)
274 self.specific_constraints[Op.HardSwish].append(SupportedOperators.constraint_matching_in_out_types)
Dwight Lidman4f728c02020-12-17 15:14:45 +0100275 # Mean specific checks:
276 self.specific_constraints[Op.Mean].append(SupportedOperators.constraint_input_8bit)
277 self.specific_constraints[Op.Mean].append(SupportedOperators.constraint_mean_properties)
278 self.specific_constraints[Op.Mean].append(SupportedOperators.constraint_mean_input_dims)
279 self.specific_constraints[Op.Mean].append(SupportedOperators.constraint_mean_axis)
280 self.specific_constraints[Op.Mean].append(SupportedOperators.constraint_mean_height_width_product)
281 self.specific_constraints[Op.Mean].append(SupportedOperators.constraint_mean_height_width_product_int8)
Diqing Zhong189f7482021-01-26 12:12:51 +0100282
Tim Hall79d07d22020-04-27 18:20:16 +0100283 def is_operator_supported(self, op):
Michael McGeagh219ec072020-11-09 11:11:26 +0000284 ext_type = optype_to_builtintype(op.type)
Michael McGeagh1eeea512020-09-30 14:23:09 +0100285 if op.type not in SupportedOperators.supported_operators:
Louis Verhaard5f2ea2f2020-10-15 08:39:44 +0200286 if op.type not in (Op.Placeholder, Op.SubgraphInput, Op.Const):
Michael McGeagh219ec072020-11-09 11:11:26 +0000287 print(f"Info: {ext_type} '{op.name}' is a CPU only op")
Tim Hall79d07d22020-04-27 18:20:16 +0100288 return False
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100289
Michael McGeagh65fd9982020-10-20 11:49:28 +0100290 for constraint in self.generic_constraints + self.specific_constraints[op.type]:
Michael McGeagh37ded342020-10-01 15:37:44 +0100291 valid, extra = constraint(op)
292 if not valid:
Michael McGeagh219ec072020-11-09 11:11:26 +0000293 print(f"Warning: {ext_type} '{op.name}' is not supported on the NPU. Placing on CPU instead")
Michael McGeagh65fd9982020-10-20 11:49:28 +0100294 print(f" - {constraint.__doc__}")
Michael McGeagh37ded342020-10-01 15:37:44 +0100295 if extra:
Michael McGeagh65fd9982020-10-20 11:49:28 +0100296 print(f" {extra}")
Michael McGeagh37ded342020-10-01 15:37:44 +0100297 return False
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100298
Tim Hall79d07d22020-04-27 18:20:16 +0100299 return True
300
Michael McGeagh37ded342020-10-01 15:37:44 +0100301 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +0100302 def constraint_tens_no_dynamic(op):
303 "Input(s) and Output tensors must not be dynamic"
304 valid = True
305 extra = []
306 tensors = [tens for tens in op.inputs + op.outputs if tens]
307 for tens in tensors:
308 if (tens.shape == []) and (tens.values is None):
309 valid = False
310 extra.append(tens.name)
311 extra = ", ".join(extra)
312 return valid, f"Op has dynamic tensor(s): {extra}"
313
314 @staticmethod
Michael McGeagh37ded342020-10-01 15:37:44 +0100315 def constraint_tens_defined_shape(op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100316 "Input(s) and Output tensors must have a defined shape"
Michael McGeagh37ded342020-10-01 15:37:44 +0100317 valid = True
318 extra = []
Michael McGeagh184b2502020-10-09 17:19:52 +0100319 tensors = [tens for tens in op.inputs + op.outputs if tens]
320 for tens in tensors:
321 if not tens.has_fully_defined_shape():
322 valid = False
Michael McGeagh65fd9982020-10-20 11:49:28 +0100323 extra.append(f"Tensor '{tens.name}' has shape: {tens.shape}")
Michael McGeagh184b2502020-10-09 17:19:52 +0100324 return valid, ", ".join(extra)
Michael McGeagh37ded342020-10-01 15:37:44 +0100325
Michael McGeagh184b2502020-10-09 17:19:52 +0100326 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +0100327 def constraint_tens_output_scalar(op):
328 "Output tensors cannot be scalar"
329 ofm = op.ofm
330 valid = ofm.shape != []
331 return valid, f"Output Tensor '{ofm.name}' is scalar"
Michael McGeagh184b2502020-10-09 17:19:52 +0100332
333 @classmethod
Michael McGeagh34d29172020-11-25 12:36:23 +0000334 @docstring_format_args([_optype_formatter(shapeless_input_ops)])
Michael McGeagh65fd9982020-10-20 11:49:28 +0100335 def constraint_tens_input_scalar(cls, op):
336 "Scalar Input tensors are only valid for op type: {}"
Michael McGeagh184b2502020-10-09 17:19:52 +0100337 valid = True
338 extra = []
339 tensors = [tens for tens in op.inputs if tens]
340 for tens in tensors:
341 if (tens.shape == []) and (op.type not in cls.shapeless_input_ops):
342 valid = False
343 extra.append(tens.name)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100344 extra = ", ".join(extra)
345 return valid, f"Op has scalar input tensor(s): {extra}"
Tim Hall79d07d22020-04-27 18:20:16 +0100346
Michael McGeagh37ded342020-10-01 15:37:44 +0100347 @staticmethod
348 def constraint_tens_shape_size(op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100349 "Input(s) and Output tensors must not be greater than 4D"
Michael McGeagh37ded342020-10-01 15:37:44 +0100350 valid = True
351 extra = []
Michael McGeagh184b2502020-10-09 17:19:52 +0100352 tensors = [tens for tens in op.inputs + op.outputs if tens]
353 for tens in tensors:
354 if len(tens.shape) > 4:
355 valid = False
Michael McGeagh65fd9982020-10-20 11:49:28 +0100356 extra.append(f"Tensor '{tens.name}' has shape: {tens.shape}")
Michael McGeagh184b2502020-10-09 17:19:52 +0100357 return valid, ", ".join(extra)
Tim Hall79d07d22020-04-27 18:20:16 +0100358
Michael McGeagh37ded342020-10-01 15:37:44 +0100359 @classmethod
Michael McGeagh34d29172020-11-25 12:36:23 +0000360 @docstring_format_args([_list_formatter(supported_op_dtypes)])
Michael McGeagh37ded342020-10-01 15:37:44 +0100361 def constraint_tens_dtype(cls, op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100362 "Tensors must be of type: {}"
Michael McGeagh37ded342020-10-01 15:37:44 +0100363 valid = True
364 extra = []
365 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
Michael McGeagh65fd9982020-10-20 11:49:28 +0100366 if not tensors:
367 tensors = [tens for tens in op.inputs if tens]
Michael McGeagh37ded342020-10-01 15:37:44 +0100368 for tens in tensors:
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100369 if tens.dtype not in cls.supported_op_dtypes:
Michael McGeagh184b2502020-10-09 17:19:52 +0100370 valid = False
Michael McGeagh65fd9982020-10-20 11:49:28 +0100371 extra.append(f"Tensor '{tens.name}' has data type: {tens.dtype}")
Michael McGeagh184b2502020-10-09 17:19:52 +0100372 return valid, ", ".join(extra)
373
374 @classmethod
Michael McGeagh34d29172020-11-25 12:36:23 +0000375 @docstring_format_args([_optype_formatter(supported_int32_tensor_ops)])
Michael McGeagh184b2502020-10-09 17:19:52 +0100376 def constraint_tens_int32_ops(cls, op):
377 "Tensors which are int32 are only valid when op type is: {}"
378 valid = True
379 extra = []
380 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
Michael McGeagh65fd9982020-10-20 11:49:28 +0100381 if not tensors:
382 tensors = [tens for tens in op.inputs if tens]
Michael McGeagh184b2502020-10-09 17:19:52 +0100383 for tens in tensors:
384 if (tens.dtype == DataType.int32) and (op.type not in cls.supported_int32_tensor_ops):
385 valid = False
386 extra.append(tens.name)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100387 extra = ", ".join(extra)
388 return valid, f"Op has int32 tensor(s): {extra}"
Andreas Nevalaineneadb1662020-09-01 15:36:26 +0200389
Michael McGeagh37ded342020-10-01 15:37:44 +0100390 @classmethod
391 @docstring_format_args(tens_dim_range)
392 def constraint_tens_dimension(cls, op):
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100393 "Tensor dimensions must be in the range [{}, {}]"
Michael McGeagh37ded342020-10-01 15:37:44 +0100394 tens_min, tens_max = cls.tens_dim_range
395 valid = True
396 extra = []
397 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
Michael McGeagh65fd9982020-10-20 11:49:28 +0100398 if not tensors:
399 tensors = [tens for tens in op.inputs if tens]
Michael McGeagh37ded342020-10-01 15:37:44 +0100400 for tens in tensors:
Michael McGeagh184b2502020-10-09 17:19:52 +0100401 if not all(tens_min <= dim <= tens_max for dim in tens.shape):
402 valid = False
Michael McGeagh65fd9982020-10-20 11:49:28 +0100403 extra.append(f"Tensor '{tens.name}' has shape: {tens.shape}")
Michael McGeagh184b2502020-10-09 17:19:52 +0100404 return valid, ", ".join(extra)
Tim Hall79d07d22020-04-27 18:20:16 +0100405
Dwight Lidman8359a472020-09-28 15:53:40 +0200406 @staticmethod
407 def constraint_tens_quant_none_check(op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100408 "Input(s), Output and Weight tensors must have quantization parameters"
Dwight Lidman8359a472020-09-28 15:53:40 +0200409 valid = True
410 extra = []
411 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
412 for tens in tensors:
413 if tens.quantization is None:
414 valid = False
Michael McGeagh65fd9982020-10-20 11:49:28 +0100415 extra.append(tens.name)
416 extra = ", ".join(extra)
417 return valid, f"Op has tensors with missing quantization parameters: {extra}"
Dwight Lidman8359a472020-09-28 15:53:40 +0200418
Michael McGeagh184b2502020-10-09 17:19:52 +0100419 @staticmethod
420 def constraint_tens_quant_scale(op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100421 "Input(s), Output and Weight tensors with quantization scales must be finite"
Michael McGeagh184b2502020-10-09 17:19:52 +0100422 valid = True
423 extra = []
424 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
425 for tens in tensors:
426 if (tens.quantization.scale_f32 is not None) and np.isinf(tens.quantization.scale_f32).any():
427 valid = False
Michael McGeagh65fd9982020-10-20 11:49:28 +0100428 extra.append(f"Tensor '{tens.name}' has quantization scale: {tens.quantization.scale_f32}")
Michael McGeagh184b2502020-10-09 17:19:52 +0100429 return valid, ", ".join(extra)
430
431 @classmethod
Michael McGeagh34d29172020-11-25 12:36:23 +0000432 @docstring_format_args([_optype_formatter(per_axis_quant_ops)])
Dwight Lidmanc7187432020-11-16 17:40:46 +0100433 def constraint_tens_quant_per_axis(cls, op):
434 "Per-axis quantization is only supported for the following op types: {}"
435 valid = True
436 extra = []
437 if op.type not in cls.per_axis_quant_ops:
438 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
439 for tens in tensors:
440 if tens.quantization.is_per_axis():
441 valid = False
442 extra.append(tens.name)
443 return valid, "The following tensor(s) have per-axis quantization parameters: " + ", ".join(extra)
444
Dwight Lidman0dd21c72020-11-24 13:45:50 +0100445 @staticmethod
446 def constraint_fc_output_2d(op):
447 "The output tensor(s) must have 2D shape"
448 valid = True
449 extra = []
450 for tens in op.outputs:
451 if len(tens.shape) != 2:
452 valid = False
453 extra.append(f"Tensor '{tens.name}' is {len(tens.shape)}D")
454 return valid, ", ".join(extra)
455
Dwight Lidmanc7187432020-11-16 17:40:46 +0100456 @classmethod
Michael McGeagh34d29172020-11-25 12:36:23 +0000457 @docstring_format_args([_optype_formatter(supported_fused_activations)])
Michael McGeagh184b2502020-10-09 17:19:52 +0100458 def constraint_faf(cls, op):
459 "The fused activation function (if present) must be one of type: {}"
Louis Verhaarde8a5a782020-11-02 18:04:27 +0100460 if op.activation is None:
461 res = True, "Op has no fused activation function"
462 else:
463 faf = op.activation.op_type
464 valid = faf in cls.supported_fused_activations
465 res = valid, f"Op has its fused activation function as: {faf}"
466 return res
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100467
Louis Verhaardc7761512021-02-03 10:22:38 +0100468 @classmethod
469 @docstring_format_args([_list_formatter(supported_faf_dtypes)])
470 def constraint_faf_type(cls, op):
471 "If a fused activation function is present, the Output tensor must be one of type: {}"
472 if op.activation is None:
473 res = True, "Op has no fused activation function"
474 else:
475 valid = op.ofm.dtype in cls.supported_faf_dtypes
476 ext_type = optype_to_builtintype(op.activation.op_type)
477 res = valid, f"Op has fused activation function {ext_type}, and Output tensor data type: {op.ofm.dtype}"
478 return res
479
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100480 @staticmethod
481 def constraint_stride_type(op):
482 "Stride values for both width and height must be integer types"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100483 w, h = op.get_kernel_stride()
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100484 valid = is_integer(w) and is_integer(h)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100485 return valid, f"Op has stride WxH as: {repr(w)}x{repr(h)}"
Michael McGeagh184b2502020-10-09 17:19:52 +0100486
Michael McGeagh1eeea512020-09-30 14:23:09 +0100487 @classmethod
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100488 @docstring_format_args(stride_range)
489 def constraint_stride_range(cls, op):
490 "Stride values for both width and height must be in the range [{}, {}]"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100491 w, h = op.get_kernel_stride()
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100492 stride_min, stride_max = cls.stride_range
493 valid = (stride_min <= w <= stride_max) and (stride_min <= h <= stride_max)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100494 return valid, f"Op has stride WxH as: {w}x{h}"
Tim Hall79d07d22020-04-27 18:20:16 +0100495
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100496 @staticmethod
497 def constraint_dilation_type(op):
498 "Dilation factor values for both width and height must be integer types"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100499 w, h = op.get_kernel_dilation()
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100500 valid = is_integer(w) and is_integer(h)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100501 return valid, f"Op has dilation factor WxH as: {repr(w)}x{repr(h)}"
Tim Hall79d07d22020-04-27 18:20:16 +0100502
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100503 @classmethod
504 @docstring_format_args(dilation_range)
505 def constraint_dilation_range(cls, op):
506 "Dilation factor values for both width and height must be in the range [{}, {}]"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100507 w, h = op.get_kernel_dilation()
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100508 dilation_min, dilation_max = cls.dilation_range
509 valid = (dilation_min <= w <= dilation_max) and (dilation_min <= h <= dilation_max)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100510 return valid, f"Op has dilation factor WxH as: {w}x{h}"
Tim Hall79d07d22020-04-27 18:20:16 +0100511
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100512 @classmethod
513 @docstring_format_args(dilated_height_range)
514 def constraint_dilated_height_range(cls, op):
515 "Dilated kernel height must be in the range [{}, {}]"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100516 h = op.kernel.area_height()
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100517 dilated_height_min, dilated_height_max = cls.dilated_height_range
518 valid = dilated_height_min <= h <= dilated_height_max
Michael McGeagh65fd9982020-10-20 11:49:28 +0100519 return valid, f"Op has dilated kernel height as: {h}"
Jacob Bohlin49d92122020-08-19 14:36:46 +0200520
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100521 @classmethod
522 @docstring_format_args(dilated_product_range)
523 def constraint_dilated_product_range(cls, op):
524 "Product of dilated kernel width and height must be in the range [{}, {}]"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100525 product = op.kernel.area_width() * op.kernel.area_height()
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100526 dilated_product_min, dilated_product_max = cls.dilated_product_range
527 valid = dilated_product_min <= product <= dilated_product_max
Michael McGeagh65fd9982020-10-20 11:49:28 +0100528 return valid, f"Op has product of dilated kernel width and height as: {product}"
Andreas Nevalainenf0c59bf2020-08-26 10:56:23 +0200529
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100530 @staticmethod
531 def constraint_weights_type(op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100532 "Weight tensor must be 8-bit"
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100533 weights = op.weights
534 valid = weights.element_size() == 1
Michael McGeagh65fd9982020-10-20 11:49:28 +0100535 return valid, f"Tensor '{weights.name}' is {int(weights.element_size() * 8)}-bit"
Andreas Nevalainenf0c59bf2020-08-26 10:56:23 +0200536
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100537 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +0100538 def constraint_weights_const(op):
539 "Weight tensor must be constant"
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100540 weights = op.weights
541 valid = weights.values is not None
Michael McGeagh65fd9982020-10-20 11:49:28 +0100542 return valid, f"Tensor '{weights.name}' has non-constant values"
Andreas Nevalainen8854dc92020-09-24 13:43:00 +0200543
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100544 @classmethod
545 @docstring_format_args([weights_limit])
546 def constraint_weights_limit(cls, op):
547 "The sum of the weights cannot exceed {}"
548 weights = op.weights
549 values = weights.quant_values.astype(np.int64) - weights.quantization.zero_point
550 limit = np.amax(np.sum(np.absolute(values), axis=(0, 1, 2)))
551 valid = limit <= cls.weights_limit
Michael McGeagh65fd9982020-10-20 11:49:28 +0100552 return valid, f"Tensor '{weights.name}' has the sum of weights: {limit}"
Andreas Nevalainenf0c59bf2020-08-26 10:56:23 +0200553
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100554 @classmethod
Michael McGeagh34d29172020-11-25 12:36:23 +0000555 @docstring_format_args([_list_formatter(supported_bias_dtypes)])
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100556 def constraint_bias_type(cls, op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100557 "Optional Bias tensor must be of type: {}"
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100558 bias = op.bias
559 if bias:
560 valid = bias.dtype in cls.supported_bias_dtypes
Michael McGeagh65fd9982020-10-20 11:49:28 +0100561 return valid, f"Tensor '{bias.name}' has data type: {bias.dtype}"
562 return True, "Op has no bias tensor"
Tim Hall79d07d22020-04-27 18:20:16 +0100563
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100564 @staticmethod
565 def constraint_bias_40bit(op):
Michael McGeagh65fd9982020-10-20 11:49:28 +0100566 "Optional Bias tensor values must fit within 40-bits"
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100567 bias = op.bias
Fredrik Svedbergbdf09f92020-11-18 11:30:21 +0100568 if bias and bias.dtype == DataType.int64 and bias.quant_values is not None:
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100569 valid = all(len(bin(quant_value)[2:]) <= 40 for quant_value in bias.quant_values)
Michael McGeagh65fd9982020-10-20 11:49:28 +0100570 return valid, f"Tensor '{bias.name}' has values larger than 40-bits"
571 return True, "Op has no bias tensor, or it fits in 40-bit"
Andreas Nevalainend8c032d2020-09-11 10:25:09 +0200572
Michael McGeagh1f951fc2020-10-14 09:30:02 +0100573 @staticmethod
574 def constraint_batch_size(op):
575 "IFM Tensor batch size must be 1"
576 ifm = op.ifm
577 valid = ifm.shape[0] == 1
Michael McGeagh65fd9982020-10-20 11:49:28 +0100578 return valid, f"Tensor '{ifm.name}' has batch size: {ifm.shape[0]}"
579
580 @staticmethod
581 def constraint_quant_scale_inf(op):
Louis Verhaard9a0cff12021-01-08 11:17:33 +0100582 "Input and Output tensors must have quantization scales that fit within float32 precision"
583 if op.ofm is not None and op.ofm.is_quantized():
584 ofm_scale = op.ofm.quantization.scale_f32
585 if ofm_scale < np.finfo(np.float32).tiny:
586 return (
587 False,
588 f"The quantization scale of the output tensor is {ofm_scale}, "
589 + f"minimum supported is: {np.finfo(np.float32).tiny}",
590 )
591 if op.ifm is not None and op.ifm.is_quantized():
592 ifm_scale = op.ifm.quantization.scale_f32
593 if np.isinf(ifm_scale / ofm_scale):
594 return (
595 False,
596 f"IFM scale divided by OFM scale is infinite, ifm_scale={ifm_scale} ofm_scale={ofm_scale}",
597 )
598 return True, "Op's quantization is ok"
Michael McGeagh65fd9982020-10-20 11:49:28 +0100599
600 @staticmethod
601 def constraint_depth_multiplier(op):
602 "For depth multipliers > 1, IFM channels must be 1 and OFM channels must be equal to the depth multiplier"
603 depth_multiplier = op.attrs.get("depth_multiplier", 1)
604 if depth_multiplier > 1:
605 ifm_channels = op.ifm.shape[3]
606 ofm_channels = op.ofm.shape[3]
607 valid = (ifm_channels == 1) and (ofm_channels == depth_multiplier)
608 extra = (
609 f"Op has ifm_channels={ifm_channels}, ofm_channels={ofm_channels}"
610 f" and depth_multiplier={depth_multiplier}"
611 )
612 return valid, extra
613 return True, "Op has depth_multiplier=1"
614
615 @staticmethod
616 def constraint_tconv_stride(op):
617 "Stride values for both width and height must be 2"
618 w = op.kernel.stride.x
619 h = op.kernel.stride.y
620 valid = (w == 2) and (h == 2)
621 return valid, f"Op has stride WxH as: {w}x{h}"
622
623 @staticmethod
624 def constraint_tconv_same(op):
625 "SAME padding: OFM dimensions must equal IFM dimensions multiplied by stride"
Michael McGeagh16895482020-12-14 15:51:20 +0000626 if op.attrs["padding"] == Padding.SAME:
Michael McGeagh65fd9982020-10-20 11:49:28 +0100627 w = op.kernel.stride.x
628 h = op.kernel.stride.y
629 ifm_shape = op.ifm.shape
630 ofm_shape = op.ofm.shape
631 valid = (ofm_shape[1] == (ifm_shape[1] * h)) and (ofm_shape[2] == (ifm_shape[2] * w))
632 return valid, f"Op has ifm_shape={ifm_shape}, ofm_shape={ofm_shape} and stride WxH as {w}x{h}"
633 return True, "Op has padding=VALID"
634
635 @staticmethod
636 def constraint_tconv_valid(op):
637 """VALID padding: OFM dimensions must equal IFM dimensions multiplied by stride,
638 minus difference between kernel size and stride"""
Michael McGeagh16895482020-12-14 15:51:20 +0000639 if op.attrs["padding"] == Padding.VALID:
Michael McGeagh65fd9982020-10-20 11:49:28 +0100640 s_w = op.kernel.stride.x
641 s_h = op.kernel.stride.y
642 k_w = op.kernel.width
643 k_h = op.kernel.height
644 ifm_shape = op.ifm.shape
645 ofm_shape = op.ofm.shape
646 height_check = ofm_shape[1] == (ifm_shape[1] * s_h + max(k_h - s_h, 0))
647 width_check = ofm_shape[2] == (ifm_shape[2] * s_w + max(k_w - s_w, 0))
648 valid = height_check and width_check
649 extra = (
650 f"Op has ifm_shape={ifm_shape}, ofm_shape={ofm_shape},"
651 f" stride WxH as {s_w}x{s_h} and kernel WxH as {k_w}x{k_h}"
652 )
653 return valid, extra
654 return True, "Op has padding=SAME"
655
656 @staticmethod
657 def constraint_matching_in_out_types(op):
658 "IFM and OFM data types must match"
659 ifm_dtype = op.ifm.dtype
660 ofm_dtype = op.ofm.dtype
661 valid = ifm_dtype == ofm_dtype
662 return valid, f"Op has ifm_dtype={ifm_dtype} and ofm_dtype={ofm_dtype}"
663
664 @staticmethod
Patrik Gustavsson2fa15882020-11-13 09:02:31 +0100665 def constraint_beta_value_range(op):
666 "Beta value needs to be positive"
667 beta = op.attrs.get("beta", 1.0)
668 valid = beta >= 0
669 return valid, f"Op has beta={beta}"
670
671 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +0100672 def constraint_filter_type(op):
673 "Kernel filter values for both width and height must be integer types"
674 w = op.kernel.width
675 h = op.kernel.height
676 valid = is_integer(w) and is_integer(h)
677 return valid, f"Op has kernel filter WxH as: {repr(w)}x{repr(h)}"
678
679 @classmethod
680 @docstring_format_args(filter_range)
681 def constraint_filter_range(cls, op):
682 "Kernel filter values for both width and height must be in the range [{}, {}]"
Michael McGeagh16895482020-12-14 15:51:20 +0000683 if op.attrs["padding"] == Padding.SAME:
Michael McGeagh65fd9982020-10-20 11:49:28 +0100684 w = op.kernel.width
685 h = op.kernel.height
686 filter_min, filter_max = cls.filter_range
687 valid = (filter_min <= w <= filter_max) and (filter_min <= h <= filter_max)
688 return valid, f"Op has kernel filter WxH as: {w}x{h}"
689 return True, "Op has padding=VALID"
690
691 @classmethod
692 @docstring_format_args(filter_height_range)
693 def constraint_filter_height_range(cls, op):
694 "Kernel filter height must be in the range [{}, {}]"
695 h = op.kernel.height
696 filter_height_min, filter_height_max = cls.filter_height_range
697 valid = filter_height_min <= h <= filter_height_max
698 return valid, f"Op has kernel filter height as: {h}"
699
700 @classmethod
701 @docstring_format_args(filter_product_range)
702 def constraint_filter_product_range(cls, op):
703 "Product of kernel filter width and height must be in the range [{}, {}]"
704 product = op.kernel.elements_wh()
705 filter_product_min, filter_product_max = cls.filter_product_range
706 valid = filter_product_min <= product <= filter_product_max
707 return valid, f"Op has product of kernel filter width and height as: {product}"
708
709 @staticmethod
710 @docstring_format_args(filter_height_range)
711 def constraint_filter_height_range_valid_pad(op):
712 "VALID padding: Kernel filter height must be in the range [{}, {}]"
Michael McGeagh16895482020-12-14 15:51:20 +0000713 if op.attrs["padding"] == Padding.VALID:
Michael McGeagh65fd9982020-10-20 11:49:28 +0100714 return SupportedOperators.constraint_filter_height_range(op)
715 return True, "Op has padding=SAME"
716
717 @staticmethod
718 @docstring_format_args(filter_product_range)
719 def constraint_filter_product_range_valid_pad(op):
720 "VALID padding: Product of kernel filter width and height must be in the range [{}, {}]"
Michael McGeagh16895482020-12-14 15:51:20 +0000721 if op.attrs["padding"] == Padding.VALID:
Michael McGeagh65fd9982020-10-20 11:49:28 +0100722 return SupportedOperators.constraint_filter_product_range(op)
723 return True, "Op has padding=SAME"
724
725 @staticmethod
726 def constraint_resize(op):
727 """The width and height of the IFM and OFM must match one of the following criteria:
728 IFM W and H must both be 1
729 IFM must match OFM
730 OFM W and H must be 2x IFM -1, if align_corners is True
731 OFM W and H must be 2x IFM, if align_corners is False"""
732 # Easier to start with False condition as very few cases result in a supported resize
733 valid = False
734 ifm_shape = op.ifm.shape
735 ofm_shape = op.ofm.shape
736 align_corners = op.attrs.get("align_corners", False)
737 if len(ifm_shape) == 4:
738 # Valid if IFM W and H are both 1, or IFM and OFM shape are the same
739 if ((ifm_shape[1] == 1) and (ifm_shape[2] == 1)) or (ifm_shape == ofm_shape):
740 valid = True
741 else:
742 upscaled_shape = np.array(ifm_shape[1:3])
743 out_shape = np.array(ofm_shape[1:3])
744 while (upscaled_shape < out_shape).all():
745 upscaled_shape *= 2
746 if align_corners:
747 upscaled_shape -= 1
748 # Valid if OFM is 2x IFM (-1 for align corners)
749 if np.array_equal(out_shape, upscaled_shape):
750 valid = True
751 break
752 return valid, f"Op has ifm_shape={ifm_shape}, ofm_shape={ofm_shape} and align_corners={align_corners}"
753
754 @staticmethod
755 def constraint_matching_shapes(op):
756 "IFM and OFM shapes must match"
757 ifm_shape = op.ifm.shape
758 ofm_shape = op.ofm.shape
759 valid = ifm_shape == ofm_shape
760 return valid, f"Op has ifm_shape={ifm_shape} and ofm_shape={ofm_shape}"
761
762 @staticmethod
763 def constraint_splitv_inferred(op):
764 "Only one size is allowed to be inferred"
Jacob Bohline3de4e52020-11-27 14:52:06 +0100765 sizes = op.inputs[1].values
Michael McGeagh65fd9982020-10-20 11:49:28 +0100766 valid = np.count_nonzero(sizes == -1) <= 1
767 return valid, f"Op has multiple inferred sizes (-1): {sizes}"
768
769 @staticmethod
770 def constraint_axis_exists(op):
771 "Axis attribute must exist"
772 axis = op.attrs.get("axis")
773 valid = axis is not None
774 return valid, f"Op has axis={axis}"
775
776 @staticmethod
777 def constraint_axis_valid(op):
778 "Axis attribute must be in the range [0, <ofm_dimensions>)"
779 dims = len(op.ofm.shape)
780 axis = op.attrs["axis"]
781 axis += dims if axis < 0 else 0
782 valid = 0 <= axis < dims
783 return valid, f"Op has ofm_dimensions={dims} and axis attribute is: {axis}"
784
785 @staticmethod
786 def constraint_matching_dimensionality(op):
787 "All Input dimensionalities must match OFM dimensionality"
788 valid = True
789 extra = []
790 ofm_dim = len(op.ofm.shape)
791 tensors = [tens for tens in op.inputs if tens]
792 for tens in tensors:
793 dim = len(tens.shape)
794 if dim != ofm_dim:
795 valid = False
796 extra.append(f"Tensor '{tens.name}' has dimension: {dim}")
797 extra = ", ".join(extra)
798 return valid, f"Op has ofm_dimension={ofm_dim} and the list of mismatching inputs are: {extra}"
799
800 @staticmethod
801 def constraint_valid_dimensions(op):
802 "All Input dimensions must match OFM dimension in all axes except the one defined by the axis attribute"
803 valid = True
804 extra = []
805 ofm_shape = op.ofm.shape
806 ofm_dim = len(ofm_shape)
807 axis = op.attrs["axis"]
808 axis += ofm_dim if axis < 0 else 0
809 tensors = [tens for tens in op.inputs if tens]
810 for tens in tensors:
811 if any(tens.shape[dim] != ofm_shape[dim] for dim in range(ofm_dim) if dim != axis):
812 valid = False
813 extra.append(f"Tensor '{tens.name}' has shape: {tens.shape}")
814 extra = ", ".join(extra)
815 return valid, f"Op has axis={axis}, ofm_shape={ofm_shape} and the list of mismatching inputs are: {extra}"
816
817 @staticmethod
818 def constraint_stridedslice_input_count(op):
819 "Exactly 4 Input tensors are required"
820 inputs = len(op.inputs)
821 valid = inputs == 4
822 return valid, f"Op has {inputs} inputs"
823
824 @staticmethod
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100825 def constraint_pad_input_count(op):
826 "Number of input tensors must be exactly 2"
827 inputs = len(op.inputs)
828 valid = inputs == 2
829 return valid, f"Op has {inputs} inputs"
830
831 @staticmethod
832 def constraint_pad_shape(op):
833 "The padding tensor must have the shape [4,2]"
834 valid = op.inputs[1].shape == [4, 2]
835 return valid, f"The pad tensor has the shape: {op.inputs[1].shape}"
836
837 @classmethod
838 @docstring_format_args([_list_formatter(supported_pad_dtypes)])
839 def constraint_pad_type(cls, op):
840 "Pad tensor must be of type: {}"
841 pad_tensor = op.inputs[1]
842 valid = pad_tensor.dtype in cls.supported_pad_dtypes
843 return valid, f"Tensor '{pad_tensor.name}' has data type: {pad_tensor.dtype}"
844
845 @staticmethod
846 def constraint_padding_dimensions(op):
847 "The pad tensor can only pad width and height"
848 pad_tensor = op.inputs[1].values
849 valid = sum(pad_tensor[0, :]) + sum(pad_tensor[-1, :]) == 0
850 return valid, f"First dimension padding: {pad_tensor[0,:]}, last dimension padding: {pad_tensor[-1,:]}"
851
852 @staticmethod
853 def constraint_pad_constant(op):
Louis Verhaard3d22f3c2021-02-03 08:43:54 +0100854 "The padding tensor must be constant"
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100855 pad_tensor = op.inputs[1].values
856 valid = pad_tensor is not None
857 return valid, f"Op has non-constant padding tensor: {op.inputs[1].values}"
858
859 @classmethod
860 @docstring_format_args([_optype_formatter(supported_pad_consumers)])
861 def constraint_pad_ofm(cls, op):
862 "Must be followed by one of the following operator types: {}"
863 consumers = op.ofm.consumers()
erik.andersson@arm.com7b676492021-01-18 14:23:12 +0100864 unsupported_consumers = [
865 cons.type
866 for cons in consumers
867 if cons is not None
868 if cons.type not in cls.supported_pad_consumers or cons.attrs["padding"] != Padding.VALID
869 ] + [None for cons in consumers if cons is None]
870 none_string = ", ".join(["NoneType" for cons in consumers if cons is None])
871 valid = len(unsupported_consumers) == 0
872 return valid, f"PAD operator is followed by: {_optype_formatter(unsupported_consumers)+none_string}"
Erik Anderssonf27a8b62020-12-10 14:58:23 +0100873
874 @staticmethod
Louis Verhaardebf4af62021-01-27 15:57:57 +0100875 def __leading_pad_ok(leading_pad, stride, kernel_size):
876 # If kernel size // 2 > stride, then (left, top) padding must be a multiple of stride,
877 # otherwise replacing PAD by hardware padding would iterate the wrong IFM rows/columns
878 max_size = kernel_size // 2
879 return leading_pad == max_size or max_size <= stride or leading_pad % stride == 0
880
881 @staticmethod
882 def constraint_pad_size(op):
883 "Padding must be at most kernel size divided by 2"
884 if SupportedOperators.constraint_pad_ofm(op)[0]:
885 padding = op.inputs[1].values # 4x2 tensor, first dimension is N, H, W, C
886 top, left, bottom, right = (padding[1][0], padding[2][0], padding[1][1], padding[2][1])
887 for cons in op.ofm.consumers():
888 if cons is not None:
889 # Note: pre-order graph traversal removes inputs of operators that are in traversal,
890 # which makes it impossible to calculate kernel size, hence use cached _kernel for those operators
891 k = cons.kernel if cons.inputs else cons._kernel
892 k_w, k_h = k.dilated_wh()
Louis Verhaard1a92f782021-02-09 16:08:26 +0100893 if cons.type.is_avgpool_op():
894 # For average pool, padding works different on the NPU; more restrictions apply
895 for name, pad, k_size in (
896 ("Left", left, k_w),
897 ("Right", right, k_w),
898 ("Top", top, k_h),
899 ("Bottom", bottom, k_h),
900 ):
901 if pad not in (0, k_size // 2):
902 return False, f"{name} padding is {pad}, only 0 or {k_size // 2} are supported"
903 else:
904 if left > k_w // 2:
905 return False, f"Left padding is {left}, kernel width is {k_w}"
906 if right > k_w // 2:
907 return False, f"Right padding is {right}, kernel width is {k_w}"
908 if top > k_h // 2:
909 return False, f"Top padding is {top}, kernel height is {k_h}"
910 if bottom > k_h // 2:
911 return False, f"Bottom padding is {bottom}, kernel height is {k_h}"
912 if not SupportedOperators.__leading_pad_ok(top, k.stride.y, k_h):
913 return False, f"Top padding is {top}, must be {k_h // 2} or multiple of {k.stride.y}"
914 if not SupportedOperators.__leading_pad_ok(left, k.stride.x, k_w):
915 return False, f"Left padding is {left}, must be {k_w // 2} or multiple of {k.stride.x}"
Louis Verhaardebf4af62021-01-27 15:57:57 +0100916 return True, "Pad size is ok"
917
918 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +0100919 def constraint_stridedslice_inputs_const(op):
920 "Begin, End and Stride Input tensors must be constant"
921 valid = True
922 extra = []
923 _, begin, end, strides = op.inputs
924 if begin.values is None:
925 valid = False
926 extra.append(f"Begin tensor '{begin.name}'")
927 if end.values is None:
928 valid = False
929 extra.append(f"End tensor '{end.name}'")
930 if strides.values is None:
931 valid = False
932 extra.append(f"Stride tensor '{strides.name}'")
933 extra = ", ".join(extra)
934 return valid, f"Op has non-constant tensors: {extra}"
935
936 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +0100937 def constraint_stridedslice_stride_values(op):
938 "All Strides values must be 1"
939 strides = op.inputs[3]
940 valid = all(stride == 1 for stride in strides.values)
941 return valid, f"Op has strides values {strides.values}"
Tim Hall79d07d22020-04-27 18:20:16 +0100942
Michael McGeagh65fd9982020-10-20 11:49:28 +0100943 @staticmethod
944 def constraint_ellipsis_mask(op):
945 "ellipsis_mask must be 0"
946 ellipsis = op.attrs["ellipsis_mask"]
947 valid = ellipsis == 0
948 return valid, f"Op has ellipsis mask as: {ellipsis}"
Jacob Bohlincf7da102020-05-20 09:03:40 +0200949
Michael McGeagh65fd9982020-10-20 11:49:28 +0100950 @staticmethod
951 def constraint_axis_masks(op):
952 "new_axis_mask and shrink_axis_mask cannot both be set"
953 new_axis = op.attrs["new_axis_mask"]
954 shrink_axis = op.attrs["shrink_axis_mask"]
955 valid = (new_axis == 0) or (shrink_axis == 0)
956 return valid, f"Op has new_axis_mask={new_axis} and shrink_axis_mask={shrink_axis}"
Jacob Bohlincf7da102020-05-20 09:03:40 +0200957
Michael McGeagh65fd9982020-10-20 11:49:28 +0100958 @staticmethod
959 def constraint_slice_ranges(op):
960 "Slice 'end' values must be greater than 'begin' values"
961 ifm, begin, end, _ = op.inputs
962 # Calculate offset begin/end
963 offset_begin = get_slice_offsets(ifm.shape, begin, op.attrs["begin_mask"], is_begin=True)
964 offset_end = get_slice_offsets(ifm.shape, end, op.attrs["end_mask"], is_begin=False)
965 # Check "end - begin" doesn't result in any zero or negative elements
966 valid = all((e - b) > 0 for b, e in zip(offset_begin, offset_end))
967 return valid, f"Op has begin_values={begin.values} and end_values={end.values}"
Tim Hall79d07d22020-04-27 18:20:16 +0100968
Michael McGeagh65fd9982020-10-20 11:49:28 +0100969 @staticmethod
970 def constraint_matching_inputs_types(op):
971 "Both Input data types must match"
972 ifm_dtype = op.ifm.dtype
973 ifm2_dtype = op.ifm2.dtype
974 valid = ifm_dtype == ifm2_dtype
975 return valid, f"Op has ifm_dtype={ifm_dtype} and ifm2_dtype={ifm2_dtype}"
Tim Hall79d07d22020-04-27 18:20:16 +0100976
Michael McGeagh65fd9982020-10-20 11:49:28 +0100977 @staticmethod
978 def constraint_matching_signed(op):
979 "For IFM that are signed, OFM must also be signed"
980 valid = True
981 ifm_dtype = op.ifm.dtype
982 ofm_dtype = op.ofm.dtype
983 if ifm_dtype.type & BaseType.Signed:
984 valid = bool(ofm_dtype.type & BaseType.Signed)
985 return valid, f"Op has ifm_dtype={ifm_dtype} and ofm_dtype={ofm_dtype}"
Tim Hall79d07d22020-04-27 18:20:16 +0100986
Michael McGeagh65fd9982020-10-20 11:49:28 +0100987 @staticmethod
988 def constraint_unsigned_valid(op):
989 "For IFM that are unsigned, OFM must either be the same type or int32"
990 valid = True
991 ifm_dtype = op.ifm.dtype
992 ofm_dtype = op.ofm.dtype
993 if ifm_dtype.type & BaseType.Unsigned:
994 valid = (ifm_dtype == ofm_dtype) or (ofm_dtype == DataType.int32)
995 return valid, f"Op has ifm_dtype={ifm_dtype} and ofm_dtype={ofm_dtype}"
Tim Hall79d07d22020-04-27 18:20:16 +0100996
Michael McGeagh65fd9982020-10-20 11:49:28 +0100997 @staticmethod
998 def constraint_inputs_int32(op):
999 "Both Input data types must be int32"
1000 ifm_dtype = op.ifm.dtype
1001 ifm2_dtype = op.ifm2.dtype
1002 valid = (ifm_dtype == DataType.int32) and (ifm2_dtype == DataType.int32)
1003 return valid, f"Op has ifm_dtype={ifm_dtype} and ifm2_dtype={ifm2_dtype}"
Tim Hall79d07d22020-04-27 18:20:16 +01001004
Michael McGeagh65fd9982020-10-20 11:49:28 +01001005 @staticmethod
1006 def constraint_output_int32(op):
1007 "OFM must be int32"
1008 ofm_dtype = op.ofm.dtype
1009 valid = ofm_dtype == DataType.int32
1010 return valid, f"Op has ofm_dtype={ofm_dtype}"
Dwight Lidman42fed942020-05-29 09:37:03 +02001011
Michael McGeagh65fd9982020-10-20 11:49:28 +01001012 @staticmethod
Diqing Zhong189f7482021-01-26 12:12:51 +01001013 def constraint_input_8bit(op):
1014 "IFM must be int8 or uint8"
1015 ifm_dtype = op.ifm.dtype
1016 valid = (ifm_dtype == DataType.int8) or (ifm_dtype == DataType.uint8)
1017 return valid, f"Op has ifm_dtype={ifm_dtype}"
1018
1019 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +01001020 def constraint_matching_quantization_parameters(op):
1021 "Both Input quantization parameters must match OFM quantization parameters"
1022 valid = True
1023 extra = []
1024 if not check_quantized_tens_scaling_equal(op.ofm, op.ifm):
1025 valid = False
1026 extra.append(op.ifm.name)
Erik Anderssonf27a8b62020-12-10 14:58:23 +01001027 if op.ifm2 is not None and not check_quantized_tens_scaling_equal(op.ofm, op.ifm2):
Michael McGeagh65fd9982020-10-20 11:49:28 +01001028 valid = False
1029 extra.append(op.ifm2.name)
1030 extra = ", ".join(extra)
1031 return valid, f"Op has tensors with different quantization parameters to the OFM '{op.ofm.name}': {extra}"
Dwight Lidman8359a472020-09-28 15:53:40 +02001032
Michael McGeagh65fd9982020-10-20 11:49:28 +01001033 @staticmethod
1034 def constraint_elemwise_batch_size(op):
1035 "Batch size must be 1 for Input tensors with more than 2 dimensions"
1036 valid = True
1037 extra = []
1038 for tens in (op.ifm, op.ifm2):
1039 # Unary ops have ifm2 as None
1040 if tens is not None:
1041 if (len(tens.shape) > 2) and (tens.shape[0] != 1):
1042 valid = False
1043 extra.append(tens.name)
1044 extra = ", ".join(extra)
1045 return valid, f"Op has invalid input tensors: {extra}"
Jacob Bohlin49d92122020-08-19 14:36:46 +02001046
Michael McGeagh65fd9982020-10-20 11:49:28 +01001047 @staticmethod
1048 def constraint_matching_either_shapes(op):
1049 "At least one Input's shape must match the OFM's shape"
1050 ifm_shape = op.ifm.shape
1051 ifm2_shape = op.ifm2.shape if op.ifm2 else None
1052 ofm_shape = op.ofm.shape
1053 valid = (ifm_shape == ofm_shape) or (ifm2_shape == ofm_shape)
1054 return valid, f"Op has ifm_shape={ifm_shape}, ifm2_shape={ifm2_shape} and ofm_shape={ofm_shape}"
Andreas Nevalainend8c032d2020-09-11 10:25:09 +02001055
Michael McGeagh65fd9982020-10-20 11:49:28 +01001056 @staticmethod
Andreas Nevalainend059d8b2020-11-19 14:40:35 +01001057 def constraint_broadcast_shapes(op):
1058 "Broadcasting is only allowed for rank indices with dimension 1, from either IFM1 or IFM2"
1059 ifm_shape = op.ifm.shape
1060 ifm2_shape = op.ifm2.shape if op.ifm2 else None
1061 ofm_shape = op.ofm.shape
1062 valid = True
1063 if ifm_shape is not None and ifm2_shape is not None:
1064 # align trailing dimensions
1065 size = min(len(ifm_shape), len(ifm2_shape))
1066 for i, i2, o in zip(ifm_shape[-size:], ifm2_shape[-size:], ofm_shape[-size:]):
1067 mi = max(i, i2)
1068 # Input dimensions should match or one should be of dimension 1
1069 # Output dimension should match the largest input dimension, together
1070 # with constraint_match_either_shapes ensures broadcast from only one input
1071 if not (i == i2 or i == 1 or i2 == 1) or o != mi:
1072 valid = False
1073 break
1074
1075 return valid, f"Op has ifm_shape={ifm_shape} and ifm2_shape={ifm2_shape}"
1076
1077 @staticmethod
Michael McGeagh65fd9982020-10-20 11:49:28 +01001078 def constraint_alpha_valid(op):
1079 "Alpha must not be negative"
1080 alpha = op.attrs["alpha"]
1081 valid = alpha >= 0
1082 return valid, f"Op has alpha={alpha}"
erik.andersson@arm.com0cbb1662021-02-22 15:47:07 +01001083
1084 @staticmethod
1085 def constraint_keep_dim_ifm_ofm(op):
1086 "The IFM and OFM must have the same number of dimensions if keep_num_dims is set to true"
1087 valid = True
1088 if op.attrs.get("keep_num_dims"):
1089 valid = len(op.ifm.shape) == len(op.ofm.shape)
1090 return valid, f"Op has ifm shape={op.ifm.shape} and ofm shape={op.ofm.shape}"
Dwight Lidman4f728c02020-12-17 15:14:45 +01001091
1092 def constraint_mean_input_dims(op):
1093 "Input tensor must be at least 2D"
1094 dims = len(op.inputs[0].shape)
1095 return 2 <= dims <= 4, f"Input is {dims}D"
1096
1097 @staticmethod
1098 def constraint_mean_axis(op):
1099 "Axis indices must correspond to height and width axes"
1100 dims = len(op.inputs[0].shape)
1101 axis = op.inputs[1].values if op.inputs[1].shape == [] else list(op.inputs[1].values)
1102 if dims == 2 or dims == 3:
1103 valid = axis in (0, 1, [0, 1], [1, 0])
1104 elif dims == 4:
1105 valid = axis in (1, 2, [1, 2], [2, 1])
1106 return valid, f"Axis is {axis}"
1107
1108 @classmethod
1109 @docstring_format_args([mean_kernel_product])
1110 def constraint_mean_height_width_product(cls, op):
1111 "Product of height and width can be at most {}"
1112 shape = op.inputs[0].shape
1113 hi = 0 if len(shape) < 4 else 1
1114 h, w = shape[hi : hi + 2]
1115 max_prod = cls.mean_kernel_product
1116 return h * w <= max_prod, f"Product of height and width is {h * w}"
1117
1118 @classmethod
1119 @docstring_format_args([mean_kernel_product_int8])
1120 def constraint_mean_height_width_product_int8(cls, op):
1121 """Product of IFM height and width can be at most {} when the following are true:
1122 IFM dimensions are 4,
1123 Axis indices are 1 and 2,
1124 keep_dims is set to True and
1125 IFM datatype is int8"""
1126 shape = op.ifm.shape
1127 axis = op.inputs[1].values if op.inputs[1].shape == [] else list(op.inputs[1].values)
1128 if (
1129 len(shape) != 4
1130 or op.ifm.dtype != DataType.int8
1131 or not op.attrs.get("keep_dims")
1132 or axis not in ([1, 2], [2, 1])
1133 ):
1134 return True, ""
1135 hi = 0 if len(shape) < 4 else 1
1136 h, w = shape[hi : hi + 2]
1137 max_prod = cls.mean_kernel_product_int8
1138 return h * w <= max_prod, f"Product of height and width is {h * w}"
1139
1140 @staticmethod
1141 def constraint_mean_properties(op):
1142 """Every constraint in either one (or both) of the following sets of constraints must be fulfilled:
1143 Set A:
1144 IFM dimensions are 4,
1145 Axis indices are 1 and 2,
1146 keep_dims is set to True
1147 Set B:
1148 IFM zero point and OFM zero point are the same,
1149 IFM scale and OFM scale are the same"""
1150 seta, setb = True, True
1151 extra = []
1152 axis = op.inputs[1].values if op.inputs[1].shape == [] else list(op.inputs[1].values)
1153 if len(op.ifm.shape) != 4:
1154 seta = False
1155 extra.append(f"IFM shape is {op.ifm.shape}")
1156 if not any(np.array_equal(axis, ax) for ax in ([1, 2], [2, 1])):
1157 seta = False
1158 extra.append(f"Axis is {axis}")
1159 if not op.attrs.get("keep_dims"):
1160 seta = False
1161 extra.append("keep_dims is False")
1162 ifmq, ofmq = op.ifm.quantization, op.ofm.quantization
1163 if ifmq.zero_point != ofmq.zero_point:
1164 setb = False
1165 extra.append("IFM zero point does not match OFM zero point")
1166 if ifmq.scale_f32 != ofmq.scale_f32:
1167 setb = False
1168 extra.append("IFM scale does not match OFM scale")
1169 extra = ", ".join(extra)
1170 return seta or setb, f"The following constraints were not fulfilled: {extra}"