26 template<
typename Float32Func,
typename Uint8Func,
typename ... Params>
27 bool IsSupportedForDataTypeRef(Optional<std::string&> reasonIfUnsupported,
29 Float32Func floatFuncPtr,
30 Uint8Func uint8FuncPtr,
35 &FalseFunc<Params...>,
38 &FalseFunc<Params...>,
39 &FalseFunc<Params...>,
40 std::forward<Params>(params)...);
48 std::string CreateIncorrectDimensionsErrorMsg(
unsigned int expected,
50 std::string& layerStr,
51 std::string& tensorName)
53 std::string errorMsg =
"Reference " + layerStr +
": Expected " + std::to_string(expected) +
" dimensions but got" +
54 " " + std::to_string(actual) +
" dimensions instead, for the '" + tensorName +
"' tensor.";
62 const std::vector<TensorInfo>& infos,
73 *(PolymorphicDowncast<const ActivationDescriptor*>(&descriptor)),
80 *(PolymorphicDowncast<const ArgMinMaxDescriptor*>(&descriptor)),
86 *(PolymorphicDowncast<const BatchMatMulDescriptor*>(&descriptor)),
95 *(PolymorphicDowncast<const BatchNormalizationDescriptor*>
101 *(PolymorphicDowncast<const BatchToSpaceNdDescriptor*>(&descriptor)),
102 reasonIfUnsupported);
106 *(PolymorphicDowncast<const BroadcastToDescriptor*>(&descriptor)),
107 reasonIfUnsupported);
112 *(PolymorphicDowncast<const ComparisonDescriptor*>(&descriptor)),
113 reasonIfUnsupported);
116 std::vector<const TensorInfo*> inputInfos;
117 for (uint32_t i = 0; i < (infos.size() - 1); i++)
119 inputInfos.push_back(&infos[i]);
122 infos[infos.size() - 1],
123 *(PolymorphicDowncast<const OriginsDescriptor*>(&descriptor)),
124 reasonIfUnsupported);
134 if (infos.size() != 4)
137 "TensorInfos should be of format: {input, output, weights, biases}.");
140 auto desc = *(PolymorphicDowncast<const Convolution2dDescriptor*>(&descriptor));
148 reasonIfUnsupported);
157 reasonIfUnsupported);
163 *(PolymorphicDowncast<const DepthToSpaceDescriptor*>(&descriptor)),
164 reasonIfUnsupported);
167 if (infos.size() != 4)
170 "TensorInfos should be of format: {input, output, weights, biases}.");
173 auto desc = *(PolymorphicDowncast<const DepthwiseConvolution2dDescriptor*>(&descriptor));
181 reasonIfUnsupported);
190 reasonIfUnsupported);
199 std::array<DataType, 7> supportedTypes =
209 bool supported =
true;
211 "Reference elementwise unary: input type not supported");
214 "Reference elementwise unary: input type not supported");
217 "Reference elementwise unary: output type not supported");
220 "Reference elementwise unary: input types not matching");
223 "Reference elementwise unary: input and output types not matching");
230 *(PolymorphicDowncast<const ElementwiseUnaryDescriptor*>(&descriptor)),
231 reasonIfUnsupported);
235 *(PolymorphicDowncast<const FillDescriptor*>(&descriptor)),
236 reasonIfUnsupported);
244 *(PolymorphicDowncast<const FullyConnectedDescriptor*>(&descriptor)),
245 reasonIfUnsupported);
250 *(PolymorphicDowncast<const GatherDescriptor*>(&descriptor)),
251 reasonIfUnsupported);
256 reasonIfUnsupported);
262 *(PolymorphicDowncast<const InstanceNormalizationDescriptor*>
264 reasonIfUnsupported);
268 *(PolymorphicDowncast<const L2NormalizationDescriptor*>(&descriptor)),
269 reasonIfUnsupported);
274 *(PolymorphicDowncast<const LogicalBinaryDescriptor*>(&descriptor)),
275 reasonIfUnsupported);
279 *(PolymorphicDowncast<const LogSoftmaxDescriptor*>(&descriptor)),
280 reasonIfUnsupported);
289 *(PolymorphicDowncast<const LstmDescriptor*>(&descriptor)),
290 lstmParamsInfo.
value(),
291 reasonIfUnsupported);
299 *(PolymorphicDowncast<const QLstmDescriptor*>(&descriptor)),
300 lstmParamsInfo.
value(),
301 reasonIfUnsupported);
307 *(PolymorphicDowncast<const MeanDescriptor*>(&descriptor)),
308 reasonIfUnsupported);
316 *(PolymorphicDowncast<const NormalizationDescriptor*>(&descriptor)),
317 reasonIfUnsupported);
323 *(PolymorphicDowncast<const PadDescriptor*>(&descriptor)),
324 reasonIfUnsupported);
328 *(PolymorphicDowncast<const PermuteDescriptor*>(&descriptor)),
329 reasonIfUnsupported);
333 *(PolymorphicDowncast<const Pooling2dDescriptor*>(&descriptor)),
334 reasonIfUnsupported);
342 *(PolymorphicDowncast<const ReshapeDescriptor*>(&descriptor)),
343 reasonIfUnsupported);
347 *(PolymorphicDowncast<const ResizeDescriptor*>(&descriptor)),
348 reasonIfUnsupported);
353 reasonIfUnsupported);
357 *(PolymorphicDowncast<const ReduceDescriptor*>(&descriptor)),
358 reasonIfUnsupported);
364 *(PolymorphicDowncast<const ScatterNdDescriptor*>(&descriptor)),
365 reasonIfUnsupported);
369 *(PolymorphicDowncast<const SliceDescriptor*>(&descriptor)),
370 reasonIfUnsupported);
374 *(PolymorphicDowncast<const SoftmaxDescriptor*>(&descriptor)),
375 reasonIfUnsupported);
379 *(PolymorphicDowncast<const SpaceToBatchNdDescriptor*>(&descriptor)),
380 reasonIfUnsupported);
384 *(PolymorphicDowncast<const SpaceToDepthDescriptor*>(&descriptor)),
385 reasonIfUnsupported);
388 std::vector<TensorInfo> outputInfos;
389 for (uint32_t i = 1; i < infos.size(); i++)
391 outputInfos.push_back(infos[i]);
394 {outputInfos.begin(), outputInfos.end()},
395 *(PolymorphicDowncast<const ViewsDescriptor*>(&descriptor)),
396 reasonIfUnsupported);
400 std::vector<const TensorInfo*> inputInfos;
401 for (uint32_t i = 0; i < infos.size() - 1; i++)
403 inputInfos.push_back(&infos[i]);
406 infos[infos.size() - 1],
407 *(PolymorphicDowncast<const StackDescriptor*>(&descriptor)),
408 reasonIfUnsupported);
413 *(PolymorphicDowncast<const StridedSliceDescriptor*>(&descriptor)),
414 reasonIfUnsupported);
420 *(PolymorphicDowncast<const TileDescriptor*>(&descriptor)),
421 reasonIfUnsupported);
425 *(PolymorphicDowncast<const TransposeDescriptor*>(&descriptor)),
426 reasonIfUnsupported);
429 if (infos.size() != 4)
432 "TensorInfos should be of format: {input, output, weights, biases}.");
435 auto desc = *(PolymorphicDowncast<const TransposeConvolution2dDescriptor*>(&descriptor));
443 reasonIfUnsupported);
452 reasonIfUnsupported);
460 *(PolymorphicDowncast<const ChannelShuffleDescriptor*>(&descriptor)),
461 reasonIfUnsupported);
464 if (infos.size() != 4)
467 "TensorInfos should be of format: {input, output, weights, biases}.");
470 auto desc = *(PolymorphicDowncast<const Convolution3dDescriptor*>(&descriptor));
478 reasonIfUnsupported);
487 reasonIfUnsupported);
500 *(PolymorphicDowncast<const DetectionPostProcessDescriptor*>
502 reasonIfUnsupported);
505 *(PolymorphicDowncast<const FakeQuantizationDescriptor*>(&descriptor)),
506 reasonIfUnsupported);
515 if (infos.size() != 6)
518 "should be of format: {input, outputStateIn, cellStateIn, "
519 "hiddenStateOutputVal, cellStateOutputVal, output}");
521 auto desc = *(PolymorphicDowncast<const UnidirectionalSequenceLstmDescriptor*>(&descriptor));
529 lstmParamsInfo.
value(),
530 reasonIfUnsupported);
535 *(PolymorphicDowncast<const Pooling3dDescriptor*>(&descriptor)),
536 reasonIfUnsupported);
551 quantizedLstmInputParamsInfo.
value(),
552 reasonIfUnsupported);
565 bool supported =
true;
568 std::array<DataType,6> supportedTypes = {
577 "Reference activation: input type not supported.");
580 "Reference activation: output type not supported.");
583 "Reference activation: input and output types mismatched.");
586 "Reference activation: input and output shapes are of different rank.");
589 struct ActivationFunctionSupported :
public Rule
622 supported &=
CheckSupportRule(ActivationFunctionSupported(descriptor), reasonIfUnsupported,
623 "Reference activation: function not supported.");
633 bool supported =
true;
635 std::array<DataType,7> supportedTypes = {
645 "Reference addition: input 0 is not a supported type.");
648 "Reference addition: input 1 is not a supported type.");
651 "Reference addition: output is not a supported type.");
654 "Reference addition: input 0 and Input 1 types are mismatched");
657 "Reference addition: input and output types are mismatched");
660 "Reference addition: shapes are not suitable for implicit broadcast.");
671 std::array<DataType, 8> supportedInputTypes =
682 std::array<DataType,2> supportedOutputTypes = {
687 bool supported =
true;
690 "Reference ArgMinMax: input is not a supported type.");
692 "Reference ArgMinMax: output type not supported");
705 std::array<DataType, 6> supportedTypes =
714 bool supported =
true;
717 "Reference batch matrix multiplication: input X is not a supported type");
720 "Reference batch matrix multiplication: input Y is not a supported type");
723 "Reference batch matrix multiplication: output is not a supported type");
726 "Reference batch matrix multiplication: input X and input Y types are mismatched");
729 "Reference batch matrix multiplication: inputs and output types are mismatched");
733 "Reference batch matrix multiplication: input X is not of rank 2 or greater");
737 "Reference batch matrix multiplication: input Y is not of rank 2 or greater");
753 std::array<DataType, 6> supportedTypes =
762 bool supported =
true;
765 "Reference batch normalization: input is not a supported type.");
768 "Reference batch normalization: output is not a supported type.");
771 "Reference batch normalization: input and output types are mismatched");
774 "Reference batch normalization: mean is not a supported type.");
777 "Reference batch normalization: variance is not a supported type.");
780 "Reference batch normalization: beta is not a supported type.");
783 "Reference batch normalization: gamma is not a supported type.");
795 bool supported =
true;
797 std::string batchToSpaceNdLayerStr =
"batchToSpaceNd";
798 std::string inputTensorStr =
"input";
799 std::string outputTensorStr =
"output";
802 std::array<DataType,6> supportedTypes =
812 "Reference BatchToSpaceNd: input type not supported.");
815 "Reference BatchToSpaceNd: output type not supported.");
818 "Reference BatchToSpaceNd: input and output types mismatched.");
830 bool supported =
true;
832 std::array<DataType, 8> supportedTypes
845 "BroadcastTo: input type not supported.");
848 "BroadcastTo: output type not supported");
857 std::array<DataType, 10> supportedInputTypes =
869 bool supported =
true;
871 "Reference cast: input is not a supported type");
875 "Reference cast: output is not a supported type");
878 "Reference cast: input and output shapes have different number of total elements");
889 bool supported =
true;
892 std::array<DataType, 7> supportedTypes =
903 "Reference ChannelShuffle: input is not a supported type.");
906 "Reference ChannelShuffle: output is not a supported type.");
909 "Reference ChannelShuffle: input and output types are mismatched.");
922 std::array<DataType, 8> supportedInputTypes =
933 bool supported =
true;
935 "Reference comparison: input 0 is not a supported type");
938 "Reference comparison: input 0 and Input 1 types are mismatched");
941 "Reference comparison: output is not of type Boolean");
944 "Reference comparison: shapes are not suitable for implicit broadcast.");
956 bool supported =
true;
957 std::array<DataType,7> supportedTypes =
968 "Reference concatenation: output type not supported");
972 "Reference concatenation: input type not supported");
975 "Reference concatenation: input and output types mismatched.");
984 std::array<DataType,8> supportedTypes =
996 "Reference constant: output is not a supported type.");
1006 &FalseInputFuncF32<>,
1012 &FalseOutputFuncF16<>,
1025 &FalseInputFuncF16<>,
1033 &FalseOutputFuncF32<>,
1046 bool supported =
true;
1049 std::array<DataType,7> supportedTypes =
1060 "Reference Convolution2d: input is not a supported type.");
1063 "Reference Convolution2d: output is not a supported type.");
1066 "Reference Convolution2d: input and output types mismatched.");
1072 std::array<DataType, 3> supportedWeightTypes =
1080 "Reference Convolution2d: weights type not supported for quantized input.");
1085 "Reference Convolution2d: weights is not a supported type.");
1088 "Reference Convolution2d: input and weights types mismatched.");
1093 std::array<DataType,4> biasesSupportedTypes =
1101 "Reference Convolution2d: biases is not a supported type.");
1115 bool supported =
true;
1118 std::array<DataType,7> supportedTypes =
1129 "Reference Convolution3d: input is not a supported type.");
1132 "Reference Convolution3d: output is not a supported type.");
1135 "Reference Convolution3d: input and output types mismatched.");
1140 std::array<DataType, 3> supportedWeightTypes =
1148 "Reference Convolution3d: weights type not supported for quantized input.");
1153 "Reference Convolution3d: weights is not a supported type.");
1156 "Reference Convolution3d: input and weights types mismatched.");
1161 std::array<DataType,4> biasesSupportedTypes =
1169 "Reference Convolution3d: biases is not a supported type.");
1180 bool supported =
true;
1182 std::array<DataType, 8> supportedTypes =
1195 "Reference for Debug layer: input type not supported");
1198 "Reference for Debug layer: output type not supported");
1201 "Reference for Debug layer: input and output types are mismatched");
1212 bool supported =
true;
1214 std::array<DataType,6> supportedTypes =
1224 "Reference DepthToSpace: input type not supported");
1227 "Reference DepthToSpace: output type not supported");
1230 "Reference DepthToSpace: input and output types are mismatched");
1243 bool supported =
true;
1246 std::array<DataType,7> supportedTypes =
1257 "Reference DepthwiseConvolution2d: input is not a supported type.");
1260 "Reference DepthwiseConvolution2d: output is not a supported type.");
1263 "Reference DepthwiseConvolution2d: input and output types mismatched.");
1268 std::array<DataType, 3> supportedWeightTypes =
1276 "Reference DepthwiseConvolution2d: weights type not supported for "
1277 "quantized input.");
1282 "Reference DepthwiseConvolution2d: weights is not a supported type.");
1285 "Reference DepthwiseConvolution2d: input and weights types mismatched.");
1290 std::array<DataType,4> biasesSupportedTypes =
1297 "Reference DepthwiseConvolution2d: biases is not a supported type.");
1308 bool supported =
true;
1310 std::array<DataType,5> supportedInputTypes = {
1319 "Reference for Dequantize layer: input type not supported.");
1322 "Reference for Dequantize layer: per-axis quantized input not supported.");
1324 std::array<DataType,3> supportedOutputTypes = {
1330 "Reference for Dequantize layer: output type not supported.");
1333 "Reference for Dequantize layer: input/output shapes have different num total "
1349 IgnoreUnused(anchors, detectionBoxes, detectionClasses, detectionScores, numDetections, descriptor);
1351 bool supported =
true;
1353 std::array<DataType,6> supportedInputTypes =
1363 "Reference DetectionPostProcess: input 0 is not a supported type.");
1366 "Reference DetectionPostProcess: input 1 is not a supported type.");
1386 bool supported =
true;
1388 std::array<DataType,7> supportedTypes = {
1398 "Reference division: input 0 is not a supported type.");
1401 "Reference division: input 1 is not a supported type.");
1404 "Reference division: output is not a supported type.");
1407 "Reference division: input 0 and Input 1 types are mismatched");
1410 "Reference division: input and output types are mismatched");
1413 "Reference division: shapes are not suitable for implicit broadcast.");
1425 std::array<DataType, 7> supportedTypes =
1435 std::array<DataType, 1> logicalSupportedTypes =
1440 bool supported =
true;
1445 "Reference elementwise unary: input type not supported");
1448 "Reference elementwise unary: output type not supported");
1453 "Reference elementwise unary: input type not supported");
1456 "Reference elementwise unary: output type not supported");
1460 "Reference elementwise unary: input and output types not matching");
1463 "Reference elementwise unary: input and output shapes"
1464 "have different number of total elements");
1474 bool supported =
true;
1476 std::array<DataType,1> supportedTypes =
1482 "Reference fake quantization: input type not supported.");
1495 bool supported =
true;
1497 std::array<DataType,3> supportedTypes =
1505 "Reference Fill: input type not supported.");
1508 "Reference Fill: output type not supported.");
1517 bool supported =
true;
1519 std::array<DataType,3> supportedTypes =
1526 "Reference Floor: input type not supported.");
1529 "Reference Floor: output type not supported.");
1541 bool supported =
true;
1544 std::array<DataType,6> supportedTypes =
1555 "Reference Fully Connected: input type not supported.");
1558 "Reference Fully Connected: output type not supported.");
1561 "Reference Fully Connected: weights type not supported.");
1564 "Reference Fully Connected: input and output types mismatched.");
1567 "Reference Fully Connected: weights is not a supported type.");
1570 "Reference Fully Connected: input and weights types mismatched.");
1575 std::array<DataType, 5>
1576 supportedBiasTypes =
1585 "Reference Fully Connected: bias type not supported.");
1588 "Reference Fully Connected: bias and weight types mismatch.");
1591 "Reference Fully Connected: bias type inferred from weights is incompatible.");
1594 "Reference Fully Connected: bias must have 1 dimension.");
1606 bool supported =
true;
1607 std::array<DataType,7> supportedTypes =
1618 "Reference GatherNd: input type not supported");
1621 "Reference GatherNd: output type not supported");
1624 "Reference GatherNd: indices (input1) type not supported");
1627 "Reference GatherNd: input and output types not matching");
1638 bool supported =
true;
1639 std::array<DataType,7> supportedTypes =
1651 "Reference Gather: input type not supported");
1654 "Reference Gather: output type not supported");
1657 "Reference Gather: indices (input1) type not supported");
1660 "Reference Gather: input and output types not matching");
1678 std::array<DataType, 3> supportedTypes =
1684 bool supported =
true;
1687 "Reference Instance Normalization: input type not supported.");
1690 "Reference Instance Normalization: output type not supported.");
1693 "Reference Instance Normalization: input and output types mismatched.");
1696 "Reference Instance Normalization: input and output shapes have different "
1697 "num total elements.");
1709 std::array<DataType, 6> supportedTypes =
1718 bool supported =
true;
1721 "Reference L2normalization: input type not supported.");
1724 "Reference L2normalization: output type not supported.");
1727 "Reference L2normalization: input and output types mismatched.");
1730 "Reference L2normalization: input and output shapes have different "
1731 "num total elements.");
1744 std::array<DataType, 1> supportedTypes =
1749 bool supported =
true;
1751 "Reference LogicalBinary: input 0 type not supported");
1753 "Reference LogicalBinary: input 1 type not supported");
1756 "Reference LogicalBinary: input and output types do not match");
1759 "Reference LogicalBinary: shapes are not suitable for implicit broadcast.");
1771 std::array<DataType, 3> supportedTypes =
1777 bool supported =
true;
1779 "Reference LogSoftmax: input type not supported");
1782 "Reference LogSoftmax: output type not supported");
1785 "Reference LogSoftmax: input and output types do not match");
1804 bool supported =
true;
1806 std::array<DataType,3> supportedTypes = {
1813 "Reference Lstm: input is not a supported type.");
1815 "Reference Lstm: input and outputStateIn types are mismatched");
1817 "Reference Lstm: input and cellStateIn types are mismatched");
1819 "Reference Lstm: input and scratchBuffer types are mismatched");
1821 "Reference Lstm: input and outputStateOut types are mismatched");
1823 "Reference Lstm: input and cellStateOut types are mismatched");
1826 "Reference Lstm: input and output types are mismatched");
1829 "Reference Lstm: input and InputToForgetWeights types are mismatched");
1831 "Reference Lstm: input and InputToCellWeights types are mismatched");
1833 "Reference Lstm: input and InputToOutputWeights types are mismatched");
1835 "Reference Lstm: input and RecurrentToForgetWeights types are mismatched");
1837 "Reference Lstm: input and RecurrentToCellWeights types are mismatched");
1839 "Reference Lstm: input and RecurrentToOutputWeights types are mismatched");
1841 "Reference Lstm: input and ForgetGateBias types are mismatched");
1843 "Reference Lstm: input and CellBias types are mismatched");
1845 "Reference Lstm: input and OutputGateBias types are mismatched");
1849 "Reference Lstm: input and InputToInputWeights types are mismatched");
1851 reasonIfUnsupported,
1852 "Reference Lstm: input and RecurrentToInputWeights types are mismatched");
1854 "Reference Lstm: input and InputGateBias types are mismatched");
1858 reasonIfUnsupported,
1859 "Reference Lstm: input and CellToInputWeights types are mismatched");
1865 "Reference Lstm: input and CellToForgetWeights types are mismatched");
1867 "Reference Lstm: input and CellToOutputWeights types are mismatched");
1872 "Reference Lstm: input and mProjectionWeights types are mismatched");
1876 "Reference Lstm: input and ProjectionBias types are mismatched");
1884 reasonIfUnsupported,
1885 "Reference Lstm: input and InputLayerNormWeights types are mismatched");
1888 reasonIfUnsupported,
1889 "Reference Lstm: input and ForgetLayerNormWeights types are mismatched");
1891 reasonIfUnsupported,
1892 "Reference Lstm: input and CellLayerNormWeights types are mismatched");
1894 reasonIfUnsupported,
1895 "Reference Lstm: input and OutputLayerNormWeights types are mismatched");
1906 bool supported =
true;
1908 std::array<DataType,7> supportedTypes = {
1918 "Reference maximum: input 0 is not a supported type.");
1921 "Reference maximum: input 1 is not a supported type.");
1924 "Reference maximum: output is not a supported type.");
1927 "Reference maximum: input 0 and Input 1 types are mismatched");
1930 "Reference maximum: input and output types are mismatched");
1933 "Reference maximum: shapes are not suitable for implicit broadcast.");
1943 bool supported =
true;
1944 std::string meanLayerStr =
"Mean";
1945 std::string outputTensorStr =
"output";
1947 std::array<DataType,6> supportedTypes =
1958 "Reference Mean: input type not supported.");
1961 "Reference Mean: input and output types are mismatched");
1966 reasonIfUnsupported,
1969 meanLayerStr, outputTensorStr).data());
1971 else if (descriptor.
m_Axis.empty())
1974 reasonIfUnsupported,
1976 meanLayerStr, outputTensorStr).data());
1985 reasonIfUnsupported,
1987 meanLayerStr, outputTensorStr).data());
1992 reasonIfUnsupported,
1994 meanLayerStr, outputTensorStr).data());
2005 bool supported =
true;
2007 std::array<DataType,7> supportedTypes =
2019 "Reference MemCopy: input type not supported");
2022 "Reference MemCopy: output type not supported");
2025 "Reference MemCopy: input and output types are mismatched");
2035 bool supported =
true;
2037 std::array<DataType,7> supportedTypes = {
2047 "Reference minimum: input 0 is not a supported type.");
2050 "Reference minimum: input 1 is not a supported type.");
2053 "Reference minimum: output is not a supported type.");
2056 "Reference minimum: input 0 and Input 1 types are mismatched");
2059 "Reference minimum: input and output types are mismatched");
2062 "Reference minimum: shapes are not suitable for implicit broadcast.");
2072 bool supported =
true;
2074 std::array<DataType,7> supportedTypes = {
2084 "Reference multiplication: input 0 is not a supported type.");
2087 "Reference multiplication: input 1 is not a supported type.");
2090 "Reference multiplication: output is not a supported type.");
2093 "Reference multiplication: input 0 and Input 1 types are mismatched");
2096 "Reference multiplication: input and output types are mismatched");
2099 "Reference multiplication: shapes are not suitable for implicit broadcast.");
2112 std::array<DataType, 6> supportedTypes =
2121 bool supported =
true;
2124 "Reference normalization: input type not supported.");
2127 "Reference normalization: output type not supported.");
2130 "Reference normalization: input and output shapes have different "
2131 "num total elements.");
2148 bool supported =
true;
2151 std::array<DataType,6> supportedTypes =
2161 "Reference pad: input is not a supported type.");
2164 "Reference pad: output is not a supported type.");
2167 "Reference pad: input and output types are mismatched.");
2178 bool supported =
true;
2181 std::array<DataType, 6> supportedTypes =
2192 "Reference permute: input is not a supported type.");
2195 "Reference permute: output is not a supported type.");
2198 "Reference permute: input and output types are mismatched.");
2209 bool supported =
true;
2212 std::array<DataType,6> supportedTypes =
2222 "Reference poolind2d: input is not a supported type.");
2225 "Reference poolind2d: output is not a supported type.");
2228 "Reference poolind2d: input and output types are mismatched.");
2239 bool supported =
true;
2242 std::array<DataType,6> supportedTypes =
2252 "Reference poolind3d: input is not a supported type.");
2255 "Reference poolind3d: output is not a supported type.");
2258 "Reference poolind3d: input and output types are mismatched.");
2292 bool supported =
true;
2295 std::array<DataType,7> supportedInputTypes = {
2305 "Reference quantize: input type not supported.");
2308 std::array<DataType,4> supportedOutputTypes = {
2315 "Reference quantize: output type not supported.");
2318 "Reference quantize: input and output shapes have different num total elements.");
2329 std::array<DataType,1> supportedOutputTypes =
2335 "Reference rank: input type not supported.");
2344 bool supported =
true;
2345 std::array<DataType,7> supportedTypes =
2356 "Reference Reduce: input type not supported");
2359 "Reference Reduce: output type not supported");
2362 "Reference Reduce: input and output types not matching");
2375 std::array<DataType,8> supportedOutputTypes =
2388 "Reference reshape: input type not supported.");
2397 bool supported =
true;
2398 std::array<DataType,7> supportedTypes =
2410 "Reference Resize: input type not supported");
2413 "Reference Resize: output type not supported");
2416 "Reference Resize: input and output types not matching");
2426 bool supported =
true;
2428 std::array<DataType,8> supportedTypes =
2441 "Reference ReverseV2: input0 type not supported");
2444 "Reference ReverseV2: output type not supported");
2447 "Reference ReverseV2: input0 and output types not matching");
2449 std::array<DataType,6> input2SupportedTypes =
2455 "Reference ReverseV2: input1 type not supported");
2469 bool supported =
true;
2471 std::array<DataType, 7> supportedTypes
2482 std::array<DataType, 1> indicesSupportedTypes =
2488 "ScatterNd: indices type not supported.");
2491 "ScatterNd: updates type not supported.");
2494 "ScatterNd: output type not supported");
2497 "ScatterNd: input and updates types are mismatched");
2503 "ScatterNd: input type not supported.");
2506 "ScatterNd: input and output types are mismatched");
2512 "ScatterNd: shape type not supported.");
2523 bool supported =
true;
2525 std::array<DataType, 1> supportedTypes =
2531 "Reference Shape: output type not supported");
2542 bool supported =
true;
2544 std::array<DataType, 5> supportedTypes =
2554 "Reference Slice: input type not supported");
2557 "Reference Slice: output type not supported");
2560 "Reference Slice: input and output types are mismatched");
2571 bool supported =
true;
2572 std::array<DataType,7> supportedTypes =
2583 "Reference Softmax: output type not supported");
2586 "Reference Softmax: input type not supported");
2589 "Reference Softmax: input type not supported");
2600 bool supported =
true;
2601 std::array<DataType,6> supportedTypes =
2611 "Reference SpaceToBatchNd: input type not supported");
2614 "Reference SpaceToBatchNd: output type not supported");
2617 "Reference SpaceToBatchNd: input and output types are mismatched");
2629 bool supported =
true;
2631 std::array<DataType,6> supportedTypes =
2641 "Reference SpaceToDepth: input type not supported");
2644 "Reference SpaceToDepth: output type not supported");
2647 "Reference SpaceToDepth: input and output types are mismatched");
2653 const std::vector<std::reference_wrapper<TensorInfo>>& outputs,
2658 bool supported =
true;
2659 std::array<DataType,6> supportedTypes =
2669 "Reference splitter: output type not supported");
2673 "Reference splitter: input type not supported");
2676 "Reference splitter: input and output types mismatched.");
2689 bool supported =
true;
2690 std::array<DataType,7> supportedTypes =
2701 "Reference stack: output type not supported");
2705 "Reference stack: input type not supported");
2708 "Reference stack: input and output types mismatched.");
2720 bool supported =
true;
2722 std::array<DataType,5> supportedTypes =
2731 "Reference StridedSlice: input type not supported");
2734 "Reference StridedSlice: output type not supported");
2737 "Reference StridedSlice: input and output types are mismatched");
2747 bool supported =
true;
2749 std::array<DataType,7> supportedTypes = {
2759 "Reference subtraction: input 0 is not a supported type.");
2762 "Reference subtraction: input 1 is not a supported type.");
2765 "Reference subtraction: output is not a supported type.");
2768 "Reference subtraction: input 0 and Input 1 types are mismatched");
2771 "Reference subtraction: input and output types are mismatched");
2774 "Reference subtraction: shapes are not suitable for implicit broadcast.");
2784 bool supported =
true;
2786 std::array<DataType, 6> supportedTypes
2796 "PReLU: input is not a supported type.");
2799 "PReLU: alpha is not a supported type.");
2802 "PReLU: output is not a supported type.");
2805 "PReLU: input, alpha and output types are mismatched");
2808 "PReLU: shapes are not suitable for implicit broadcast");
2820 bool supported =
true;
2822 std::array<DataType, 7> supportedTypes
2834 "Tile: input type not supported.");
2837 "Tile: output type not supported");
2850 bool supported =
true;
2852 std::array<DataType,7> supportedTypes =
2863 "Reference TransposeConvolution2d: input is not a supported type.");
2866 "Reference TransposeConvolution2d: output is not a supported type.");
2869 "Reference TransposeConvolution2d: input and output types mismatched.");
2875 std::array<DataType, 3> supportedWeightTypes =
2883 "Reference TransposeConvolution2d: weights type not supported for "
2884 "quantized input.");
2889 "Reference TransposeConvolution2d: weights is not a supported type.");
2892 "Reference TransposeConvolution2d: input and weights types mismatched.");
2897 std::array<DataType,4> biasesSupportedTypes =
2904 "Reference TransposeConvolution2d: biases is not a supported type.");
2916 bool supported =
true;
2919 std::array<DataType, 6> supportedTypes =
2930 "Reference transpose: input is not a supported type.");
2933 "Reference transpose: output is not a supported type.");
2936 "Reference transpose: input and output types are mismatched.");
2958 bool supported =
true;
2960 std::array<DataType, 2> supportedTypes =
2966 std::array<DataType, 2> supportedWeightTypes =
2972 std::array<DataType, 3> supportedBiasTypes =
2981 "Reference UnidirectionalSequenceLstm: input is not a supported type.");
2983 "Reference UnidirectionalSequenceLstm: output is not a supported type.");
2987 reasonIfUnsupported,
2988 "Reference UnidirectionalSequenceLstm: InputToForgetWeights "
2989 "is not a supported type.");
2991 reasonIfUnsupported,
2992 "Reference UnidirectionalSequenceLstm: InputToCellWeights is not a supported type.");
2994 reasonIfUnsupported,
2995 "Reference UnidirectionalSequenceLstm: InputToOutputWeights "
2996 "is not a supported type.");
2998 reasonIfUnsupported,
2999 "Reference UnidirectionalSequenceLstm: RecurrentToForgetWeights "
3000 "is not a supported type.");
3002 reasonIfUnsupported,
3003 "Reference UnidirectionalSequenceLstm: RecurrentToCellWeights "
3004 "is not a supported type.");
3006 reasonIfUnsupported,
3007 "Reference UnidirectionalSequenceLstm: RecurrentToOutputWeights "
3008 "is not a supported type.");
3011 "Reference UnidirectionalSequenceLstm: ForgetGateBias is not a supported type.");
3013 "Reference UnidirectionalSequenceLstm: CellBias is not a supported type.");
3015 "Reference UnidirectionalSequenceLstm: OutputGateBias is not a supported type.");
3019 reasonIfUnsupported,
3020 "Reference UnidirectionalSequenceLstm: InputToInputWeights "
3021 "is not a supported type.");
3023 reasonIfUnsupported,
3024 "Reference UnidirectionalSequenceLstm: RecurrentToInputWeights "
3025 "is not a supported type.");
3027 "Reference UnidirectionalSequenceLstm: InputGateBias is not a supported type.");
3031 reasonIfUnsupported,
3032 "Reference UnidirectionalSequenceLstm: CellToInputWeights "
3033 "is not a supported type.");
3039 reasonIfUnsupported,
3040 "Reference UnidirectionalSequenceLstm: CellToForgetWeights "
3041 "is not a supported type.");
3043 reasonIfUnsupported,
3044 "Reference UnidirectionalSequenceLstm: CellToOutputWeights "
3045 "is not a supported type.");
3050 reasonIfUnsupported,
3051 "Reference UnidirectionalSequenceLstm: ProjectionWeights "
3052 "is not a supported type.");
3056 "Reference UnidirectionalSequenceLstm: input and ProjectionBias types "
3065 reasonIfUnsupported,
3066 "Reference UnidirectionalSequenceLstm: InputLayerNormWeights "
3067 "is not a supported type.");
3070 reasonIfUnsupported,
3071 "Reference UnidirectionalSequenceLstm: ForgetLayerNormWeights "
3072 "is not a supported type.");
3074 reasonIfUnsupported,
3075 "Reference UnidirectionalSequenceLstm: CellLayerNormWeights "
3076 "is not a supported type.");
3078 reasonIfUnsupported,
3079 "Reference UnidirectionalSequenceLstm: OutputLayerNormWeights "
3080 "is not a supported type.");