blob: 9639cbfd916bdffca5e50b53b7f582647aff0ee5 [file] [log] [blame]
Gian Marco37908d92017-11-07 14:38:22 +00001/*
Michalis Spyroud175ece2020-07-30 23:39:32 +01002 * Copyright (c) 2017-2020 Arm Limited.
Gian Marco37908d92017-11-07 14:38:22 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
Michalis Spyroud175ece2020-07-30 23:39:32 +010023 */
Gian Marco37908d92017-11-07 14:38:22 +000024#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/NEON/functions/NEGaussianPyramid.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
30#include "tests/datasets/BorderModeDataset.h"
31#include "tests/datasets/ShapeDatasets.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
Gian Marco37908d92017-11-07 14:38:22 +000035#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/GaussianPyramidHalfFixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000037#include "tests/validation/reference/Utils.h"
Gian Marco37908d92017-11-07 14:38:22 +000038
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
Gian Marco Iodice2abb2162018-04-11 10:49:04 +010047const auto small_gaussian_pyramid_levels = combine(datasets::Medium2DShapes(), datasets::BorderModes()) * framework::dataset::make("numlevels", 2, 4);
Gian Marco37908d92017-11-07 14:38:22 +000048const auto large_gaussian_pyramid_levels = combine(datasets::Large2DShapes(), datasets::BorderModes()) * framework::dataset::make("numlevels", 2, 5);
49
Sanghoon Lee1cd41492018-03-15 11:48:48 +000050template <typename T>
51inline void validate_gaussian_pyramid(const Pyramid &target, const std::vector<SimpleTensor<T>> &reference, BorderMode border_mode)
Gian Marco37908d92017-11-07 14:38:22 +000052{
53 ValidRegion prev_valid_region = shape_to_valid_region(reference[0].shape());
54
55 for(size_t i = 1; i < reference.size(); ++i)
56 {
57 const ValidRegion valid_region = shape_to_valid_region_gaussian_pyramid_half(reference[i - 1].shape(), prev_valid_region, (border_mode == BorderMode::UNDEFINED));
58
59 // Validate outputs
Sanghoon Lee1cd41492018-03-15 11:48:48 +000060 validate(Accessor(*(target.get_pyramid_level(i))), reference[i], valid_region);
Gian Marco37908d92017-11-07 14:38:22 +000061
62 // Keep the valid region for the next level
63 prev_valid_region = valid_region;
64 }
65}
66} // namespace
67
68TEST_SUITE(NEON)
69TEST_SUITE(GaussianPyramid)
70TEST_SUITE(Half)
71
Gian Marco37908d92017-11-07 14:38:22 +000072template <typename T>
73using NEGaussianPyramidHalfFixture = GaussianPyramidHalfValidationFixture<Tensor, Accessor, NEGaussianPyramidHalf, T, Pyramid>;
74
Michalis Spyroucac09dc2020-11-24 00:16:49 +000075FIXTURE_DATA_TEST_CASE(RunSmallGaussianPyramidHalf, NEGaussianPyramidHalfFixture<uint8_t>, framework::DatasetMode::NIGHTLY, small_gaussian_pyramid_levels)
Gian Marco37908d92017-11-07 14:38:22 +000076{
Sanghoon Lee1cd41492018-03-15 11:48:48 +000077 validate_gaussian_pyramid(_target, _reference, _border_mode);
Gian Marco37908d92017-11-07 14:38:22 +000078}
79
80FIXTURE_DATA_TEST_CASE(RunLargeGaussianPyramidHalf, NEGaussianPyramidHalfFixture<uint8_t>, framework::DatasetMode::NIGHTLY, large_gaussian_pyramid_levels)
81{
Sanghoon Lee1cd41492018-03-15 11:48:48 +000082 validate_gaussian_pyramid(_target, _reference, _border_mode);
Gian Marco37908d92017-11-07 14:38:22 +000083}
84TEST_SUITE_END()
85TEST_SUITE_END()
86TEST_SUITE_END()
87} // namespace validation
88} // namespace test
89} // namespace arm_compute