Lines Matching full:layername

1170     auto layerName = fmt::format("StandIn:{}:{}:{}", subgraphIndex, operatorIndex, opcode);  in ParseUnsupportedOperator()  local
1173 IConnectableLayer* layer = m_Network->AddStandInLayer(descriptor, layerName.c_str()); in ParseUnsupportedOperator()
1197 auto layerName = fmt::format("Cast:{}:{}", subgraphIndex, operatorIndex); in ParseCast() local
1199 IConnectableLayer* layer = m_Network->AddCastLayer(layerName.c_str()); in ParseCast()
1256 auto layerName = fmt::format("Conv2D:{}:{}", subgraphIndex, operatorIndex); in ParseConv2D() local
1257 armnn::IConnectableLayer* layer = m_Network->AddConvolution2dLayer(desc, layerName.c_str()); in ParseConv2D()
1341 auto layerName = fmt::format("Conv3D:{}:{}", subgraphIndex, operatorIndex); in ParseConv3D() local
1356 armnn::IConnectableLayer* layer = m_Network->AddConvolution3dLayer(desc, layerName.c_str()); in ParseConv3D()
1416 auto layerName = fmt::format("DepthwiseConv2D:{}:{}", subgraphIndex, operatorIndex); in ParseDepthwiseConv2D() local
1423 …armnn::IConnectableLayer* layer = m_Network->AddDepthwiseConvolution2dLayer(desc, layerName.c_str(… in ParseDepthwiseConv2D()
1458 auto layerName = fmt::format("Dequantize:{}:{}", subgraphIndex, operatorIndex); in ParseDequantize() local
1460 IConnectableLayer* layer = m_Network->AddDequantizeLayer(layerName.c_str()); in ParseDequantize()
1483 auto layerName = fmt::format("ExpandDims:{}:{}", subgraphIndex, operatorIndex); in ParseExpandDims() local
1488 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseExpandDims()
1530 IConnectableLayer* layer = m_Network->AddReshapeLayer(reshapeDesc, layerName.c_str()); in ParseExpandDims()
1555 auto layerName = fmt::format("Transpose:{}:{}", subgraphIndex, operatorIndex); in ParseTranspose() local
1571 IConnectableLayer* layer = m_Network->AddTransposeLayer(desc, layerName.c_str()); in ParseTranspose()
1575 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseTranspose()
1667 auto layerName = fmt::format("TransposeConv:{}:{}", subgraphIndex, operatorIndex); in ParseTransposeConv() local
1676 layerName.c_str()); in ParseTransposeConv()
1683 layerName.c_str()); in ParseTransposeConv()
1714 auto layerName = fmt::format("BatchMatMul:{}:{}", subgraphIndex, operatorIndex); in ParseBatchMatMul() local
1729 IConnectableLayer* layer = m_Network->AddBatchMatMulLayer(descriptor, layerName.c_str()); in ParseBatchMatMul()
1776 auto layerName = fmt::format("BatchToSpaceND:{}:{}", subgraphIndex, operatorIndex); in ParseBatchToSpaceND() local
1780 IConnectableLayer* layer = m_Network->AddBatchToSpaceNdLayer(desc, layerName.c_str()); in ParseBatchToSpaceND()
1784 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseBatchToSpaceND()
1806 auto layerName = fmt::format("L2Normalization:{}:{}", subgraphIndex, operatorIndex); in ParseL2Normalization() local
1807 IConnectableLayer* layer = m_Network->AddL2NormalizationLayer(desc, layerName.c_str()); in ParseL2Normalization()
1836 auto layerName = fmt::format("Maximum:{}:{}", subgraphIndex, operatorIndex); in ParseMaximum() local
1840 CheckMatchingQuantization(inputTensorInfo, input1TensorInfo, layerName, "Input 0", "Input 1"); in ParseMaximum()
1842 …leLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Maximum, layerName.c_str()); in ParseMaximum()
1846 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseMaximum()
1866 auto layerName = fmt::format("Minimum:{}:{}", subgraphIndex, operatorIndex); in ParseMinimum() local
1870 CheckMatchingQuantization(inputTensorInfo, input1TensorInfo, layerName, "Input 0", "Input 1"); in ParseMinimum()
1872 …leLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Minimum, layerName.c_str()); in ParseMinimum()
1876 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseMinimum()
1897 std::string layerName; in ParsePool() local
1902 layerName = in ParsePool()
1906 layerName = in ParsePool()
1940 IConnectableLayer* layer = m_Network->AddPooling2dLayer(desc, layerName.c_str()); in ParsePool()
1944 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParsePool()
2016 auto layerName = fmt::format("Slice:{}:{}", subgraphIndex, operatorIndex); in ParseSlice() local
2018 IConnectableLayer* const layer = m_Network->AddSliceLayer(desc, layerName.c_str()); in ParseSlice()
2021 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseSlice()
2048 auto layerName = fmt::format("Softmax:{}:{}", subgraphIndex, operatorIndex); in ParseSoftmax() local
2049 IConnectableLayer* const layer = m_Network->AddSoftmaxLayer(desc, layerName.c_str()); in ParseSoftmax()
2075 auto layerName = fmt::format("LogSoftmax:{}:{}", subgraphIndex, operatorIndex); in ParseLogSoftmax() local
2076 IConnectableLayer* const layer = m_Network->AddLogSoftmaxLayer(desc, layerName.c_str()); in ParseLogSoftmax()
2125 auto layerName = fmt::format("SpaceToBatchND:{}:{}", subgraphIndex, operatorIndex); in ParseSpaceToBatchND() local
2129 IConnectableLayer* layer = m_Network->AddSpaceToBatchNdLayer(desc, layerName.c_str()); in ParseSpaceToBatchND()
2133 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseSpaceToBatchND()
2166 auto layerName = fmt::format("SpaceToDepth:{}:{}", subgraphIndex, operatorIndex); in ParseSpaceToDepth() local
2167 IConnectableLayer* layer = m_Network->AddSpaceToDepthLayer(descriptor, layerName.c_str()); in ParseSpaceToDepth()
2239 auto layerName = fmt::format("Shape:{}:{}", subgraphIndex, operatorIndex); in ParseShape() local
2241 IConnectableLayer* layer = m_Network->AddShapeLayer(layerName.c_str()); in ParseShape()
2276 auto layerName = fmt::format("Squeeze:{}:{}", subgraphIndex, operatorIndex); in ParseSqueeze() local
2295 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseSqueeze()
2303 IConnectableLayer* layer = m_Network->AddReshapeLayer(reshapeDesc, layerName.c_str()); in ParseSqueeze()
2357 auto layerName = fmt::format("StridedSlice:{}:{}", subgraphIndex, operatorIndex); in ParseStridedSlice() local
2358 IConnectableLayer* layer = m_Network->AddStridedSliceLayer(desc, layerName.c_str()); in ParseStridedSlice()
2387 auto layerName = fmt::format("Sub:{}:{}", subgraphIndex, operatorIndex); in ParseSub() local
2388 …IConnectableLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Sub, layerName.c_… in ParseSub()
2419 auto layerName = fmt::format("Div:{}:{}", subgraphIndex, operatorIndex); in ParseDiv() local
2420 …IConnectableLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Div, layerName.c_… in ParseDiv()
2447 auto layerName = fmt::format("Div:{}:{}", subgraphIndex, operatorIndex); in ParseFloorDiv() local
2448 …IConnectableLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Div, layerName.c_… in ParseFloorDiv()
2478 auto layerName = fmt::format("Add:{}:{}", subgraphIndex, operatorIndex); in ParseAdd() local
2479 …IConnectableLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Add, layerName.c_… in ParseAdd()
2509 auto layerName = fmt::format("Mul:{}:{}", subgraphIndex, operatorIndex); in ParseMul() local
2510 …IConnectableLayer* layer = m_Network->AddElementwiseBinaryLayer(BinaryOperation::Mul, layerName.c_… in ParseMul()
2566 auto layerName = fmt::format("Mean:{}:{}", subgraphIndex, operatorIndex); in ParseMean() local
2567 IConnectableLayer* layer = m_Network->AddMeanLayer(desc, layerName.c_str()); in ParseMean()
2664 …auto layerName = (opcode == tflite::BuiltinOperator_PAD) ? fmt::format("Pad:{}:{}", subgraphIndex,… in ParsePad() local
2667 IConnectableLayer* layer = m_Network->AddPadLayer(desc, layerName.c_str()); in ParsePad()
2736 auto layerName = fmt::format("MirrorPad:{}:{}", subgraphIndex, operatorIndex); in ParseMirrorPad() local
2738 IConnectableLayer* layer = m_Network->AddPadLayer(desc, layerName.c_str()); in ParseMirrorPad()
2760 auto layerName = fmt::format("Prelu:{}:{}", subgraphIndex, operatorIndex); in ParsePrelu() local
2765 IConnectableLayer* layer = m_Network->AddPreluLayer(layerName.c_str()); in ParsePrelu()
2796 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParsePrelu()
2813 auto layerName = fmt::format("Quantize:{}:{}", subgraphIndex, operatorIndex); in ParseQuantize() local
2815 IConnectableLayer* layer = m_Network->AddQuantizeLayer(layerName.c_str()); in ParseQuantize()
2875 auto layerName = fmt::format("Activation:"); in ParseActivation() local
2883 layerName += fmt::format("RELU:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2888 layerName += fmt::format("RELU6:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2895 layerName += fmt::format("SIGMOID:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2900 layerName += fmt::format("TANH:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2907 layerName += fmt::format("LEAKYRELU:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2914 layerName += fmt::format("ELU:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2920 layerName += fmt::format("HARDSWISH:{}:{}", subgraphIndex, operatorIndex); in ParseActivation()
2926 fmt::format("Unexpected ActivationFunction[{}] when creating layerName {} ", in ParseActivation()
2931 … IConnectableLayer* const layer = m_Network->AddActivationLayer(activationDesc, layerName.c_str()); in ParseActivation()
2986 auto layerName = fmt::format("Reshape:{}:{}", subgraphIndex, operatorIndex); in ParseReshape() local
2990 …CheckMatchingQuantization(inputTensorInfo, actualOutputTensorInfo, layerName, "Input 0", "Output 0… in ParseReshape()
3061 layerName, in ParseReshape()
3131 IConnectableLayer* layer = m_Network->AddReshapeLayer(reshapeDesc, layerName.c_str()); in ParseReshape()
3176 auto layerName = fmt::format("Resize:"); in ParseResize() local
3182 layerName += fmt::format("BILINEAR:{}:{}", subgraphIndex, operatorIndex); in ParseResize()
3192 layerName += fmt::format("NEARESTNEIGHBOR:{}:{}", subgraphIndex, operatorIndex); in ParseResize()
3198 fmt::format("Unexpected ResizeMethod[{}] when creating layerName {} ", in ParseResize()
3205 IConnectableLayer* layer = m_Network->AddResizeLayer(desc, layerName.c_str()); in ParseResize()
3208 CheckMatchingQuantization(inputTensorInfo, outputTensorInfo, layerName, "Input 0", "Output 0"); in ParseResize()
3252 auto layerName = fmt::format("Concatenation:{}:{}", subgraphIndex, operatorIndex); in ParseConcatenation() local
3254 IConnectableLayer* layer = m_Network->AddConcatLayer(concatDescriptor, layerName.c_str()); in ParseConcatenation()
3300 auto layerName = fmt::format("FullyConnected:{}:{}", subgraphIndex, operatorIndex); in ParseFullyConnected() local
3332 layer = m_Network->AddFullyConnectedLayer(desc, layerName.c_str()); in ParseFullyConnected()
3458 auto layerName = fmt::format("DetectionPostProcess:{}:{}", subgraphIndex, operatorIndex); in ParseDetectionPostProcess() local
3460 layerName.c_str()); in ParseDetectionPostProcess()
3516 auto layerName = fmt::format("Pack:{}:{}", subgraphIndex, operatorIndex); in ParsePack() local
3517 IConnectableLayer* layer = m_Network->AddStackLayer(desc, layerName.c_str()); in ParsePack()
3781 auto layerName = fmt::format("UnidirectionalSequenceLSTM:{}:{}", subgraphIndex, operatorIndex); in ParseUnidirectionalSequenceLSTM() local
3874 auto layerName = fmt::format("Unpack:{}:{}", subgraphIndex, operatorIndex); in ParseUnpack() local
3875 IConnectableLayer* layer = m_Network->AddSplitterLayer(splitDesc, layerName.c_str()); in ParseUnpack()
3902 … armnn::IConnectableLayer* reshapeLayer = m_Network->AddReshapeLayer(desc, layerName.c_str()); in ParseUnpack()
4003 auto layerName = fmt::format("Split:{}:{}", subgraphIndex, operatorIndex); in ParseSplit() local
4004 IConnectableLayer* layer = m_Network->AddSplitterLayer(splitDesc, layerName.c_str()); in ParseSplit()
4169 auto layerName = fmt::format("SplitV:{}:{}", subgraphIndex, operatorIndex); in ParseSplitV() local
4170 IConnectableLayer* layer = m_Network->AddSplitterLayer(splitDesc, layerName.c_str()); in ParseSplitV()
4250 auto layerName = argMinMaxFunction == ArgMinMaxFunction::Max ? "ArgMax:{}:{}" : "ArgMin:{}:{}"; in ParseArgMinMax() local
4251 auto layerNameFormatted = fmt::format(layerName, subgraphIndex, operatorIndex); in ParseArgMinMax()
4285 auto layerName = fmt::format("Gather:{}:{}", subgraphIndex, operatorIndex); in ParseGather() local
4309 IConnectableLayer* layer = m_Network->AddGatherLayer(gatherDescriptor, layerName.c_str()); in ParseGather()
4333 auto layerName = fmt::format("GatherNd:{}:{}", subgraphIndex, operatorIndex); in ParseGatherNd() local
4334 IConnectableLayer* layer = m_Network->AddGatherNdLayer(layerName.c_str()); in ParseGatherNd()
4369 auto layerName = fmt::format("DepthToSpace:{}:{}", subgraphIndex, operatorIndex); in ParseDepthToSpace() local
4370 IConnectableLayer* layer = m_Network->AddDepthToSpaceLayer(descriptor, layerName.c_str()); in ParseDepthToSpace()
4415 auto layerName = fmt::format("Reduce:{}:{}", subgraphIndex, operatorIndex); in ParseReduce() local
4450 IConnectableLayer* layer = m_Network->AddReduceLayer(desc, layerName.c_str()); in ParseReduce()
4474 auto layerName = fmt::format("LRN:{}:{}", subgraphIndex, operatorIndex); in ParseLocalResponseNormalization() local
4475 std::string layerNameFormatted = fmt::format(layerName, subgraphIndex, operatorIndex); in ParseLocalResponseNormalization()
4563 std::string layerName = std::string(GetUnaryOperationAsCString(unaryOperation)) + ":{}:{}"; in ParseElementwiseUnary() local
4564 std::string layerNameFormatted = fmt::format(layerName, subgraphIndex, operatorIndex); in ParseElementwiseUnary()
4622 auto layerName = std::string(GetComparisonOperationAsCString(comparisonOperation)) + ":{}:{}"; in ParseComparison() local
4623 std::string layerNameFormatted = fmt::format(layerName, subgraphIndex, operatorIndex); in ParseComparison()
4666 std::string layerName = prevLayer->GetName(); in AddFusedActivationLayer() local
4678 layerName += ":RELU"; in AddFusedActivationLayer()
4686 layerName += ":RELU6"; in AddFusedActivationLayer()
4694 layerName += ":TANH"; in AddFusedActivationLayer()
4714 m_Network->AddActivationLayer(activationDesc, layerName.c_str()); in AddFusedActivationLayer()
4734 std::string layerName = prevLayer->GetName(); in AddFusedFloorLayer() local
4735 IConnectableLayer* floorLayer = m_Network->AddFloorLayer(layerName.c_str()); in AddFusedFloorLayer()
5041 std::string layerName = fmt::format("Constant:{}", tensorPtr->name); in SetupConstantLayers() local
5042 … IConnectableLayer *layer = m_Network->AddConstantLayer(tensorAndData.first, layerName.c_str()); in SetupConstantLayers()
5066 std::string layerName = fmt::format("Constant:{}", tensorPtr->name); in SetupConstantLayers() local
5067 … IConnectableLayer* layer = m_Network->AddConstantLayer(tensorAndData, layerName.c_str()); in SetupConstantLayers()