blob: f57cbee2f3d24993f706fda984cf32bc7a4ea573 [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# The SupportedOperators class which is a collection of all supported operators and parameter checks.
Charles Xu87c13502020-08-06 12:17:26 +020018import numpy as np
19
Tim Hallc30f4952020-06-15 20:47:35 +010020from .data_type import BaseType
21from .data_type import DataType
Tim Hall79d07d22020-04-27 18:20:16 +010022
23
24class SupportedOperators:
Fredrik Svedberg880e7352020-08-25 11:31:47 +020025 def __init__(self):
Tim Hall79d07d22020-04-27 18:20:16 +010026 # Categorised lists of supported operators
Fredrik Svedberga0c36242020-06-03 15:43:31 +020027 self.npu_pre_ops = set(("QuantizedResizeBilinear", "SplitSliceRead",))
28 self.convolution_ops = set(("Conv2DBiasAct", "Conv2D", "QuantizedConv2D",))
Tim Hall79d07d22020-04-27 18:20:16 +010029 self.depthwise_convolution_ops = set(
Fredrik Svedberga0c36242020-06-03 15:43:31 +020030 ("DepthwiseConv2dBiasAct", "DepthwiseConv2dNative", "QuantizedDepthwiseConv2D,")
Tim Hall79d07d22020-04-27 18:20:16 +010031 )
Jacob Bohlincf7da102020-05-20 09:03:40 +020032 self.transpose_convolution_ops = set(("Conv2DBackpropInput",))
Fredrik Svedberga0c36242020-06-03 15:43:31 +020033 self.max_pooling_ops = set(("QuantizedMaxPool", "MaxPool", "MaxPoolAct",))
34 self.avg_pooling_ops = set(("QuantizedAvgPool", "AvgPool", "AvgPoolAct",))
35 self.pooling_ops = set(("ReduceSum",)) | self.max_pooling_ops | self.avg_pooling_ops
Dwight Lidman42fed942020-05-29 09:37:03 +020036 self.resizing_ops = set(("ResizeBilinear",))
Fredrik Svedberga0c36242020-06-03 15:43:31 +020037 self.fc_vector_products = set(("QuantizedMatMul", "MatMul", "FullyConnectedAct",))
Tim Hall79d07d22020-04-27 18:20:16 +010038 self.mac_main_ops = (
39 # convolutions
40 self.convolution_ops
41 # depth-wise convolutions
42 | self.depthwise_convolution_ops
Jacob Bohlincf7da102020-05-20 09:03:40 +020043 # transpose convolutions
44 | self.transpose_convolution_ops
Tim Hall79d07d22020-04-27 18:20:16 +010045 # pooling
46 | self.pooling_ops
Dwight Lidman42fed942020-05-29 09:37:03 +020047 # resizing/upscaling
48 | self.resizing_ops
Tim Hall79d07d22020-04-27 18:20:16 +010049 # FC layers
50 | self.fc_vector_products
51 # RNN/LSTM/GRU
Fredrik Svedberga0c36242020-06-03 15:43:31 +020052 | set(("BlockLSTM",))
Tim Hall79d07d22020-04-27 18:20:16 +010053 )
Fredrik Svedberga0c36242020-06-03 15:43:31 +020054 self.unary_elem_wise_main_ops = set(("LeakyRelu", "Abs", "CLZ",))
55 self.binary_elem_wise_min_max_ops = set(("Minimum", "Maximum",))
Fredrik Svedberg597fd3f2020-08-13 10:02:53 +020056 self.binary_elem_wise_shift_ops = set(("SHL", "SHR",))
Fredrik Svedberg388e9c22020-05-25 16:32:00 +020057 self.binary_elem_wise_add_mul_sub = set(
Fredrik Svedberg1575b942020-08-18 13:19:18 +020058 ("AddAct", "MulAct", "SubAct", "QuantizedAdd", "QuantizedSub", "QuantizedMul", "Mul", "Add", "Sub",)
Tim Hall79d07d22020-04-27 18:20:16 +010059 )
Fredrik Svedberg1575b942020-08-18 13:19:18 +020060 self.binary_elem_wise_main_ops = (
61 self.binary_elem_wise_min_max_ops | self.binary_elem_wise_add_mul_sub | self.binary_elem_wise_shift_ops
62 )
Dwight Lidmanf995db72020-04-27 11:15:12 +020063 self.elem_wise_main_ops = self.binary_elem_wise_main_ops | self.unary_elem_wise_main_ops
Tim Hall79d07d22020-04-27 18:20:16 +010064 self.activation_ops = set(
Fredrik Svedberga0c36242020-06-03 15:43:31 +020065 (
66 "QuantizedRelu",
67 "QuantizedRelu1",
68 "QuantizedRelu6",
69 "Relu",
70 "Relu6",
71 "ReluN1To1",
72 "Sigmoid",
73 "Tanh",
74 "Softmax",
75 )
Tim Hall79d07d22020-04-27 18:20:16 +010076 )
77 self.npu_post_ops = (
78 # activation functions
79 self.activation_ops
80 # concatenation write direction
Fredrik Svedberga0c36242020-06-03 15:43:31 +020081 | set(("ConcatSliceWrite",))
Tim Hall79d07d22020-04-27 18:20:16 +010082 # bias add and batch norm
Fredrik Svedberga0c36242020-06-03 15:43:31 +020083 | set(("QuantizedBiasAdd", "Requantize", "QuantizedBatchNorm", "BiasAdd", "FusedBatchNorm",))
Jacob Bohlin9fbc4912020-06-29 11:58:50 +020084 # Quantization
85 | set(("Quantize",))
Tim Hall79d07d22020-04-27 18:20:16 +010086 )
Fredrik Svedberga0c36242020-06-03 15:43:31 +020087 self.split_ops = set(("Split", "SplitV", "StridedSlice", "Slice", "UnpackReshaped", "Unpack",))
88 self.concat_ops = set(("Concat", "ConcatV2", "QuantizedConcat", "ConcatTFLite", "PackReshaped", "Pack",))
Tim Hall79d07d22020-04-27 18:20:16 +010089 self.memory_only_ops = (
Fredrik Svedberga0c36242020-06-03 15:43:31 +020090 set(("Squeeze", "Reshape", "QuantizedReshape", "ExpandDims",)) | self.concat_ops | self.split_ops
Tim Hall79d07d22020-04-27 18:20:16 +010091 )
Dwight Lidman7579c752020-08-24 16:05:47 +020092 self.shapeless_input_ops = self.binary_elem_wise_main_ops | set(("Split", "SplitV",))
Fredrik Svedberga0c36242020-06-03 15:43:31 +020093 self.supported_fused_activations = set(("Relu", "Relu6", "ReluN1To1", "Tanh", "Sigmoid", "LUT",))
Tim Hall79d07d22020-04-27 18:20:16 +010094 self.supported_operators = (
95 self.npu_pre_ops | self.mac_main_ops | self.elem_wise_main_ops | self.npu_post_ops | self.memory_only_ops
96 )
97 # Setup supported operator restriction checkers
98 self.supported_operator_restrictions = {}
99 self.supported_operator_restrictions.update(
100 {op: self.check_convolution_restrictions for op in self.convolution_ops}
101 )
102 self.supported_operator_restrictions.update(
103 {op: self.check_depthwise_convolution_restrictions for op in self.depthwise_convolution_ops}
104 )
Jacob Bohlincf7da102020-05-20 09:03:40 +0200105 self.supported_operator_restrictions.update(
106 {op: self.check_transpose_convolution_restrictions for op in self.transpose_convolution_ops}
107 )
Tim Hall79d07d22020-04-27 18:20:16 +0100108 self.supported_operator_restrictions.update({op: self.check_pooling_restrictions for op in self.pooling_ops})
Dwight Lidman42fed942020-05-29 09:37:03 +0200109 self.supported_operator_restrictions.update({op: self.check_resize_restrictions for op in self.resizing_ops})
Tim Hall79d07d22020-04-27 18:20:16 +0100110 self.supported_operator_restrictions.update(
111 {op: self.check_vector_product_restrictions for op in self.fc_vector_products}
112 )
113 self.supported_operator_restrictions.update(
114 {op: self.check_element_wise_restrictions for op in self.elem_wise_main_ops}
115 )
116 self.supported_operator_restrictions.update(
117 {op: self.check_memory_only_restrictions for op in self.memory_only_ops}
118 )
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200119 self.supported_operator_restrictions.update(
Tim Halle3786ac2020-07-28 17:40:50 +0100120 {op: self.check_quantization_restrictions_binary_elem_wise for op in self.binary_elem_wise_min_max_ops}
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200121 )
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200122 self.supported_operator_restrictions.update({op: self.check_activation_ops for op in self.activation_ops})
Tim Hall79d07d22020-04-27 18:20:16 +0100123
124 def is_operator_supported(self, op):
125 if op.type not in self.supported_operators:
126 return False
127 if not self.check_generic_restrictions(op):
128 return False
129 if op.type in self.supported_operator_restrictions:
130 return self.supported_operator_restrictions[op.type](op)
131 return True
132
133 def check_generic_restrictions(self, op):
134 # check fully defined shapes
Dwight Lidman25733112020-08-17 11:56:10 +0200135 for t in op.inputs:
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +0200136 if not t:
137 continue
Tim Hall79d07d22020-04-27 18:20:16 +0100138 if not t.has_fully_defined_shape():
Dwight Lidman25733112020-08-17 11:56:10 +0200139 print("Warning:", op.type, "has input(s) of undefined shape, placing on CPU")
140 return False
Dwight Lidman7579c752020-08-24 16:05:47 +0200141 if t.shape == [] and op.type not in self.shapeless_input_ops:
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +0200142 print(
143 "Warning:",
144 op.type,
145 "has input(s) of shape [].",
146 "Scalar input or broadcasting is not supported for this operator,",
147 "placing on CPU",
148 )
Dwight Lidman25733112020-08-17 11:56:10 +0200149 return False
150 for t in op.outputs:
151 if not t.has_fully_defined_shape():
152 print("Warning:", op.type, "has output(s) of undefined shape, placing on CPU")
153 return False
154 if t.shape == []:
Jacob Bohlin67e0d8f2020-08-20 10:53:02 +0200155 print(
156 "Warning:",
157 op.type,
158 "has output(s) of shape [].",
159 "Scalar input or broadcasting is not supported for this operator,",
160 "placing on CPU",
161 )
Tim Hall79d07d22020-04-27 18:20:16 +0100162 return False
163
164 # check data type
165 tensors = [t for t in op.get_ifm_ifm2_weights_ofm() if t is not None]
166 if not tensors:
167 tensors = op.inputs
168 for t in tensors:
169 if not (t.dtype.type & BaseType.Int):
170 return False
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200171 if (
172 t.element_size() > 2
Fredrik Svedberg1575b942020-08-18 13:19:18 +0200173 and op.type
174 not in set(("Requantize", "ReduceSum", "CLZ",))
175 | self.binary_elem_wise_add_mul_sub
176 | self.binary_elem_wise_shift_ops
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200177 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100178 return False
179 # check size
180 if any(dim > 65536 for dim in t.shape):
181 return False
182
183 # check fused activations
184 if (
185 "fused_activation_function" in op.attrs
186 and op.attrs["fused_activation_function"] is not None
187 and op.attrs["fused_activation_function"] not in self.supported_fused_activations
188 ):
189 return False
190 return True
191
192 def check_convolution_restrictions(self, op):
193 # check stride
Dwight Lidman0538a772020-05-06 14:09:17 +0200194 if op.attrs["stride_w"] > 3 or op.attrs["stride_h"] > 3:
Tim Hall79d07d22020-04-27 18:20:16 +0100195 return False
196
197 # check dilation
198 dilation_w_factor = op.attrs.get("dilation_w_factor", 1)
199 dilation_h_factor = op.attrs.get("dilation_h_factor", 1)
200 if dilation_w_factor > 2 or dilation_h_factor > 2:
201 return False
202
203 # check data type
204 ifm_tensor, _, weight_tensor, _ = op.get_ifm_ifm2_weights_ofm()
205 if weight_tensor.element_size() > 1:
206 return False
207
Andreas Nevalainenf0c59bf2020-08-26 10:56:23 +0200208 # check kernel size [HWIO]
209 dilated_weight_w = weight_tensor.shape[1] + (weight_tensor.shape[1] - 1) * (dilation_w_factor - 1)
210 dilated_weight_h = weight_tensor.shape[0] + (weight_tensor.shape[0] - 1) * (dilation_h_factor - 1)
211
212 if dilated_weight_w > 64 or dilated_weight_h > 64:
213 return False
214
215 # check weight sums over [HWI]
216 zero_point = weight_tensor.quantization.zero_point
217 quant_weights = weight_tensor.quant_values.astype(np.int64)
218 weights = quant_weights - zero_point
219 totals = np.sum(np.absolute(weights), axis=(0, 1, 2))
220
221 if np.amax(totals) > 127 * 65536:
Tim Hall79d07d22020-04-27 18:20:16 +0100222 return False
223
224 # check batch size
225 if ifm_tensor.shape[0] != 1:
226 return False
227 return True
228
229 def check_depthwise_convolution_restrictions(self, op):
230 # check depth
231 ifm_tensor, _, _, ofm_tensor = op.get_ifm_ifm2_weights_ofm()
232 if op.attrs["depth_multiplier"] > 1 and not (
233 (ifm_tensor.shape[3] == 1) and (ofm_tensor.shape[3] == op.attrs["depth_multiplier"])
234 ):
235 return False
236 return self.check_convolution_restrictions(op)
237
Jacob Bohlincf7da102020-05-20 09:03:40 +0200238 def check_transpose_convolution_restrictions(self, op):
239 # check stride
240 stride_h, stride_w = op.attrs["stride_h"], op.attrs["stride_w"]
241 if stride_h != stride_w != 2:
242 return False
243
244 # check output dimensions
245 ifm_tensor, weight_tensor, _, ofm_tensor = op.get_ifm_weights_biases_ofm()
246 ifm_h, ifm_w = ifm_tensor.shape[1], ifm_tensor.shape[2]
247 ofm_h, ofm_w = ofm_tensor.shape[1], ofm_tensor.shape[2]
248 if op.attrs["padding"] == b"SAME":
249 if (ofm_h != ifm_h * stride_h) or (ofm_w != ifm_w * stride_w):
250 return False
251 elif op.attrs["padding"] == b"VALID":
252 kernel_h, kernel_w = weight_tensor.shape[0], weight_tensor.shape[1]
Tim Hallc30f4952020-06-15 20:47:35 +0100253 if (ofm_h != (ifm_h) * stride_h + max(kernel_h - stride_h, 0)) or (
254 ofm_w != (ifm_w) * stride_w + max(kernel_w - stride_w, 0)
255 ):
Jacob Bohlincf7da102020-05-20 09:03:40 +0200256 return False
257
258 return self.check_convolution_restrictions(op)
259
Tim Hall79d07d22020-04-27 18:20:16 +0100260 def check_pooling_restrictions(self, op):
261 # check stride
Dwight Lidman0538a772020-05-06 14:09:17 +0200262 if op.attrs["stride_w"] > 3 or op.attrs["stride_h"] > 3:
Tim Hall79d07d22020-04-27 18:20:16 +0100263 return False
264
265 # check data type
266 ifm_tensor, _, _, ofm_tensor = op.get_ifm_ifm2_weights_ofm()
267 if ifm_tensor.dtype != ofm_tensor.dtype:
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200268 if op.type != "ReduceSum":
269 return False
270 # TODO: else check ReduceSum restrictions.
Tim Hall79d07d22020-04-27 18:20:16 +0100271
272 # check batch size
273 if ifm_tensor.shape[0] != 1:
274 return False
275
276 if op.type in self.avg_pooling_ops:
277 # check kernel size
278 if op.attrs["padding"] == b"SAME" and (op.attrs["filter_width"] > 8 or op.attrs["filter_height"] > 8):
279 return False
Tim Hallc30f4952020-06-15 20:47:35 +0100280 if op.attrs["padding"] == b"VALID" and (
281 op.attrs["filter_width"] * op.attrs["filter_height"] > 256 * 256 or op.attrs["filter_height"] > 256
282 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100283 return False
284
285 if op.type in self.max_pooling_ops:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200286 # check kernel size (any padding)
287 if op.attrs["filter_width"] * op.attrs["filter_height"] > 256 * 256 or op.attrs["filter_height"] > 256:
Tim Hall79d07d22020-04-27 18:20:16 +0100288 return False
289 return True
290
Dwight Lidman42fed942020-05-29 09:37:03 +0200291 def check_resize_restrictions(self, op):
292 # check unsupported upscaling factor
293 if op.type == "ResizeBilinear":
Charles Xu9a03fdf2020-07-02 15:12:40 +0200294 if op.inputs[0].shape[1] == 1 and op.inputs[0].shape[2] == 1:
295 return True
Charles Xu36ffaf32020-08-05 15:40:44 +0200296 if op.inputs[0].shape == op.outputs[0].shape:
297 return True
Charles Xu87c13502020-08-06 12:17:26 +0200298 upscaled_shape = np.array(op.inputs[0].shape[1:3])
299 out_shape = np.array(op.outputs[0].shape[1:3])
300 while (upscaled_shape < out_shape).all():
301 upscaled_shape *= 2
302 if op.attrs["align_corners"]:
303 upscaled_shape -= 1
304 if np.array_equal(out_shape, upscaled_shape):
305 return True
306 return False
Dwight Lidman42fed942020-05-29 09:37:03 +0200307
Tim Hall79d07d22020-04-27 18:20:16 +0100308 def check_vector_product_restrictions(self, op):
309 # check data type
310 ifm_tensor, _, weight_tensor, _ = op.get_ifm_ifm2_weights_ofm()
311 if weight_tensor.element_size() > 1:
312 return False
313
314 return True
315
316 def check_element_wise_restrictions(self, op):
317 # check data type
318 ifm_tensor, ifm2_tensor, _, ofm_tensor = op.get_ifm_ifm2_weights_ofm()
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200319 # input and output datatype must match for these operators
Tim Hallc30f4952020-06-15 20:47:35 +0100320 if (
321 op.type in self.binary_elem_wise_min_max_ops | self.unary_elem_wise_main_ops
322 and ifm_tensor.dtype != ofm_tensor.dtype
323 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100324 return False
Tim Hallc30f4952020-06-15 20:47:35 +0100325 if op.type in self.binary_elem_wise_add_mul_sub:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200326 # both inputs must have same type
Tim Hallc30f4952020-06-15 20:47:35 +0100327 if ifm_tensor.dtype != ifm2_tensor.dtype:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200328 return False
329 # signed input check
Tim Hallc30f4952020-06-15 20:47:35 +0100330 if ifm_tensor.dtype.type & BaseType.Signed:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200331 # output must be signed
Tim Hallc30f4952020-06-15 20:47:35 +0100332 if ofm_tensor.dtype.type & BaseType.Unsigned:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200333 return False
334 # and 8, 16 or 32-bit
Tim Hallc30f4952020-06-15 20:47:35 +0100335 if ofm_tensor.element_size() not in (1, 2, 4):
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200336 return False
337 # unsigned input check, output must be same type or int32
Tim Hallc30f4952020-06-15 20:47:35 +0100338 if ifm_tensor.dtype.type & BaseType.Unsigned and not (
339 ifm_tensor.dtype == ofm_tensor.dtype or ofm_tensor.dtype == DataType.int32
340 ):
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200341 return False
Fredrik Svedberg597fd3f2020-08-13 10:02:53 +0200342 elif op.type in self.binary_elem_wise_shift_ops | set(("CLZ")):
343 if ifm_tensor.dtype != DataType.int32 or ifm2_tensor.dtype != DataType.int32:
344 return False
345 if op.type in ("CLZ", "SHL") and ofm_tensor.dtype != DataType.int32:
346 return False
Tim Hall79d07d22020-04-27 18:20:16 +0100347
348 # check batch size
Dwight Lidmanf995db72020-04-27 11:15:12 +0200349 if len(ifm_tensor.shape) > 2 and ifm_tensor.shape[0] != 1:
Tim Hallc30f4952020-06-15 20:47:35 +0100350 return False
351 if op.type in self.binary_elem_wise_main_ops: # if op type is unary, ifm2_tensor is None
Dwight Lidmanf995db72020-04-27 11:15:12 +0200352 if len(ifm2_tensor.shape) > 2 and ifm2_tensor.shape[0] != 1:
353 return False
Dwight Lidman332a7042020-06-11 15:32:42 +0200354
355 # negative alpha values are not supported
356 if op.type == "LeakyRelu" and op.attrs["alpha"] < 0:
357 return False
358
Tim Hall79d07d22020-04-27 18:20:16 +0100359 return True
360
361 def check_memory_only_restrictions(self, op):
Tim Hall79d07d22020-04-27 18:20:16 +0100362 if op.type == "StridedSlice":
Patrik Gustavssoncf728902020-04-30 08:57:23 +0200363 # check stride size
Tim Hall79d07d22020-04-27 18:20:16 +0100364 if len(op.inputs) > 3 and any(stride != 1 for stride in op.inputs[3].values):
365 return False
Michael McGeaghecd20522020-07-31 16:59:45 +0100366 # check "end - begin" doesnt result in any zero or negative elements
367 if any((end - begin) <= 0 for begin, end in zip(op.inputs[1].values, op.inputs[2].values)):
368 return False
Patrik Gustavssoncf728902020-04-30 08:57:23 +0200369 # check ellipsis_mask
370 if op.attrs["ellipsis_mask"] != 0:
371 return False
372 # check if both new_axis_mask and shrink_axis_mask have bit set
373 if op.attrs["new_axis_mask"] != 0 and op.attrs["shrink_axis_mask"] != 0:
374 return False
Tim Hall79d07d22020-04-27 18:20:16 +0100375 return True
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200376
Tim Halle3786ac2020-07-28 17:40:50 +0100377 def check_quantization_restrictions_binary_elem_wise(self, op):
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200378 # makes sure IFM1, IFM2 and OFM quantization are equal for binary ops
Tim Halle3786ac2020-07-28 17:40:50 +0100379 assert len(op.inputs) >= 2 and len(op.outputs) == 1
380
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200381 if (
Tim Halle3786ac2020-07-28 17:40:50 +0100382 op.inputs[0].quantization is None
383 or not op.inputs[0].quantization.is_scaling_equal(op.inputs[1].quantization)
384 or not op.inputs[0].quantization.is_scaling_equal(op.outputs[0].quantization)
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200385 ):
386 print(
387 "Warning: Input/output tensors with different quantization is unsupported for the", op.type, "operator"
388 )
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200389 return False
Tim Halle3786ac2020-07-28 17:40:50 +0100390
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200391 return True
392
393 def check_activation_ops(self, op):
394 if op.type == "Softmax":
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200395 ifm_tensor = op.inputs[0]
396 ofm_tensor = op.outputs[0]
397
398 # check data type
399 if ifm_tensor.dtype != ofm_tensor.dtype:
400 return False
401
Fredrik Svedberg597fd3f2020-08-13 10:02:53 +0200402 if ifm_tensor.dtype not in (DataType.uint8, DataType.int8, DataType.int16):
403 return False
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200404
405 # check batch size
406 if len(ifm_tensor.shape) in (2, 4) and ifm_tensor.shape[0] != 1:
407 return False
408
409 return True