Home
last modified time | relevance | path

Searched refs:layerSupport (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/armnn/src/backends/neon/test/
H A DNeonLayerTests.cpp421 NeonLayerSupport layerSupport; variable
426 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
431 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
436 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
441 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
446 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
451 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
456 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
461 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
466 CHECK(layerSupport.IsDepthwiseConvolutionSupported(inputInfo, outputInfo, descriptor,
[all …]
/aosp_15_r20/external/armnn/src/backends/backendsCommon/test/mockBackend/
H A DMockImportBackend.cpp84 static ILayerSupportSharedPtr layerSupport{new MockImportLayerSupport}; in GetLayerSupport() local
85 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/src/backends/neon/
H A DNeonBackend.cpp126 static ILayerSupportSharedPtr layerSupport in GetLayerSupport() local
130 return layerSupport; in GetLayerSupport()
135 static ILayerSupportSharedPtr layerSupport in GetLayerSupport() local
139 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/include/armnn/
H A DBackendHelper.hpp32 explicit LayerSupportHandle(std::shared_ptr<ILayerSupport> layerSupport) in LayerSupportHandle() argument
33 : m_LayerSupport(std::move(layerSupport)), m_BackendId(Compute::Undefined) {}; in LayerSupportHandle()
35 …explicit LayerSupportHandle(std::shared_ptr<ILayerSupport> layerSupport, const BackendId& backendI… in LayerSupportHandle() argument
36 : m_LayerSupport(std::move(layerSupport)), m_BackendId(backendId) {}; in LayerSupportHandle()
/aosp_15_r20/external/armnn/src/dynamic/sample/
H A DSampleDynamicBackend.cpp68 static ILayerSupportSharedPtr layerSupport{new SampleDynamicLayerSupport}; in GetLayerSupport() local
69 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/src/backends/reference/
H A DRefBackend.cpp70 static ILayerSupportSharedPtr layerSupport{new RefLayerSupport}; in GetLayerSupport() local
71 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/src/backends/cl/
H A DClBackend.cpp255 static ILayerSupportSharedPtr layerSupport in GetLayerSupport() local
259 return layerSupport; in GetLayerSupport()
264 static ILayerSupportSharedPtr layerSupport in GetLayerSupport() local
268 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/src/backends/tosaReference/
H A DTosaRefBackend.cpp78 static ILayerSupportSharedPtr layerSupport{new TosaRefLayerSupport}; in GetLayerSupport() local
79 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/src/armnnTestUtils/
H A DMockBackend.cpp158 static ILayerSupportSharedPtr layerSupport{new MockLayerSupport}; in GetLayerSupport() local
159 return layerSupport; in GetLayerSupport()
/aosp_15_r20/external/armnn/src/backends/backendsCommon/
H A DWorkloadFactory.cpp93 auto layerSupport = backendObject->GetLayerSupport(modelOptions); in IsLayerConfigurationSupported() local
94 auto layerSupportObject = LayerSupportHandle(layerSupport, backendId); in IsLayerConfigurationSupported()
407 result = layerSupport->IsLayerSupported(LayerType::ElementwiseBinary, in IsLayerConfigurationSupported()