blob: cf63675246005bb24e578e5a613a26d24b8d84e3 [file] [log] [blame]
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +01001/*
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +00002 * Copyright (c) 2017-2018 ARM Limited.
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +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/NENormalizationLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010028#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/datasets/NormalizationTypesDataset.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"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/NormalizationLayerFixture.h"
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010037
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46/** Tolerance for float operations */
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000047#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010048constexpr AbsoluteTolerance<float> tolerance_f16(0.001f);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000049#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010050constexpr AbsoluteTolerance<float> tolerance_f32(0.00001f);
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010051/** Tolerance for fixed point operations */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010052constexpr AbsoluteTolerance<int8_t> tolerance_qs8(2);
Moritz Pflanzer578c8f52017-09-25 11:31:10 +010053constexpr AbsoluteTolerance<int16_t> tolerance_qs16(4);
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010054
55/** Input data set. */
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +000056const auto NormalizationDatasetQS = combine(combine(combine(combine(datasets::TinyShapes(), datasets::NormalizationTypes()), framework::dataset::make("NormalizationSize", 3, 9, 2)),
57 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
58 framework::dataset::make("IsScaled", { true }));
Georgios Pinitas41caa622017-11-16 14:37:08 +000059const auto NormalizationDataset = combine(combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()), framework::dataset::make("NormalizationSize", 3, 9, 2)),
60 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
61 framework::dataset::make("IsScaled", { true }));
62const auto NormalizationDatasetFP32 = combine(combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()), framework::dataset::make("NormalizationSize", 3, 9, 2)),
63 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
64 framework::dataset::make("IsScaled", { true, false }));
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010065} // namespace
66
67TEST_SUITE(NEON)
68TEST_SUITE(NormalizationLayer)
69
70//TODO(COMPMID-415): Missing configuration?
71
Michalis Spyrouafa5d812017-11-30 14:25:57 +000072// *INDENT-OFF*
73// clang-format off
74DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
75 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching data type input/output
76 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching shapes
77 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Even normalization
78 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Non implemented IN_MAP_2D
79 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QS8, 4), // Mismatching fixed point position
80 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Window shrink
81 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32, 0),
82 }),
83 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16, 0),
84 TensorInfo(TensorShape(27U, 11U, 2U), 1, DataType::F32, 0),
85 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
86 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
87 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QS8, 3),
88 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
89 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32, 0),
90 })),
91 framework::dataset::make("NormInfo", { NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
92 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
93 NormalizationLayerInfo(NormType::IN_MAP_1D, 4),
94 NormalizationLayerInfo(NormType::IN_MAP_2D, 5),
95 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
96 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
97 NormalizationLayerInfo(NormType::CROSS_MAP, 1),
98 })),
99 framework::dataset::make("Expected", { false, false, false, false, false, false, true })),
100 input_info, output_info, norm_info, expected)
101{
102 bool is_valid = bool(NENormalizationLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), norm_info));
103 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
104}
105// clang-format on
106// *INDENT-ON*
107
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100108template <typename T>
109using NENormalizationLayerFixture = NormalizationValidationFixture<Tensor, Accessor, NENormalizationLayer, T>;
110
111TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000112#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100113TEST_SUITE(FP16)
Georgios Pinitas583137c2017-08-31 18:12:42 +0100114FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100115{
116 // Validate output
117 validate(Accessor(_target), _reference, tolerance_f16);
118}
Georgios Pinitas583137c2017-08-31 18:12:42 +0100119FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100120{
121 // Validate output
122 validate(Accessor(_target), _reference, tolerance_f16);
123}
124TEST_SUITE_END()
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000125#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100126
127TEST_SUITE(FP32)
Georgios Pinitas41caa622017-11-16 14:37:08 +0000128FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDatasetFP32, framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100129{
130 // Validate output
131 validate(Accessor(_target), _reference, tolerance_f32);
132}
Georgios Pinitas41caa622017-11-16 14:37:08 +0000133FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(NormalizationDatasetFP32, framework::dataset::make("DataType", DataType::F32)))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100134{
135 // Validate output
136 validate(Accessor(_target), _reference, tolerance_f32);
137}
138TEST_SUITE_END()
139TEST_SUITE_END()
140
141template <typename T>
142using NENormalizationLayerFixedPointFixture = NormalizationValidationFixedPointFixture<Tensor, Accessor, NENormalizationLayer, T>;
143
144TEST_SUITE(Quantized)
145TEST_SUITE(QS8)
146// Testing for fixed point position [1,6) as reciprocal limits the maximum fixed point position to 5
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000147FIXTURE_DATA_TEST_CASE(RunTiny, NENormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDatasetQS, framework::dataset::make("DataType",
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100148 DataType::QS8)),
149 framework::dataset::make("FractionalBits", 1, 6)))
150{
151 // Validate output
152 validate(Accessor(_target), _reference, tolerance_qs8);
153}
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000154FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100155 DataType::QS8)),
156 framework::dataset::make("FractionalBits", 1, 6)))
157{
158 // Validate output
159 validate(Accessor(_target), _reference, tolerance_qs8);
160}
161TEST_SUITE_END()
Michele Di Giorgiod5e65c72017-07-26 17:09:17 +0100162
163TEST_SUITE(QS16)
164// Testing for fixed point position [1,14) as reciprocal limits the maximum fixed point position to 14
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000165FIXTURE_DATA_TEST_CASE(RunTiny, NENormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDatasetQS, framework::dataset::make("DataType",
Michele Di Giorgiod5e65c72017-07-26 17:09:17 +0100166 DataType::QS16)),
167 framework::dataset::make("FractionalBits", 1, 14)))
168{
169 // Validate output
170 validate(Accessor(_target), _reference, tolerance_qs16);
171}
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000172FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
Michele Di Giorgiod5e65c72017-07-26 17:09:17 +0100173 DataType::QS16)),
174 framework::dataset::make("FractionalBits", 1, 14)))
175{
176 // Validate output
177 validate(Accessor(_target), _reference, tolerance_qs16);
178}
179TEST_SUITE_END()
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100180TEST_SUITE_END()
181
182TEST_SUITE_END()
183TEST_SUITE_END()
184} // namespace validation
185} // namespace test
186} // namespace arm_compute