blob: c646b5011f128853719b05109d9d471a1c213a77 [file] [log] [blame]
Gian Marco37908d92017-11-07 14:38:22 +00001/*
Anthony Barbier77e4a2d2018-02-14 11:34:16 +00002 * Copyright (c) 2017-2018 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.
23*/
24#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
72DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, large_gaussian_pyramid_levels,
73 shape, border_mode, num_levels)
74{
75 Tensor src = create_tensor<Tensor>(shape, DataType::U8);
76
77 // Create pyramid
78 PyramidInfo pyramid_info(num_levels, SCALE_PYRAMID_HALF, shape, Format::U8);
79 Pyramid dst;
80 dst.init(pyramid_info);
81
82 NEGaussianPyramidHalf gaussian_pyramid_half;
83 gaussian_pyramid_half.configure(&src, &dst, border_mode, 0);
84
85 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
86
87 for(size_t level = 0; level < pyramid_info.num_levels(); ++level)
88 {
89 ARM_COMPUTE_EXPECT(dst.get_pyramid_level(level)->info()->is_resizable(), framework::LogLevel::ERRORS);
90 }
91}
92
93template <typename T>
94using NEGaussianPyramidHalfFixture = GaussianPyramidHalfValidationFixture<Tensor, Accessor, NEGaussianPyramidHalf, T, Pyramid>;
95
96FIXTURE_DATA_TEST_CASE(RunSmallGaussianPyramidHalf, NEGaussianPyramidHalfFixture<uint8_t>, framework::DatasetMode::ALL, small_gaussian_pyramid_levels)
97{
Sanghoon Lee1cd41492018-03-15 11:48:48 +000098 validate_gaussian_pyramid(_target, _reference, _border_mode);
Gian Marco37908d92017-11-07 14:38:22 +000099}
100
101FIXTURE_DATA_TEST_CASE(RunLargeGaussianPyramidHalf, NEGaussianPyramidHalfFixture<uint8_t>, framework::DatasetMode::NIGHTLY, large_gaussian_pyramid_levels)
102{
Sanghoon Lee1cd41492018-03-15 11:48:48 +0000103 validate_gaussian_pyramid(_target, _reference, _border_mode);
Gian Marco37908d92017-11-07 14:38:22 +0000104}
105TEST_SUITE_END()
106TEST_SUITE_END()
107TEST_SUITE_END()
108} // namespace validation
109} // namespace test
110} // namespace arm_compute