From 3e84bb662f9c6c3f77837640b44c41b7e3403ed4 Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Wed, 13 Nov 2019 17:24:43 +0000 Subject: COMPMID-2920: NEInstanceNormalization fails on NHWC validations Improved TensorInfo to accept DataLayout, useful to test the validate functions Removing nighlies tests Moving all vpadds instructions in add.h Change-Id: I96290a6f26272eae865dba48bbc3c6aee4bc0214 Signed-off-by: Manuel Bottini Reviewed-on: https://review.mlplatform.org/c/2287 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: Georgios Pinitas --- arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h') diff --git a/arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h b/arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h index 9745d266b8..c34119796d 100644 --- a/arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h +++ b/arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h @@ -53,6 +53,7 @@ public: /** Set the input and output tensors. * * @param[in, out] input Source tensor. Data types supported: F16/F32. Data layout supported: NCHW + * In case of @p output tensor = nullptr this tensor will store the result of the normalization. * @param[out] output Destination tensor. Data types and data layouts supported: same as @p input. * @param[in] gamma (Optional) The scale scalar value applied to the normalized tensor. Defaults to 1.0 * @param[in] beta (Optional) The offset scalar value applied to the normalized tensor. Defaults to 0.0 @@ -62,8 +63,7 @@ public: /** Static function to check if given info will lead to a valid configuration of @ref NEInstanceNormalizationLayer. * - * @param[in] input Source tensor info. In case of @p output tensor = nullptr this tensor will store the result of the normalization. - * Data types supported: F16/F32. Data layout supported: NCHW + * @param[in] input Source tensor info. Data types supported: F16/F32. Data layout supported: NCHW * @param[in] output Destination tensor info. Data types and data layouts supported: same as @p input. * @param[in] gamma (Optional) The scale scalar value applied to the normalized tensor. Defaults to 1.0 * @param[in] beta (Optional) The offset scalar value applied to the normalized tensor. Defaults to 0.0 -- cgit v1.2.1