blob: df7166bfdcfa5ab97b3729b3b3416b0846fce1d0 [file] [log] [blame]
George Wort05398a92019-01-25 15:38:33 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2019-2021 Arm Limited.
George Wort05398a92019-01-25 15:38:33 +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/NECropResize.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28
29#include "tests/NEON/Accessor.h"
30#include "tests/datasets/CropResizeDataset.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/CropResizeFixture.h"
36
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43TEST_SUITE(NEON)
44TEST_SUITE(CropResize)
45
46RelativeTolerance<float> tolerance_fp32(0.001f);
47
48template <typename T>
49using NECropResizeFixture = CropResizeFixture<Tensor, Accessor, NECropResize, T>;
50
51// *INDENT-OFF*
52// clang-format off
53DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
54 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(15U, 30U, 40U, 10U), 1, DataType::S32),
George Wort05398a92019-01-25 15:38:33 +000055 TensorInfo(TensorShape(15U, 30U, 40U, 10U), 1, DataType::S32), // Invalid box_ind shape.
56 TensorInfo(TensorShape(15U, 30U, 40U, 10U), 1, DataType::S32), // Invalid output shape.
57 TensorInfo(TensorShape(15U, 30U, 40U, 10U), 1, DataType::S32), // Invalid output data type.
58 TensorInfo(TensorShape(15U, 30U, 40U, 10U), 1, DataType::S32), // Invalid output shape.
59 TensorInfo(TensorShape(15U, 30U, 40U, 10U), 1, DataType::S32), // Invalid boxes shape.
60 }),
61 framework::dataset::make("BoxesInfo",{ TensorInfo(TensorShape(4, 20), 1, DataType::F32),
62 TensorInfo(TensorShape(4, 20), 1, DataType::F32),
63 TensorInfo(TensorShape(4, 20), 1, DataType::F32),
64 TensorInfo(TensorShape(4, 20), 1, DataType::F32),
65 TensorInfo(TensorShape(4, 20), 1, DataType::F32),
George Wort05398a92019-01-25 15:38:33 +000066 TensorInfo(TensorShape(3, 20), 1, DataType::F32),
67 })),
68 framework::dataset::make("BoxIndInfo",{ TensorInfo(TensorShape(20), 1, DataType::S32),
George Wort05398a92019-01-25 15:38:33 +000069 TensorInfo(TensorShape(10), 1, DataType::S32),
70 TensorInfo(TensorShape(20), 1, DataType::S32),
71 TensorInfo(TensorShape(20), 1, DataType::S32),
72 TensorInfo(TensorShape(20), 1, DataType::S32),
73 TensorInfo(TensorShape(20), 1, DataType::S32),
74 })),
75 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(15U, 5, 5, 20U), 1, DataType::F32),
76 TensorInfo(TensorShape(15U, 5, 5, 20U), 1, DataType::F32),
George Wort05398a92019-01-25 15:38:33 +000077 TensorInfo(TensorShape(15U, 5, 5, 10U), 1, DataType::F32),
78 TensorInfo(TensorShape(15U, 5, 5, 20U), 1, DataType::S32),
79 TensorInfo(TensorShape(5U, 5, 5, 20U), 1, DataType::F32),
80 TensorInfo(TensorShape(15U, 5, 5, 20U), 1, DataType::F32),
81 })),
Michele Di Giorgio17101332020-06-01 12:07:50 +010082 framework::dataset::make("Expected", { true, false, false, false, false, false})),
George Wort05398a92019-01-25 15:38:33 +000083 input, boxes, box_ind, output, expected)
84{
85 ARM_COMPUTE_EXPECT(bool(NECropResize::validate(&input.clone()->set_data_layout(DataLayout::NHWC).set_is_resizable(false),
86 &boxes.clone()->set_is_resizable(false),
87 &box_ind.clone()->set_is_resizable(false),
88 &output.clone()->set_data_layout(DataLayout::NHWC).set_is_resizable(false),
89 Coordinates2D{ 5, 5 }, InterpolationPolicy::BILINEAR, 100)) == expected, framework::LogLevel::ERRORS);
90}
91// clang-format on
92// *INDENT-ON*
93
94TEST_SUITE(Float)
95#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
96TEST_SUITE(F16)
97FIXTURE_DATA_TEST_CASE(RunSmall,
98 NECropResizeFixture<half>,
Michele Di Giorgio17101332020-06-01 12:07:50 +010099 framework::DatasetMode::ALL,
George Wort05398a92019-01-25 15:38:33 +0000100 combine(datasets::SmallCropResizeDataset(),
101 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
102 framework::dataset::make("DataType", DataType::F16))))
103{
104 // Validate output
105 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
106}
107TEST_SUITE_END() // F16
108#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
109
110TEST_SUITE(F32)
111FIXTURE_DATA_TEST_CASE(RunSmall,
112 NECropResizeFixture<float>,
Michele Di Giorgio17101332020-06-01 12:07:50 +0100113 framework::DatasetMode::ALL,
George Wort05398a92019-01-25 15:38:33 +0000114 combine(datasets::SmallCropResizeDataset(),
115 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
116 framework::dataset::make("DataType", DataType::F32))))
117{
118 // Validate output
119 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
120}
121TEST_SUITE_END() // F32
122TEST_SUITE_END() // Float
123
Michele Di Giorgio17101332020-06-01 12:07:50 +0100124TEST_SUITE(U8)
125FIXTURE_DATA_TEST_CASE(RunSmall,
126 NECropResizeFixture<uint8_t>,
127 framework::DatasetMode::ALL,
128 combine(datasets::SmallCropResizeDataset(),
129 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
130 framework::dataset::make("DataType", DataType::U8))))
131{
132 // Validate output
133 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
134}
135TEST_SUITE_END() // U8
136
George Wort05398a92019-01-25 15:38:33 +0000137TEST_SUITE(U16)
138FIXTURE_DATA_TEST_CASE(RunSmall,
139 NECropResizeFixture<uint16_t>,
Michele Di Giorgio17101332020-06-01 12:07:50 +0100140 framework::DatasetMode::ALL,
George Wort05398a92019-01-25 15:38:33 +0000141 combine(datasets::SmallCropResizeDataset(),
142 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
143 framework::dataset::make("DataType", DataType::U16))))
144{
145 // Validate output
146 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
147}
148TEST_SUITE_END() // U16
149
150TEST_SUITE(S16)
151FIXTURE_DATA_TEST_CASE(RunSmall,
152 NECropResizeFixture<int16_t>,
153 framework::DatasetMode::PRECOMMIT,
154 combine(datasets::SmallCropResizeDataset(),
155 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
156 framework::dataset::make("DataType", DataType::S16))))
157{
158 // Validate output
159 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
160}
161TEST_SUITE_END() // S16
162
163TEST_SUITE(U32)
164FIXTURE_DATA_TEST_CASE(RunSmall,
165 NECropResizeFixture<uint32_t>,
166 framework::DatasetMode::PRECOMMIT,
167 combine(datasets::SmallCropResizeDataset(),
168 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
169 framework::dataset::make("DataType", DataType::U32))))
170{
171 // Validate output
172 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
173}
174TEST_SUITE_END() // U32
175
176TEST_SUITE(S32)
177FIXTURE_DATA_TEST_CASE(RunSmall,
178 NECropResizeFixture<int32_t>,
179 framework::DatasetMode::PRECOMMIT,
180 combine(datasets::SmallCropResizeDataset(),
181 combine(framework::dataset::make("IsOutOfBounds", { true, false }),
182 framework::dataset::make("DataType", DataType::S32))))
183{
184 // Validate output
185 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
186}
187TEST_SUITE_END() // S32
188
189TEST_SUITE_END() // CropResize
Sheri Zhangac6499a2021-02-10 15:32:38 +0000190TEST_SUITE_END() // Neon
George Wort05398a92019-01-25 15:38:33 +0000191} // namespace validation
192} // namespace test
193} // namespace arm_compute