blob: ab7f2db700b5848105a2e1a1e476872b1239c163 [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 Svedberga0c36242020-06-03 15:43:31 +020025 def __init__(self, softmax_support):
26 self.softmax_support = softmax_support
Tim Hall79d07d22020-04-27 18:20:16 +010027 # Categorised lists of supported operators
Fredrik Svedberga0c36242020-06-03 15:43:31 +020028 self.npu_pre_ops = set(("QuantizedResizeBilinear", "SplitSliceRead",))
29 self.convolution_ops = set(("Conv2DBiasAct", "Conv2D", "QuantizedConv2D",))
Tim Hall79d07d22020-04-27 18:20:16 +010030 self.depthwise_convolution_ops = set(
Fredrik Svedberga0c36242020-06-03 15:43:31 +020031 ("DepthwiseConv2dBiasAct", "DepthwiseConv2dNative", "QuantizedDepthwiseConv2D,")
Tim Hall79d07d22020-04-27 18:20:16 +010032 )
Jacob Bohlincf7da102020-05-20 09:03:40 +020033 self.transpose_convolution_ops = set(("Conv2DBackpropInput",))
Fredrik Svedberga0c36242020-06-03 15:43:31 +020034 self.max_pooling_ops = set(("QuantizedMaxPool", "MaxPool", "MaxPoolAct",))
35 self.avg_pooling_ops = set(("QuantizedAvgPool", "AvgPool", "AvgPoolAct",))
36 self.pooling_ops = set(("ReduceSum",)) | self.max_pooling_ops | self.avg_pooling_ops
Dwight Lidman42fed942020-05-29 09:37:03 +020037 self.resizing_ops = set(("ResizeBilinear",))
Fredrik Svedberga0c36242020-06-03 15:43:31 +020038 self.fc_vector_products = set(("QuantizedMatMul", "MatMul", "FullyConnectedAct",))
Tim Hall79d07d22020-04-27 18:20:16 +010039 self.mac_main_ops = (
40 # convolutions
41 self.convolution_ops
42 # depth-wise convolutions
43 | self.depthwise_convolution_ops
Jacob Bohlincf7da102020-05-20 09:03:40 +020044 # transpose convolutions
45 | self.transpose_convolution_ops
Tim Hall79d07d22020-04-27 18:20:16 +010046 # pooling
47 | self.pooling_ops
Dwight Lidman42fed942020-05-29 09:37:03 +020048 # resizing/upscaling
49 | self.resizing_ops
Tim Hall79d07d22020-04-27 18:20:16 +010050 # FC layers
51 | self.fc_vector_products
52 # RNN/LSTM/GRU
Fredrik Svedberga0c36242020-06-03 15:43:31 +020053 | set(("BlockLSTM",))
Tim Hall79d07d22020-04-27 18:20:16 +010054 )
Fredrik Svedberga0c36242020-06-03 15:43:31 +020055 self.unary_elem_wise_main_ops = set(("LeakyRelu", "Abs", "CLZ",))
56 self.binary_elem_wise_min_max_ops = set(("Minimum", "Maximum",))
Fredrik Svedberg597fd3f2020-08-13 10:02:53 +020057 self.binary_elem_wise_shift_ops = set(("SHL", "SHR",))
Fredrik Svedberg388e9c22020-05-25 16:32:00 +020058 self.binary_elem_wise_add_mul_sub = set(
Fredrik Svedberg1575b942020-08-18 13:19:18 +020059 ("AddAct", "MulAct", "SubAct", "QuantizedAdd", "QuantizedSub", "QuantizedMul", "Mul", "Add", "Sub",)
Tim Hall79d07d22020-04-27 18:20:16 +010060 )
Fredrik Svedberg1575b942020-08-18 13:19:18 +020061 self.binary_elem_wise_main_ops = (
62 self.binary_elem_wise_min_max_ops | self.binary_elem_wise_add_mul_sub | self.binary_elem_wise_shift_ops
63 )
Dwight Lidmanf995db72020-04-27 11:15:12 +020064 self.elem_wise_main_ops = self.binary_elem_wise_main_ops | self.unary_elem_wise_main_ops
Tim Hall79d07d22020-04-27 18:20:16 +010065 self.activation_ops = set(
Fredrik Svedberga0c36242020-06-03 15:43:31 +020066 (
67 "QuantizedRelu",
68 "QuantizedRelu1",
69 "QuantizedRelu6",
70 "Relu",
71 "Relu6",
72 "ReluN1To1",
73 "Sigmoid",
74 "Tanh",
75 "Softmax",
76 )
Tim Hall79d07d22020-04-27 18:20:16 +010077 )
78 self.npu_post_ops = (
79 # activation functions
80 self.activation_ops
81 # concatenation write direction
Fredrik Svedberga0c36242020-06-03 15:43:31 +020082 | set(("ConcatSliceWrite",))
Tim Hall79d07d22020-04-27 18:20:16 +010083 # bias add and batch norm
Fredrik Svedberga0c36242020-06-03 15:43:31 +020084 | set(("QuantizedBiasAdd", "Requantize", "QuantizedBatchNorm", "BiasAdd", "FusedBatchNorm",))
Jacob Bohlin9fbc4912020-06-29 11:58:50 +020085 # Quantization
86 | set(("Quantize",))
Tim Hall79d07d22020-04-27 18:20:16 +010087 )
Fredrik Svedberga0c36242020-06-03 15:43:31 +020088 self.split_ops = set(("Split", "SplitV", "StridedSlice", "Slice", "UnpackReshaped", "Unpack",))
89 self.concat_ops = set(("Concat", "ConcatV2", "QuantizedConcat", "ConcatTFLite", "PackReshaped", "Pack",))
Tim Hall79d07d22020-04-27 18:20:16 +010090 self.memory_only_ops = (
Fredrik Svedberga0c36242020-06-03 15:43:31 +020091 set(("Squeeze", "Reshape", "QuantizedReshape", "ExpandDims",)) | self.concat_ops | self.split_ops
Tim Hall79d07d22020-04-27 18:20:16 +010092 )
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
141 if t.shape == [] and op.type not in self.binary_elem_wise_main_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
208 # check kernel size
209 dilated_weight_w = weight_tensor.shape[0] + (weight_tensor.shape[0] - 1) * (dilation_w_factor - 1)
210 dilated_weight_h = weight_tensor.shape[1] + (weight_tensor.shape[1] - 1) * (dilation_h_factor - 1)
211 if (
212 dilated_weight_w > 64
213 or dilated_weight_h > 64
214 or dilated_weight_w * dilated_weight_h * weight_tensor.shape[2] > 127 * 65536
215 ):
216 return False
217
218 # check batch size
219 if ifm_tensor.shape[0] != 1:
220 return False
221 return True
222
223 def check_depthwise_convolution_restrictions(self, op):
224 # check depth
225 ifm_tensor, _, _, ofm_tensor = op.get_ifm_ifm2_weights_ofm()
226 if op.attrs["depth_multiplier"] > 1 and not (
227 (ifm_tensor.shape[3] == 1) and (ofm_tensor.shape[3] == op.attrs["depth_multiplier"])
228 ):
229 return False
230 return self.check_convolution_restrictions(op)
231
Jacob Bohlincf7da102020-05-20 09:03:40 +0200232 def check_transpose_convolution_restrictions(self, op):
233 # check stride
234 stride_h, stride_w = op.attrs["stride_h"], op.attrs["stride_w"]
235 if stride_h != stride_w != 2:
236 return False
237
238 # check output dimensions
239 ifm_tensor, weight_tensor, _, ofm_tensor = op.get_ifm_weights_biases_ofm()
240 ifm_h, ifm_w = ifm_tensor.shape[1], ifm_tensor.shape[2]
241 ofm_h, ofm_w = ofm_tensor.shape[1], ofm_tensor.shape[2]
242 if op.attrs["padding"] == b"SAME":
243 if (ofm_h != ifm_h * stride_h) or (ofm_w != ifm_w * stride_w):
244 return False
245 elif op.attrs["padding"] == b"VALID":
246 kernel_h, kernel_w = weight_tensor.shape[0], weight_tensor.shape[1]
Tim Hallc30f4952020-06-15 20:47:35 +0100247 if (ofm_h != (ifm_h) * stride_h + max(kernel_h - stride_h, 0)) or (
248 ofm_w != (ifm_w) * stride_w + max(kernel_w - stride_w, 0)
249 ):
Jacob Bohlincf7da102020-05-20 09:03:40 +0200250 return False
251
252 return self.check_convolution_restrictions(op)
253
Tim Hall79d07d22020-04-27 18:20:16 +0100254 def check_pooling_restrictions(self, op):
255 # check stride
Dwight Lidman0538a772020-05-06 14:09:17 +0200256 if op.attrs["stride_w"] > 3 or op.attrs["stride_h"] > 3:
Tim Hall79d07d22020-04-27 18:20:16 +0100257 return False
258
259 # check data type
260 ifm_tensor, _, _, ofm_tensor = op.get_ifm_ifm2_weights_ofm()
261 if ifm_tensor.dtype != ofm_tensor.dtype:
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200262 if op.type != "ReduceSum":
263 return False
264 # TODO: else check ReduceSum restrictions.
Tim Hall79d07d22020-04-27 18:20:16 +0100265
266 # check batch size
267 if ifm_tensor.shape[0] != 1:
268 return False
269
270 if op.type in self.avg_pooling_ops:
271 # check kernel size
272 if op.attrs["padding"] == b"SAME" and (op.attrs["filter_width"] > 8 or op.attrs["filter_height"] > 8):
273 return False
Tim Hallc30f4952020-06-15 20:47:35 +0100274 if op.attrs["padding"] == b"VALID" and (
275 op.attrs["filter_width"] * op.attrs["filter_height"] > 256 * 256 or op.attrs["filter_height"] > 256
276 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100277 return False
278
279 if op.type in self.max_pooling_ops:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200280 # check kernel size (any padding)
281 if op.attrs["filter_width"] * op.attrs["filter_height"] > 256 * 256 or op.attrs["filter_height"] > 256:
Tim Hall79d07d22020-04-27 18:20:16 +0100282 return False
283 return True
284
Dwight Lidman42fed942020-05-29 09:37:03 +0200285 def check_resize_restrictions(self, op):
286 # check unsupported upscaling factor
287 if op.type == "ResizeBilinear":
Charles Xu9a03fdf2020-07-02 15:12:40 +0200288 if op.inputs[0].shape[1] == 1 and op.inputs[0].shape[2] == 1:
289 return True
Charles Xu36ffaf32020-08-05 15:40:44 +0200290 if op.inputs[0].shape == op.outputs[0].shape:
291 return True
Charles Xu87c13502020-08-06 12:17:26 +0200292 upscaled_shape = np.array(op.inputs[0].shape[1:3])
293 out_shape = np.array(op.outputs[0].shape[1:3])
294 while (upscaled_shape < out_shape).all():
295 upscaled_shape *= 2
296 if op.attrs["align_corners"]:
297 upscaled_shape -= 1
298 if np.array_equal(out_shape, upscaled_shape):
299 return True
300 return False
Dwight Lidman42fed942020-05-29 09:37:03 +0200301
Tim Hall79d07d22020-04-27 18:20:16 +0100302 def check_vector_product_restrictions(self, op):
303 # check data type
304 ifm_tensor, _, weight_tensor, _ = op.get_ifm_ifm2_weights_ofm()
305 if weight_tensor.element_size() > 1:
306 return False
307
308 return True
309
310 def check_element_wise_restrictions(self, op):
311 # check data type
312 ifm_tensor, ifm2_tensor, _, ofm_tensor = op.get_ifm_ifm2_weights_ofm()
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200313 # input and output datatype must match for these operators
Tim Hallc30f4952020-06-15 20:47:35 +0100314 if (
315 op.type in self.binary_elem_wise_min_max_ops | self.unary_elem_wise_main_ops
316 and ifm_tensor.dtype != ofm_tensor.dtype
317 ):
Tim Hall79d07d22020-04-27 18:20:16 +0100318 return False
Tim Hallc30f4952020-06-15 20:47:35 +0100319 if op.type in self.binary_elem_wise_add_mul_sub:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200320 # both inputs must have same type
Tim Hallc30f4952020-06-15 20:47:35 +0100321 if ifm_tensor.dtype != ifm2_tensor.dtype:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200322 return False
323 # signed input check
Tim Hallc30f4952020-06-15 20:47:35 +0100324 if ifm_tensor.dtype.type & BaseType.Signed:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200325 # output must be signed
Tim Hallc30f4952020-06-15 20:47:35 +0100326 if ofm_tensor.dtype.type & BaseType.Unsigned:
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200327 return False
328 # and 8, 16 or 32-bit
Tim Hallc30f4952020-06-15 20:47:35 +0100329 if ofm_tensor.element_size() not in (1, 2, 4):
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200330 return False
331 # unsigned input check, output must be same type or int32
Tim Hallc30f4952020-06-15 20:47:35 +0100332 if ifm_tensor.dtype.type & BaseType.Unsigned and not (
333 ifm_tensor.dtype == ofm_tensor.dtype or ofm_tensor.dtype == DataType.int32
334 ):
Fredrik Svedberg388e9c22020-05-25 16:32:00 +0200335 return False
Fredrik Svedberg597fd3f2020-08-13 10:02:53 +0200336 elif op.type in self.binary_elem_wise_shift_ops | set(("CLZ")):
337 if ifm_tensor.dtype != DataType.int32 or ifm2_tensor.dtype != DataType.int32:
338 return False
339 if op.type in ("CLZ", "SHL") and ofm_tensor.dtype != DataType.int32:
340 return False
Tim Hall79d07d22020-04-27 18:20:16 +0100341
342 # check batch size
Dwight Lidmanf995db72020-04-27 11:15:12 +0200343 if len(ifm_tensor.shape) > 2 and ifm_tensor.shape[0] != 1:
Tim Hallc30f4952020-06-15 20:47:35 +0100344 return False
345 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 +0200346 if len(ifm2_tensor.shape) > 2 and ifm2_tensor.shape[0] != 1:
347 return False
Dwight Lidman332a7042020-06-11 15:32:42 +0200348
349 # negative alpha values are not supported
350 if op.type == "LeakyRelu" and op.attrs["alpha"] < 0:
351 return False
352
Tim Hall79d07d22020-04-27 18:20:16 +0100353 return True
354
355 def check_memory_only_restrictions(self, op):
Tim Hall79d07d22020-04-27 18:20:16 +0100356 if op.type == "StridedSlice":
Patrik Gustavssoncf728902020-04-30 08:57:23 +0200357 # check stride size
Tim Hall79d07d22020-04-27 18:20:16 +0100358 if len(op.inputs) > 3 and any(stride != 1 for stride in op.inputs[3].values):
359 return False
Michael McGeaghecd20522020-07-31 16:59:45 +0100360 # check "end - begin" doesnt result in any zero or negative elements
361 if any((end - begin) <= 0 for begin, end in zip(op.inputs[1].values, op.inputs[2].values)):
362 return False
Patrik Gustavssoncf728902020-04-30 08:57:23 +0200363 # check ellipsis_mask
364 if op.attrs["ellipsis_mask"] != 0:
365 return False
366 # check if both new_axis_mask and shrink_axis_mask have bit set
367 if op.attrs["new_axis_mask"] != 0 and op.attrs["shrink_axis_mask"] != 0:
368 return False
Tim Hall79d07d22020-04-27 18:20:16 +0100369 return True
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200370
Tim Halle3786ac2020-07-28 17:40:50 +0100371 def check_quantization_restrictions_binary_elem_wise(self, op):
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200372 # makes sure IFM1, IFM2 and OFM quantization are equal for binary ops
Tim Halle3786ac2020-07-28 17:40:50 +0100373 assert len(op.inputs) >= 2 and len(op.outputs) == 1
374
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200375 if (
Tim Halle3786ac2020-07-28 17:40:50 +0100376 op.inputs[0].quantization is None
377 or not op.inputs[0].quantization.is_scaling_equal(op.inputs[1].quantization)
378 or not op.inputs[0].quantization.is_scaling_equal(op.outputs[0].quantization)
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200379 ):
380 print(
381 "Warning: Input/output tensors with different quantization is unsupported for the", op.type, "operator"
382 )
Dwight Lidmanebe26c72020-06-09 11:40:54 +0200383 return False
Tim Halle3786ac2020-07-28 17:40:50 +0100384
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200385 return True
386
387 def check_activation_ops(self, op):
388 if op.type == "Softmax":
389 if not self.softmax_support:
390 return False
391
392 ifm_tensor = op.inputs[0]
393 ofm_tensor = op.outputs[0]
394
395 # check data type
396 if ifm_tensor.dtype != ofm_tensor.dtype:
397 return False
398
Fredrik Svedberg597fd3f2020-08-13 10:02:53 +0200399 if ifm_tensor.dtype not in (DataType.uint8, DataType.int8, DataType.int16):
400 return False
Fredrik Svedberga0c36242020-06-03 15:43:31 +0200401
402 # check batch size
403 if len(ifm_tensor.shape) in (2, 4) and ifm_tensor.shape[0] != 1:
404 return False
405
406 return True