aboutsummaryrefslogtreecommitdiff
path: root/src/graph
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-06-24 14:56:34 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-07-09 09:31:37 +0000
commit30271c779c36a2abe6995c4454674d92bbc1f91f (patch)
tree531257ff87cf2cb8d6f3b8da0abe3e6cb77a2a0e /src/graph
parent30dbeef2f46bdd6fe05d25dfa27cb4b2359dced3 (diff)
downloadComputeLibrary-30271c779c36a2abe6995c4454674d92bbc1f91f.tar.gz
COMPMID-2156: Optimized dilated convolution for NEON.
Change-Id: I3a8abe8cc9637c8983d9bd69dcbaee1a15eac8d0 Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/1492 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Marquez <pablo.tello@arm.com>
Diffstat (limited to 'src/graph')
-rw-r--r--src/graph/backends/CL/CLFunctionsFactory.cpp4
-rw-r--r--src/graph/backends/NEON/NEFunctionFactory.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/graph/backends/CL/CLFunctionsFactory.cpp b/src/graph/backends/CL/CLFunctionsFactory.cpp
index 9f8064e924..c14100ab42 100644
--- a/src/graph/backends/CL/CLFunctionsFactory.cpp
+++ b/src/graph/backends/CL/CLFunctionsFactory.cpp
@@ -59,8 +59,8 @@ struct CLConvolutionLayerFunctions
/** Collection of CL depthwise convolution functions */
struct CLDepthwiseConvolutionLayerFunctions
{
- using GenericDepthwiseConvolutionLayer = CLDepthwiseConvolutionLayer;
- using DepthwiseConvolutionLayer3x3 = CLDepthwiseConvolutionLayer3x3;
+ using GenericDepthwiseConvolutionLayer = CLDepthwiseConvolutionLayer;
+ using OptimizedDepthwiseConvolutionLayer = CLDepthwiseConvolutionLayer3x3;
};
/** Collection of CL element-wise functions */
diff --git a/src/graph/backends/NEON/NEFunctionFactory.cpp b/src/graph/backends/NEON/NEFunctionFactory.cpp
index c31072661b..d4892f53a6 100644
--- a/src/graph/backends/NEON/NEFunctionFactory.cpp
+++ b/src/graph/backends/NEON/NEFunctionFactory.cpp
@@ -65,8 +65,8 @@ struct NEConvolutionLayerFunctions
/** Collection of CL depthwise convolution functions */
struct NEDepthwiseConvolutionLayerFunctions
{
- using GenericDepthwiseConvolutionLayer = NEDepthwiseConvolutionLayer;
- using DepthwiseConvolutionLayer3x3 = NEDepthwiseConvolutionLayer3x3;
+ using GenericDepthwiseConvolutionLayer = NEDepthwiseConvolutionLayer;
+ using OptimizedDepthwiseConvolutionLayer = NEDepthwiseConvolutionLayerOptimized;
};
/** Collection of CL element-wise functions */