| /external/armnn/src/backends/reference/workloads/ |
| D | Debug.cpp | 26 const std::string& layerName, in PrintOutput() argument 44 os << "\"layerName\": \"" << layerName << "\", "; in PrintOutput() 100 const std::string& layerName, in Debug() argument 107 …std::ofstream out(tmpDir.generic_string() + "/ArmNNIntermediateLayerOutputs/" + layerName + ".nump… in Debug() 108 PrintOutput<T>(inputInfo, inputData, guid, layerName, slotIndex, out); in Debug() 113 PrintOutput<T>(inputInfo, inputData, guid, layerName, slotIndex, std::cout); in Debug() 120 const std::string& layerName, 127 const std::string& layerName, 134 const std::string& layerName, 141 const std::string& layerName, [all …]
|
| /external/armnn/src/armnnSerializer/test/ |
| D | SerializerTests.cpp | 29 const std::string layerName("addition"); variable 36 armnn::IConnectableLayer* const additionLayer = network->AddAdditionLayer(layerName.c_str()); 52 LayerVerifierBase verifier(layerName, {tensorInfo, tensorInfo}, {tensorInfo}); 58 const std::string layerName("argminmax"); in SerializeArgMinMaxTest() local 68 …ConnectableLayer* const argMinMaxLayer = network->AddArgMinMaxLayer(descriptor, layerName.c_str()); in SerializeArgMinMaxTest() 80 LayerVerifierBaseWithDescriptor<armnn::ArgMinMaxDescriptor> verifier(layerName, in SerializeArgMinMaxTest() 99 const std::string layerName("batchMatMul"); variable 117 network->AddBatchMatMulLayer(descriptor, layerName.c_str()); 131 LayerVerifierBaseWithDescriptor<armnn::BatchMatMulDescriptor> verifier(layerName, 140 const std::string layerName("batchNormalization"); variable [all …]
|
| D | ComparisonSerializationTests.cpp | 21 ComparisonModel(const std::string& layerName, in ComparisonModel() 29 …IConnectableLayer* const equalLayer = m_network->AddComparisonLayer(descriptor, layerName.c_str()); in ComparisonModel() 47 ComparisonLayerVerifier(const std::string& layerName, in ComparisonLayerVerifier() argument 51 : LayerVerifierBase(layerName, inputInfos, outputInfos) in ComparisonLayerVerifier() 86 const std::string layerName("equal"); variable 94 ComparisonModel model(layerName, inputInfo, outputInfo, descriptor); 99 … ComparisonLayerVerifier verifier(layerName, { inputInfo, inputInfo }, { outputInfo }, descriptor); 105 const std::string layerName("greater"); variable 113 ComparisonModel model(layerName, inputInfo, outputInfo, descriptor); 118 … ComparisonLayerVerifier verifier(layerName, { inputInfo, inputInfo }, { outputInfo }, descriptor);
|
| D | SerializerTestUtils.hpp | 27 LayerVerifierBase(const std::string& layerName, 54 LayerVerifierBaseWithDescriptor(const std::string& layerName, in LayerVerifierBaseWithDescriptor() argument 58 : LayerVerifierBase(layerName, inputInfos, outputInfos) in LayerVerifierBaseWithDescriptor() 111 LayerVerifierBaseWithDescriptorAndConstants(const std::string& layerName, in LayerVerifierBaseWithDescriptorAndConstants() argument 116 … : LayerVerifierBaseWithDescriptor<Descriptor>(layerName, inputInfos, outputInfos, descriptor) in LayerVerifierBaseWithDescriptorAndConstants()
|
| /external/armnn/src/armnnDeserializer/ |
| D | Deserializer.cpp | 439 return layer->layerName()->str(); in GetLayerName() 826 const auto layerName = GetBaseLayer(graph, layerIndex)->layerName()->c_str(); in ParseUnsupportedLayer() local 828 "layerName: {1} / {2}", in ParseUnsupportedLayer() 830 layerName, in ParseUnsupportedLayer() 1042 ARMNN_ASSERT_MSG(baseLayer->layerName()->c_str(), "Input has no name."); in SetupInputLayers() 1045 m_Network->AddInputLayer(bindingId, baseLayer->layerName()->c_str()); in SetupInputLayers() 1052 m_InputBindings.push_back(std::make_pair(baseLayer->layerName()->c_str(), bindingInfo)); in SetupInputLayers() 1081 ARMNN_ASSERT_MSG(baseLayer->layerName()->c_str(), "Output has no name."); in SetupOutputLayers() 1084 m_Network->AddOutputLayer(bindingId, baseLayer->layerName()->c_str()); in SetupOutputLayers() 1095 m_OutputBindings.push_back(std::make_pair(baseLayer->layerName()->c_str(), bindingInfo)); in SetupOutputLayers() [all …]
|
| /external/armnn/src/armnn/test/ |
| D | TestInputOutputLayerVisitor.cpp | 17 const char* layerName = "InputLayer"; variable 18 TestInputLayerVisitor visitor(1, layerName); 21 IConnectableLayer *const layer = net.AddInputLayer(1, layerName); 36 const char* layerName = "OutputLayer"; variable 37 TestOutputLayerVisitor visitor(1, layerName); 40 IConnectableLayer *const layer = net.AddOutputLayer(1, layerName);
|
| D | TestNameOnlyLayerVisitor.hpp | 16 …explicit Test##name##LayerVisitor(const char* layerName = nullptr) : armnn::TestLayerVisitor(layer… 21 const char* layerName, \ 30 CheckLayerName(layerName); \
|
| D | TestNameAndDescriptorLayerVisitor.hpp | 28 const char* layerName = nullptr) \ 29 : armnn::TestLayerVisitor(layerName) \ 35 const char* layerName, \ 47 CheckLayerName(layerName); \
|
| /external/armnn/src/armnn/ |
| D | LayersFwd.hpp | 95 #define DECLARE_LAYER_IMPL(_, LayerName) \ argument 96 class LayerName##Layer; \ 98 struct LayerTypeOfImpl<LayerType::_##LayerName> \ 100 using Type = LayerName##Layer; \ 103 constexpr LayerType LayerEnumOf(const LayerName##Layer*) \ 105 return LayerType::_##LayerName; \ 108 #define DECLARE_LAYER(LayerName) DECLARE_LAYER_IMPL(, LayerName) argument
|
| /external/armnn/src/armnnTfLiteParser/ |
| D | TfLiteParser.cpp | 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() [all …]
|
| /external/fonttools/Lib/fontTools/ufoLib/ |
| D | __init__.py | 672 layerNames = [layerName for layerName, directoryName in layerContents] 685 for layerName, layerDirectory in layerContents: 687 return layerName 691 def getGlyphSet(self, layerName=None, validateRead=None, validateWrite=None): argument 694 glyphs directory mapped to layerName 695 in the UFO. If layerName is not provided, 710 if layerName is None: 711 layerName = self.getDefaultLayerName(validate=validateRead) 715 if layerName == storedLayerName: 719 raise UFOLibError("No glyphs directory is mapped to \"%s\"." % layerName) [all …]
|
| /external/armnn/src/armnnDeserializer/test/ |
| D | DeserializeFullyConnected.cpp | 31 layerName: "InputLayer", in FullyConnectedFixture() 55 layerName: "FullyConnectedLayer", in FullyConnectedFixture() 98 layerName: "OutputLayer", in FullyConnectedFixture() 134 "layerName": "InputLayer", in FullyConnectedFixtureConstantAsInput() 173 "layerName": "FullyConnectedLayer", in FullyConnectedFixtureConstantAsInput() 224 "layerName": "", in FullyConnectedFixtureConstantAsInput() 285 "layerName": "OutputLayer", in FullyConnectedFixtureConstantAsInput()
|
| D | DeserializeConvolution2d.cpp | 31 layerName: "InputLayer", in Convolution2dFixture() 55 layerName: "Convolution2dLayer", in Convolution2dFixture() 102 layerName: "OutputLayer", in Convolution2dFixture() 142 layerName: "InputLayer", in Convolution2dFixtureConstantAsInput() 166 layerName: "Convolution2dLayer", in Convolution2dFixtureConstantAsInput() 208 layerName: "Weights", in Convolution2dFixtureConstantAsInput() 260 layerName: "OutputLayer", in Convolution2dFixtureConstantAsInput()
|
| D | DeserializeDepthwiseConv2d.cpp | 29 "layerName": "Input", in DepthwiseConv2dFlatbufferVersion1FixtureOld() 68 "layerName": "depwiseConvolution2dWithPerAxis", in DepthwiseConv2dFlatbufferVersion1FixtureOld() 182 "layerName": "Output", in DepthwiseConv2dFlatbufferVersion1FixtureOld() 230 "layerName": "InputLayer", in DepthwiseConv2dFlatbufferVersion1Fixture() 268 "layerName": "depthwiseConvolution2dWithPerAxis", in DepthwiseConv2dFlatbufferVersion1Fixture() 330 "layerName": "Weights", in DepthwiseConv2dFlatbufferVersion1Fixture() 431 "layerName": "OutputLayer", in DepthwiseConv2dFlatbufferVersion1Fixture()
|
| D | DeserializeConstant.cpp | 32 layerName: "InputLayer1", in ConstantAddFixture() 52 layerName: "ConstantLayer", in ConstantAddFixture() 82 layerName: "AdditionLayer", in ConstantAddFixture() 110 layerName: "OutputLayer", in ConstantAddFixture()
|
| D | DeserializeBatchMatMul.cpp | 39 layerName:"InputXLayer", in BatchMatMulFixture() 75 layerName:"InputYLayer", in BatchMatMulFixture() 109 layerName:"BatchMatMulLayer", in BatchMatMulFixture() 159 layerName:"OutputLayer", in BatchMatMulFixture()
|
| D | DeserializeGatherNd.cpp | 34 layerName: "InputLayer", in GatherNdFixture() 53 layerName: "ConstantLayer", in GatherNdFixture() 78 layerName: "GatherNdLayer", in GatherNdFixture() 104 layerName: "OutputLayer", in GatherNdFixture()
|
| D | DeserializeDivision.cpp | 32 layerName: "InputLayer1", in DivisionFixture() 54 layerName: "InputLayer2", in DivisionFixture() 74 layerName: "DivisionLayer", in DivisionFixture() 102 layerName: "OutputLayer", in DivisionFixture()
|
| D | DeserializeGather.cpp | 35 layerName: "InputLayer", in GatherFixture() 54 layerName: "ConstantLayer", in GatherFixture() 79 layerName: "GatherLayer", in GatherFixture() 108 layerName: "OutputLayer", in GatherFixture()
|
| D | DeserializeAdd.cpp | 38 layerName: "InputLayer1", in AddFixture() 60 layerName: "InputLayer2", in AddFixture() 80 layerName: "AdditionLayer", in AddFixture() 108 layerName: "OutputLayer", in AddFixture()
|
| D | DeserializeMultiplication.cpp | 36 layerName: "InputLayer1", in MultiplicationFixture() 58 layerName: "InputLayer2", in MultiplicationFixture() 78 layerName: "MultiplicationLayer", in MultiplicationFixture() 106 layerName: "OutputLayer", in MultiplicationFixture()
|
| D | DeserializeSubtraction.cpp | 32 layerName: "inputLayer1", in SubtractionFixture() 55 layerName: "inputLayer2", in SubtractionFixture() 76 layerName: "subtractionLayer", in SubtractionFixture() 102 layerName: "outputLayer", in SubtractionFixture()
|
| /external/lottie/lottie/src/main/java/com/airbnb/lottie/ |
| D | PerformanceTracker.java | 45 public void recordRenderTime(String layerName, float millis) { in recordRenderTime() argument 49 MeanCalculator meanCalculator = layerRenderTimes.get(layerName); in recordRenderTime() 52 layerRenderTimes.put(layerName, meanCalculator); in recordRenderTime() 56 if (layerName.equals("__container")) { in recordRenderTime()
|
| D | TextDelegate.java | 48 * @param layerName the name of the layer with text 52 public String getText(String layerName, String input) { in getText() argument 97 public final String getTextInternal(String layerName, String input) { in getTextInternal() argument 101 String text = getText(layerName, input); in getTextInternal()
|
| /external/lottie/lottie/src/main/java/com/airbnb/lottie/model/layer/ |
| D | Layer.java | 42 private final String layerName; field in Layer 65 …public Layer(List<ContentModel> shapes, LottieComposition composition, String layerName, long laye… in Layer() argument 75 this.layerName = layerName; in Layer() 120 return layerName; in getName()
|