From 82afedf2598c8fc5a428ecbd729dd8204b46fd43 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Wed, 15 Nov 2017 13:36:15 +0000 Subject: COMPMID-678 Align Convolution Interfaces Change-Id: I257a09860dd82e7bb7a767edf96dcaf31b512855 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/95865 Reviewed-by: Georgios Pinitas Tested-by: Kaizen --- arm_compute/core/NEON/kernels/NEDepthwiseConvolution3x3Kernel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/core/NEON/kernels') diff --git a/arm_compute/core/NEON/kernels/NEDepthwiseConvolution3x3Kernel.h b/arm_compute/core/NEON/kernels/NEDepthwiseConvolution3x3Kernel.h index 14b774c426..a32a06b61d 100644 --- a/arm_compute/core/NEON/kernels/NEDepthwiseConvolution3x3Kernel.h +++ b/arm_compute/core/NEON/kernels/NEDepthwiseConvolution3x3Kernel.h @@ -48,11 +48,11 @@ public: /** Initialize the function's source, destination, conv and border_size. * * @param[in] input Source tensor. DataType supported: F32. - * @param[out] output Destination tensor. Data type supported: Same as @p input. * @param[in] weights Weights tensor. This is a 3D tensor with dimensions [3, 3, IFM]. Data type supported: Same as @p input. + * @param[out] output Destination tensor. Data type supported: Same as @p input. * @param[in] conv_info Padding and stride information to use for the convolution. */ - void configure(const ITensor *input, ITensor *output, const ITensor *weights, const PadStrideInfo &conv_info); + void configure(const ITensor *input, const ITensor *weights, ITensor *output, const PadStrideInfo &conv_info); // Inherited methods overridden: void run(const Window &window, const ThreadInfo &info) override; -- cgit v1.2.1