From 417d14fe2e5f83a1e17e73d69df2e95bbb1de870 Mon Sep 17 00:00:00 2001 From: John Richardson Date: Tue, 22 May 2018 17:14:50 +0100 Subject: COMPMID-587: Port LaplacianReconstruct to new validation Change-Id: I9f160fb10c7cf59b5a84f4c40a96ce865faca2e9 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/132346 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- .../validation/reference/LaplacianReconstruct.cpp | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 tests/validation/reference/LaplacianReconstruct.cpp (limited to 'tests/validation/reference/LaplacianReconstruct.cpp') diff --git a/tests/validation/reference/LaplacianReconstruct.cpp b/tests/validation/reference/LaplacianReconstruct.cpp new file mode 100644 index 0000000000..23468287b0 --- /dev/null +++ b/tests/validation/reference/LaplacianReconstruct.cpp @@ -0,0 +1,69 @@ +/* + * Copyright (c) 2018 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 "LaplacianReconstruct.h" + +#include "arm_compute/core/Types.h" +#include "tests/validation/reference/ArithmeticAddition.h" +#include "tests/validation/reference/DepthConvertLayer.h" +#include "tests/validation/reference/Scale.h" + +namespace arm_compute +{ +namespace test +{ +namespace validation +{ +namespace reference +{ +template +SimpleTensor laplacian_reconstruct(const std::vector> &pyramid, const SimpleTensor &low_res, BorderMode border_mode, T constant_border_value) +{ + std::vector> tmp_pyramid(pyramid); + + const size_t last_level = pyramid.size() - 1; + const DataType data_type = low_res.data_type(); + + // input + L(n-1) + tmp_pyramid[last_level] = reference::arithmetic_addition(low_res, pyramid[last_level], data_type, ConvertPolicy::SATURATE); + + // Scale levels n-1 to 1, and add levels n-2 to 0 + for(size_t i = last_level; i-- > 0;) + { + const float scale_x = static_cast(tmp_pyramid[i].shape().x()) / tmp_pyramid[i + 1].shape().x(); + const float scale_y = static_cast(tmp_pyramid[i].shape().y()) / tmp_pyramid[i + 1].shape().y(); + + tmp_pyramid[i] = reference::scale(tmp_pyramid[i + 1], scale_x, scale_y, InterpolationPolicy::NEAREST_NEIGHBOR, + border_mode, constant_border_value, SamplingPolicy::CENTER, false); + + tmp_pyramid[i] = reference::arithmetic_addition(tmp_pyramid[i], pyramid[i], data_type, ConvertPolicy::SATURATE); + } + + return reference::depth_convert(tmp_pyramid[0], DataType::U8, ConvertPolicy::SATURATE, 0); +} + +template SimpleTensor laplacian_reconstruct(const std::vector> &pyramid, const SimpleTensor &low_res, BorderMode border_mode, int16_t constant_border_value); +} // namespace reference +} // namespace validation +} // namespace test +} // namespace arm_compute -- cgit v1.2.1