blob: 98df27e32760b4e5388f3853eaea832466287f8a [file] [log] [blame]
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +02001# Copyright (C) 2021 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.
16# Description:
17# The TosaSupportedOperators class which is a collection of all supported operators and parameter checks.
18from collections import defaultdict
19
20from .data_type import DataType
21from .operation import Op
22from .supported_operators_util import docstring_format_args
23from .supported_operators_util import list_formatter
24from .tosa_mapping import optype_to_tosa_op_type
25
26
27class TosaSupportedOperators:
28 # TODO currently sparsely populated
29 # Categorised lists of supported operators
30 convolution_ops = set((Op.Conv2DBias,))
Patrik Gustavssondf995102021-08-23 15:33:59 +020031 depthwise_convolution_ops = set((Op.DepthwiseConv2DBias,))
32 convolution_like_ops = convolution_ops | depthwise_convolution_ops
33
34 # TODO depending on what will be committed
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020035 max_pooling_ops = Op.op_set(Op.is_maxpool_op)
36 avg_pooling_ops = Op.op_set(Op.is_avgpool_op)
Patrik Gustavssondf995102021-08-23 15:33:59 +020037 pooling_ops = max_pooling_ops | avg_pooling_ops
38 fc_vector_products = set((Op.FullyConnected,))
Patrik Gustavssonc74682c2021-08-17 14:26:38 +020039
Patrik Gustavssondf995102021-08-23 15:33:59 +020040 mac_main_ops = convolution_like_ops | pooling_ops | fc_vector_products
Patrik Gustavssonf1580f02021-09-01 12:43:02 +020041 memory_only_ops = set((Op.Reshape, Op.Transpose, Op.Concat, Op.SplitSliceRead,))
Patrik Gustavssonb081d672021-08-25 13:49:25 +020042 binary_elem_wise_add_mul_sub = set((Op.Add, Op.Mul, Op.RescaleMul, Op.Sub,))
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020043 type_conversion_ops = set((Op.Rescale,))
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +020044 relu_ops = set((Op.Clamp, Op.ReluN,))
Patrik Gustavssonf436ada2021-09-14 14:56:48 +020045 activation_ops = relu_ops | set((Op.Table,))
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +020046 pad_ops = set((Op.Pad,))
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020047
48 npu_post_ops = activation_ops
Patrik Gustavssonb081d672021-08-25 13:49:25 +020049 supported_operators = (
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +020050 mac_main_ops | type_conversion_ops | npu_post_ops | memory_only_ops | binary_elem_wise_add_mul_sub | pad_ops
Patrik Gustavssonb081d672021-08-25 13:49:25 +020051 )
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020052
53 # Supported data types
54 # TODO will differ compared to TensorFlow Lite, currently set to the same
Patrik Gustavssonf1580f02021-09-01 12:43:02 +020055 supported_op_dtypes = set((DataType.uint8, DataType.int8, DataType.int16, DataType.int32)) # TODO add bool
Patrik Gustavssonf366fb12021-09-07 13:30:29 +020056 tens_dim_range = (1, 65535) # TODO HW limitation, that is to be resolved in SW
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020057
58 def __init__(self):
59 # Setup the generic constraints. Note: the order matters
60 self.generic_constraints = []
61 self.generic_constraints.append(TosaSupportedOperators.constraint_tens_dtype)
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +020062 self.generic_constraints.append(TosaSupportedOperators.constraint_tens_dimension) # TODO as not supported yet
63 self.generic_constraints.append(TosaSupportedOperators.constraint_rank) # TODO as not supported yet
64 self.generic_constraints.append(TosaSupportedOperators.constraint_batch) # TODO as not supported yet
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020065
66 # Setup specific constraints. Note: the order matters
67 self.specific_constraints = defaultdict(list)
68
Patrik Gustavssondf995102021-08-23 15:33:59 +020069 self.specific_constraints[Op.Transpose].append(TosaSupportedOperators.constraint_ifm_producer)
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +020070 self.specific_constraints[Op.Pad].append(TosaSupportedOperators.constraint_padding_producer)
Patrik Gustavssonf436ada2021-09-14 14:56:48 +020071 self.specific_constraints[Op.Table].append(TosaSupportedOperators.constraint_table_dtype)
72 self.specific_constraints[Op.Table].append(TosaSupportedOperators.constraint_table_producer)
Patrik Gustavssondf995102021-08-23 15:33:59 +020073
74 # Depthwise Conv specific checks:
75 for op_type in TosaSupportedOperators.depthwise_convolution_ops:
76 self.specific_constraints[op_type].append(TosaSupportedOperators.constraint_depth_multiplier)
77
Patrik Gustavssonf366fb12021-09-07 13:30:29 +020078 # Avgpool specific checks
79 for op_type in TosaSupportedOperators.avg_pooling_ops:
80 self.specific_constraints[op_type].append(TosaSupportedOperators.constraint_padding)
81
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020082 def is_operator_supported(self, op):
83 ext_type = optype_to_tosa_op_type(op.type)
84 if op.type not in TosaSupportedOperators.supported_operators:
85 if op.type not in (Op.Placeholder, Op.SubgraphInput, Op.Const):
86 print(f"Info: {ext_type} '{op.name}' is not a NPU op")
87 return False
88
89 for constraint in self.generic_constraints + self.specific_constraints[op.type]:
90 valid, extra = constraint(op)
91 if not valid:
92 print(f"Warning: {ext_type} '{op.name}' is not supported on the NPU")
93 print(f" - {constraint.__doc__}")
94 if extra:
95 print(f" {extra}")
96 return False
97
98 return True
99
100 # TODO this function is the same for TensorFlow Lite, but input might differ
101 @classmethod
102 @docstring_format_args([list_formatter(supported_op_dtypes)])
103 def constraint_tens_dtype(cls, op):
104 "Tensors must be of type: {}"
105 valid = True
106 extra = []
107 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
108 if not tensors:
109 tensors = [tens for tens in op.inputs if tens]
110 for tens in tensors:
111 if tens.dtype not in cls.supported_op_dtypes:
112 valid = False
113 extra.append(f"Tensor '{tens.name}' has data type: {tens.dtype}")
114 return valid, ", ".join(extra)
Patrik Gustavssondf995102021-08-23 15:33:59 +0200115
Patrik Gustavssonf366fb12021-09-07 13:30:29 +0200116 # TODO Duplicates check present for TFLite. But it is only temporarily added
117 # This is for a HW limitation, that is to be resolved in SW later on
118 @classmethod
119 @docstring_format_args(tens_dim_range)
120 def constraint_tens_dimension(cls, op):
121 "Tensor dimensions must be in the range [{}, {}]"
122 tens_min, tens_max = cls.tens_dim_range
123 valid = True
124 extra = []
125 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
126 if not tensors:
127 tensors = [tens for tens in op.inputs if tens]
128 for tens in tensors:
129 if not all(tens_min <= dim <= tens_max for dim in tens.shape):
130 valid = False
131 extra.append(f"Tensor '{tens.name}' has shape: {tens.shape}")
132 return valid, ", ".join(extra)
133
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +0200134 # TODO This is for a HW limitation, that is to be resolved in SW later on
135 @staticmethod
136 def constraint_rank(op):
137 "Tensor rank must be <= 4"
138 valid = True
139 extra = []
140 tensors = [tens for tens in op.get_ifm_ifm2_weights_ofm() if tens]
141 if not tensors:
142 tensors = [tens for tens in op.inputs if tens]
143 for tens in tensors:
144 rank = len(tens.shape)
145 if not rank <= 4:
146 valid = False
147 extra.append(f"Tensor '{tens.name}' has rank: {rank}")
148 return valid, ", ".join(extra)
149
150 # TODO This is for a HW limitation, that is to be resolved in SW later on
151 @staticmethod
152 def constraint_batch(op):
153 "If Tensor rank is 4 batch of ifms/ofm must be 1"
154 valid = True
155 extra = []
156 tensors = [tens for tens in op.get_ifm_ifm2_ofm() if tens]
157 if not tensors:
158 tensors = [tens for tens in op.inputs if tens]
159 for tens in tensors:
160 rank = len(tens.shape)
161 if rank == 4 and tens.shape[0] != 1:
162 valid = False
163 extra.append(f"Tensor '{tens.name}' has rank: 4 and N: {tens.shape[0]}")
164 return valid, ", ".join(extra)
165
Patrik Gustavssondf995102021-08-23 15:33:59 +0200166 @staticmethod
167 def constraint_ifm_producer(cls, op):
168 "Input must be constant data"
169 valid = op.ifm.ops and op.ifm.ops[0].type == Op.Const
170 return valid, "Op has ifm with non-constant data"
171
Patrik Gustavssonf366fb12021-09-07 13:30:29 +0200172 @staticmethod
173 def constraint_padding(op):
174 # TODO Only support for when global scaling can be used.
175 # That is when there is padding no padding
176 "Avgpool only supported for no padding"
177 top, left, _, _ = op.attrs["explicit_padding"]
178 valid = top == 0 and left == 0
179
180 return valid, "Avgpool with pad_top {top} and pad_left {left}"
181
Patrik Gustavssone2bfa7e2021-09-08 15:04:11 +0200182 # TODO limit padding to be const data for now.
183 # For TFLite it is assumed to be constant.
184 @staticmethod
185 def constraint_padding_producer(op):
186 "Input must be constant data"
187 valid = op.inputs[1].ops and op.inputs[1].ops[0].type == Op.Const
188 return valid, "PAD Op with non-constant data padding"
189
Patrik Gustavssonf366fb12021-09-07 13:30:29 +0200190 # TODO duplicates tflite_supported operators, but support for depth multiplier should be added at a later stage
Patrik Gustavssondf995102021-08-23 15:33:59 +0200191 @staticmethod
192 def constraint_depth_multiplier(op):
193 "For depth multipliers > 1, IFM channels must be 1 and OFM channels must be equal to the depth multiplier"
194 depth_multiplier = op.attrs.get("depth_multiplier", 1)
195 if depth_multiplier > 1:
196 ifm_channels = op.ifm.shape[3]
197 ofm_channels = op.ofm.shape[3]
198 valid = (ifm_channels == 1) and (ofm_channels == depth_multiplier)
199 extra = (
200 f"Op has ifm_channels={ifm_channels}, ofm_channels={ofm_channels}"
201 f" and depth_multiplier={depth_multiplier}"
202 )
203 return valid, extra
204 return True, "Op has depth_multiplier=1"
Patrik Gustavssonf436ada2021-09-14 14:56:48 +0200205
206 # TODO Table operator support limited to int8 for now.
207 # For TFLite it is assumed to be constant.
208 @staticmethod
209 def constraint_table_dtype(op):
210 "Only supported is int8"
211 valid = True
212 tensors = [op.ifm, op.ofm, op.inputs[1]]
213 for tens in tensors:
214 if tens.dtype != DataType.int8:
215 valid = False
216 return valid, "Table operator with non int8 tensor"
217
218 # TODO limit table to be constant data for now.
219 # Can it be non-constant?
220 @staticmethod
221 def constraint_table_producer(op):
222 "Input must be constant data"
223 valid = op.inputs[1].ops and op.inputs[1].ops[0].type == Op.Const
224 return valid, "Table Op with non-constant table input"