Home
last modified time | relevance | path

Searched refs:layerType (Results 1 – 21 of 21) sorted by relevance

/external/armnn/src/armnnDeserializer/test/
DDeserializeDepthwiseConv2d.cpp30 "layerType": "Input", in DepthwiseConv2dFlatbufferVersion1FixtureOld()
69 "layerType": "DepthwiseConvolution2d", in DepthwiseConv2dFlatbufferVersion1FixtureOld()
183 "layerType": "Output", in DepthwiseConv2dFlatbufferVersion1FixtureOld()
231 "layerType": "Input", in DepthwiseConv2dFlatbufferVersion1Fixture()
269 "layerType": "DepthwiseConvolution2d", in DepthwiseConv2dFlatbufferVersion1Fixture()
331 "layerType": "Constant", in DepthwiseConv2dFlatbufferVersion1Fixture()
432 "layerType": "Output", in DepthwiseConv2dFlatbufferVersion1Fixture()
DDeserializeFullyConnected.cpp135 "layerType": "Input", in FullyConnectedFixtureConstantAsInput()
174 "layerType": "FullyConnected", in FullyConnectedFixtureConstantAsInput()
225 "layerType": "Constant", in FullyConnectedFixtureConstantAsInput()
286 "layerType": "Output", in FullyConnectedFixtureConstantAsInput()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/layer/
DLayer.java44 private final LayerType layerType; field in Layer
66 LayerType layerType, long parentId, @Nullable String refId, List<Mask> masks, in Layer() argument
77 this.layerType = layerType; in Layer()
140 return layerType; in getLayerType()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DLayerParser.java79 Layer.LayerType layerType = null; in parse() local
121 layerType = Layer.LayerType.values()[layerTypeInt]; in parse()
123 layerType = Layer.LayerType.UNKNOWN; in parse()
287 return new Layer(shapes, composition, layerName, layerId, layerType, parentId, refId, in parse()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowView.java65 private int layerType; field in ShadowView
127 protected void setLayerType(int layerType, Paint paint) { in setLayerType() argument
128 this.layerType = layerType; in setLayerType()
431 return this.layerType; in getLayerType()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowView.java93 private int layerType; field in ShadowView
197 protected void setLayerType(int layerType, Paint paint) { in setLayerType() argument
198 this.layerType = layerType; in setLayerType()
199 reflector(_View_.class, realView).setLayerType(layerType, paint); in setLayerType()
685 return this.layerType; in getLayerType()
832 void setLayerType(int layerType, Paint paint); in setLayerType() argument
DShadowNativeRenderNodeOP.java150 protected static boolean nSetLayerType(long renderNode, int layerType) { in nSetLayerType() argument
151 return RenderNodeNatives.nSetLayerType(renderNode, layerType); in nSetLayerType()
DShadowNativeRenderNode.java162 protected static boolean nSetLayerType(long renderNode, int layerType) { in nSetLayerType() argument
163 return RenderNodeNatives.nSetLayerType(renderNode, layerType); in nSetLayerType()
DShadowRenderNode.java363 protected static boolean nSetLayerType(long renderNode, int layerType) { in nSetLayerType() argument
/external/armnn/src/armnn/
DLayer.cpp508 std::string layerType = GetLayerTypeAsCString(m_Type); in SerializeLayerParameters() local
518 if(!(layerType.compare("") == 0) && !layerType.empty()) in SerializeLayerParameters()
520 fn("LayerType",layerType); in SerializeLayerParameters()
DLoadedNetwork.cpp2236 const LayerType& layerType = layer->GetType(); in CreateMemoryProfileAsync() local
2238 if (layerType == LayerType::Input && inputImportingEnabled) in CreateMemoryProfileAsync()
2243 if (layerType == LayerType::Output && outputImportingEnabled in CreateMemoryProfileAsync()
2250 if (layerType == LayerType::Constant) in CreateMemoryProfileAsync()
2363 const LayerType& layerType = layer->GetType(); in CreateMemoryProfile() local
2365 if (layerType == LayerType::Input && inputImportingEnabled) in CreateMemoryProfile()
2370 if (layerType == LayerType::Output && outputImportingEnabled in CreateMemoryProfile()
2377 if (layerType == LayerType::Constant) in CreateMemoryProfile()
DNetwork.cpp1081 armnn::LayerType layerType = layer->GetType(); in AssignBackendsIConnectable() local
1082 if (!backendSettings.IsCpuRefUsed() && (layerType == armnn::LayerType::MemCopy || in AssignBackendsIConnectable()
1083 layerType == armnn::LayerType::Constant || in AssignBackendsIConnectable()
1084 layerType == armnn::LayerType::Permute)) in AssignBackendsIConnectable()
/external/armnn/src/armnnTestUtils/
DMockBackend.cpp66 armnn::LayerType layerType = layer->GetType(); in IsLayerSupported() local
67 switch (layerType) in IsLayerSupported()
/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
DRenderNodeNatives.java87 public static native boolean nSetLayerType(long renderNode, int layerType); in nSetLayerType() argument
/external/armnn/src/armnnSerializer/
DSerializer.hpp60 const armnnSerializer::LayerType layerType);
DArmnnSchema.fbs193 layerType:LayerType;
DSerializer.cpp1790 … const serializer::LayerType layerType) in CreateLayerBase() argument
1801 layerType, in CreateLayerBase()
/external/armnn/src/armnnDeserializer/
DDeserializer.cpp285 auto layerType = graphPtr->layers()->Get(layerIndex)->layer_type(); in GetBaseLayer() local
287 switch(layerType) in GetBaseLayer()
431 throw ParseException(fmt::format("Layer type {} not recognized", layerType)); in GetBaseLayer()
444 auto layerType = graphPtr->layers()->Get(layerIndex)->layer_type(); in GetBindingLayerInfo() local
446 if (layerType == Layer::Layer_InputLayer) in GetBindingLayerInfo()
450 else if ( layerType == Layer::Layer_OutputLayer ) in GetBindingLayerInfo()
2000 auto layerType = graph->layers()->Get(layerIndex)->layer_type(); in GetOriginsDescriptor() local
2002 switch (layerType) in GetOriginsDescriptor()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowViewTest.java744 public void layerType() throws Exception { in layerType() method in ShadowViewTest
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowViewTest.java772 public void layerType() throws Exception { in layerType() method in ShadowViewTest
/external/armnn/generated/
DArmnnSchema_generated.h2427 armnnSerializer::LayerType layerType() const {
2462 void add_layerType(armnnSerializer::LayerType layerType) {
2463 fbb_.AddElement<uint32_t>(LayerBase::VT_LAYERTYPE, static_cast<uint32_t>(layerType), 0);
2486 armnnSerializer::LayerType layerType = armnnSerializer::LayerType_Addition,
2492 builder_.add_layerType(layerType);
2502 armnnSerializer::LayerType layerType = armnnSerializer::LayerType_Addition,
2512 layerType,