blob: ce5360b2cf923211ed96e57112aada7e359bfbfa [file] [log] [blame]
Isabella Gottardi83be7452017-08-29 13:47:03 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2019 Arm Limited.
Isabella Gottardi83be7452017-08-29 13:47:03 +01003 *
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/NEWarpAffine.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/AssetsLibrary.h"
29#include "tests/NEON/Accessor.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/BorderModeDataset.h"
32#include "tests/datasets/InterpolationPolicyDataset.h"
33#include "tests/datasets/ShapeDatasets.h"
34#include "tests/framework/Asserts.h"
35#include "tests/framework/Macros.h"
36#include "tests/framework/datasets/Datasets.h"
Isabella Gottardi83be7452017-08-29 13:47:03 +010037#include "tests/validation/Validation.h"
38#include "tests/validation/fixtures/WarpAffineFixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000039#include "tests/validation/reference/Utils.h"
Isabella Gottardi83be7452017-08-29 13:47:03 +010040
41namespace arm_compute
42{
43namespace test
44{
45namespace validation
46{
47namespace
48{
49/** Tolerance */
50constexpr AbsoluteTolerance<uint8_t> tolerance(1);
51} // namespace
52
53TEST_SUITE(NEON)
54TEST_SUITE(WarpAffine)
55
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +000056DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::U8)),
Isabella Gottardi83be7452017-08-29 13:47:03 +010057 framework::dataset::make("InterpolationPolicy", { InterpolationPolicy::NEAREST_NEIGHBOR, InterpolationPolicy::BILINEAR })),
58 datasets::BorderModes()),
59 shape, data_type, policy, border_mode)
60{
61 // Generate a random constant value if border_mode is constant
62 std::mt19937 gen(library->seed());
63 std::uniform_int_distribution<uint8_t> distribution_u8(0, 255);
64 uint8_t constant_border_value = distribution_u8(gen);
65
66 // Create the matrix
Pablo Tellod8b03dd2018-08-07 11:23:54 +010067 std::array<float, 9> matrix{ {} };
68 fill_warp_matrix<9>(matrix);
Isabella Gottardi83be7452017-08-29 13:47:03 +010069
70 // Create tensors
71 Tensor src = create_tensor<Tensor>(shape, data_type);
72 Tensor dst = create_tensor<Tensor>(shape, data_type);
73
74 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
75 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
76
77 // Create and configure function
78 NEWarpAffine warp_affine;
Pablo Tellod8b03dd2018-08-07 11:23:54 +010079 warp_affine.configure(&src, &dst, matrix, policy, border_mode, constant_border_value);
Isabella Gottardi83be7452017-08-29 13:47:03 +010080
81 // Validate valid region
82 const ValidRegion valid_region = shape_to_valid_region(shape);
83
84 validate(dst.info()->valid_region(), valid_region);
85
86 // Validate padding
87 PaddingCalculator calculator(shape.x(), 1);
88 calculator.set_border_mode(border_mode);
89 calculator.set_border_size(1);
90
91 const PaddingSize read_padding(1);
92 const PaddingSize write_padding = calculator.required_padding();
93
94 validate(src.info()->padding(), read_padding);
95 validate(dst.info()->padding(), write_padding);
96}
97
98template <typename T>
99using NEWarpAffineFixture = WarpAffineValidationFixture<Tensor, Accessor, NEWarpAffine, T>;
100
101FIXTURE_DATA_TEST_CASE(RunSmall, NEWarpAffineFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::U8)),
102 framework::dataset::make("InterpolationPolicy", { InterpolationPolicy::NEAREST_NEIGHBOR, InterpolationPolicy::BILINEAR })),
103 datasets::BorderModes()))
104{
105 // Validate output
106 validate(Accessor(_target), _reference, _valid_mask, tolerance, 0.02f);
107}
Isabella Gottardiecfd4d32017-10-03 17:39:02 +0100108DISABLED_FIXTURE_DATA_TEST_CASE(RunLarge, NEWarpAffineFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeShapes(), framework::dataset::make("DataType",
109 DataType::U8)),
110 framework::dataset::make("InterpolationPolicy", { InterpolationPolicy::NEAREST_NEIGHBOR, InterpolationPolicy::BILINEAR })),
111 datasets::BorderModes()))
Isabella Gottardi83be7452017-08-29 13:47:03 +0100112{
113 // Validate output
114 validate(Accessor(_target), _reference, _valid_mask, tolerance, 0.02f);
115}
116
117TEST_SUITE_END()
118TEST_SUITE_END()
119} // namespace validation
120} // namespace test
121} // namespace arm_compute