From 5b48ad7d43c3d1c2fdbae64beac3f37bc6697338 Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Tue, 4 Jun 2019 18:43:35 +0100 Subject: COMPMID-2386: Add support for CLMeanStdNormalizationLayer Change-Id: I0323b2410b222fd08933da22de455e798a60a0b1 Signed-off-by: Michele Di Giorgio Reviewed-on: https://review.mlplatform.org/c/1297 Comments-Addressed: Arm Jenkins Reviewed-by: Gian Marco Iodice Tested-by: Arm Jenkins --- .../reference/MeanStdDevNormalizationLayer.cpp | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 tests/validation/reference/MeanStdDevNormalizationLayer.cpp (limited to 'tests/validation/reference/MeanStdDevNormalizationLayer.cpp') diff --git a/tests/validation/reference/MeanStdDevNormalizationLayer.cpp b/tests/validation/reference/MeanStdDevNormalizationLayer.cpp new file mode 100644 index 0000000000..c44c983888 --- /dev/null +++ b/tests/validation/reference/MeanStdDevNormalizationLayer.cpp @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2019 ARM Limited. + * + * SPDX-License-Identifier: MIT + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +#include "MeanStdDevNormalizationLayer.h" + +#include "arm_compute/core/Types.h" + +namespace arm_compute +{ +namespace test +{ +namespace validation +{ +namespace reference +{ +template +SimpleTensor mean_std_normalization_layer(const SimpleTensor &src, float epsilon) +{ + // Create reference + SimpleTensor dst{ src.shape(), src.data_type(), 1 }; + + const int cols = src.shape()[0]; + const int batch_size = src.shape()[1]; + + for(int i = 0; i < batch_size; ++i) + { + T sum = static_cast(0.f); + T sum_sq = static_cast(0.f); + for(int j = 0; j < cols; ++j) + { + const T value = src[j + i * cols]; + sum += value; + sum_sq += value * value; + } + const T mean = sum / static_cast(cols); + const T var = ((sum_sq / static_cast(cols)) - (mean * mean)) + static_cast(epsilon); + const T stddev_inv = static_cast(1.f) / static_cast(std::sqrt(var)); + for(int j = 0; j < cols; ++j) + { + dst[j + i * cols] = (src[j + i * cols] - mean) * stddev_inv; + } + } + return dst; +} + +template SimpleTensor mean_std_normalization_layer(const SimpleTensor &src, float epsilon); +template SimpleTensor mean_std_normalization_layer(const SimpleTensor &src, float epsilon); +} // namespace reference +} // namespace validation +} // namespace test +} // namespace arm_compute -- cgit v1.2.1