From ed5a492ba791d8c8b3334749d4ae946b8f11d13d Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Thu, 13 Sep 2018 16:22:01 +0100 Subject: COMPMID-1586: Add support for NHWC CLDeconvolutionLayer COMPMID-1651: Fix QASYMM8 CLDeconvolutionLayer This patch also extends the range of values used for testing Convolution and Deconvolution to cover quantized [-1.0f, 1.0f]. Change-Id: I8b280669db67bb3ec25bf5d411c8f5954f5b0dab Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/149869 Reviewed-by: Michalis Spyrou Tested-by: bsgcomp --- arm_compute/core/CPP/kernels/CPPFlipWeightsKernel.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'arm_compute/core/CPP') diff --git a/arm_compute/core/CPP/kernels/CPPFlipWeightsKernel.h b/arm_compute/core/CPP/kernels/CPPFlipWeightsKernel.h index 801934159d..04567ed959 100644 --- a/arm_compute/core/CPP/kernels/CPPFlipWeightsKernel.h +++ b/arm_compute/core/CPP/kernels/CPPFlipWeightsKernel.h @@ -53,7 +53,7 @@ public: /** Set the input and output of the kernel. * - * @param[in] input The input tensor to flip. Data types supported: QASYMM8/F16/F32 + * @param[in] input The input tensor to flip. Data types supported: QASYMM8/F16/F32. Data layouts supported: NCHW/NHWC. * @param[out] output The output tensor. Data types supported: Same as @p input */ void configure(const ITensor *input, ITensor *output); @@ -64,17 +64,15 @@ public: /** Function to perform flipping. * * @param[in] window_input Input region on which to execute the kernel. - * @param[in] window Output region on which to execute the kernel. */ template - void flip_weights(const Window &window_input, const Window &window); + void flip_weights(const Window &window_input); /** Common signature for all the specialised Flip functions * * @param[in] window_input Input region on which to execute the kernel. - * @param[in] window Output region on which to execute the kernel. */ - using FlipWeightsFunction = void (CPPFlipWeightsKernel::*)(const Window &window_input, const Window &window); + using FlipWeightsFunction = void (CPPFlipWeightsKernel::*)(const Window &window_input); private: const ITensor *_input; -- cgit v1.2.1