From 30271c779c36a2abe6995c4454674d92bbc1f91f Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 24 Jun 2019 14:56:34 +0100 Subject: COMPMID-2156: Optimized dilated convolution for NEON. Change-Id: I3a8abe8cc9637c8983d9bd69dcbaee1a15eac8d0 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1492 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez --- src/graph/backends/CL/CLFunctionsFactory.cpp | 4 ++-- src/graph/backends/NEON/NEFunctionFactory.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/graph') 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 */ -- cgit v1.2.1