From 73d4aef12463ac42fa9e31174675f32535a7edd8 Mon Sep 17 00:00:00 2001 From: John Richardson Date: Tue, 8 May 2018 14:34:33 +0100 Subject: COMPMID-948: Add validation to NEL2NormalizeLayer Change-Id: I0cfea24884066412c2f13d9acdb72ddbccac7545 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/130407 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- .../core/NEON/kernels/NEL2NormalizeLayerKernel.h | 26 +++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'arm_compute/core/NEON/kernels/NEL2NormalizeLayerKernel.h') diff --git a/arm_compute/core/NEON/kernels/NEL2NormalizeLayerKernel.h b/arm_compute/core/NEON/kernels/NEL2NormalizeLayerKernel.h index 7fb968e1d8..0de07fdab7 100644 --- a/arm_compute/core/NEON/kernels/NEL2NormalizeLayerKernel.h +++ b/arm_compute/core/NEON/kernels/NEL2NormalizeLayerKernel.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef __ARM_COMPUTE_NEL2NORMALIZEKERNEL_H__ -#define __ARM_COMPUTE_NEL2NORMALIZEKERNEL_H__ +#ifndef __ARM_COMPUTE_NEL2NORMALIZELAYERKERNEL_H__ +#define __ARM_COMPUTE_NEL2NORMALIZELAYERKERNEL_H__ #include "arm_compute/core/NEON/INEKernel.h" @@ -52,14 +52,30 @@ public: ~NEL2NormalizeLayerKernel() = default; /** Set the input and output tensors. * - * @param[in] input Source tensor. Data types supported: F32. + * @param[in] input Source tensor. Data types supported: F32. Data layouts supported: NCHW. * @param[in] sum Sum values tensor. Data types supported: same as @p input. - * @param[out] output Destination tensor. Data types supported: same as @p input. + * Sum will have the same number of dimensions as input. + * @param[out] output Destination tensor. Data types and data layouts supported: same as @p input. + * Output will have the same number of dimensions as input. * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0 * @param[in] epsilon Lower bound value for the normalization. */ void configure(const ITensor *input, const ITensor *sum, ITensor *output, unsigned int axis, float epsilon); + /** Static function to check if given info will lead to a valid configuration of @ref NEL2NormalizeLayerKernel. + * + * @param[in] input Source tensor info. Data types supported: F32. Data layouts supported: NCHW. + * @param[in] sum Sum values tensor info. Data types supported: same as @p input. + * Sum will have the same number of dimensions as input. + * @param[in] output Destination tensor info. Data types and data layouts supported: same as @p input. + * Output will have the same number of dimensions as input. + * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0 + * @param[in] epsilon Lower bound value for the normalization. + * + * @return a status + */ + static Status validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, unsigned int axis, float epsilon); + // Inherited methods overridden: void run(const Window &window, const ThreadInfo &info) override; @@ -71,4 +87,4 @@ private: float _epsilon; }; } // namespace arm_compute -#endif /*__ARM_COMPUTE_NEL2NORMALIZEKERNEL_H__ */ +#endif /*__ARM_COMPUTE_NEL2NORMALIZELAYERKERNEL_H__ */ -- cgit v1.2.1