From bd9097db81f229c2d7bbafc2bcf392b7c1c49b58 Mon Sep 17 00:00:00 2001 From: Gian Marco Iodice Date: Fri, 26 Jul 2019 15:31:02 +0100 Subject: COMPMID-2336: Rename the new generic depthwise convolution on NEON Change-Id: I45cacf75b08bb9d867343037507e56f200ad6ac0 Signed-off-by: Gian Marco Iodice Reviewed-on: https://review.mlplatform.org/c/1637 Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arm_compute/runtime') diff --git a/arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h b/arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h index 5b0d1bafcd..87405fdb14 100644 --- a/arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h +++ b/arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h @@ -25,7 +25,7 @@ #define __ARM_COMPUTE_NEDEPTHWISECONVOLUTION_H__ #include "arm_compute/core/NEON/kernels/NEDepthwiseConvolutionLayer3x3Kernel.h" -#include "arm_compute/core/NEON/kernels/NEDepthwiseConvolutionLayerKernel.h" +#include "arm_compute/core/NEON/kernels/NEDepthwiseConvolutionLayerNativeKernel.h" #include "arm_compute/core/NEON/kernels/NEDepthwiseIm2ColKernel.h" #include "arm_compute/core/NEON/kernels/NEDepthwiseVectorToTensorKernel.h" #include "arm_compute/core/NEON/kernels/NEDepthwiseWeightsReshapeKernel.h" @@ -282,7 +282,7 @@ private: /** Basic function to execute a generic depthwise convolution. This function calls the following NEON kernels: * * If data type is F32 and data layout is NHWC: - * -# @ref NEDepthwiseConvolutionLayerKernel + * -# @ref NEDepthwiseConvolutionLayerNativeKernel * * Otherwise: * -# @ref NEDepthwiseIm2ColKernel @@ -344,7 +344,7 @@ private: NEDepthwiseIm2ColKernel _im2col_kernel; NEDepthwiseWeightsReshapeKernel _weights_reshape_kernel; NEGEMMMatrixVectorMultiplyKernel _v2mm_kernel; - NEDepthwiseConvolutionLayerKernel _depthwise_conv_kernel; + NEDepthwiseConvolutionLayerNativeKernel _depthwise_conv_kernel; NEDepthwiseVectorToTensorKernel _vector_to_tensor_kernel; NEDirectConvolutionLayerOutputStageKernel _output_stage_kernel; NEFillBorderKernel _fill_border; -- cgit v1.2.1