blob: 1da2ed0874a15cc00443e6503828afa5dc67c673 [file] [log] [blame]
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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"
28#include "framework/Asserts.h"
29#include "framework/Macros.h"
30#include "framework/datasets/Datasets.h"
31#include "tests/NEON/Accessor.h"
32#include "tests/PaddingCalculator.h"
33#include "tests/datasets_new/NormalizationTypesDataset.h"
34#include "tests/datasets_new/ShapeDatasets.h"
35#include "tests/validation_new/Validation.h"
36#include "tests/validation_new/fixtures/NormalizationLayerFixture.h"
37#include "tests/validation_new/half.h"
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
47/** Tolerance for float operations */
48#ifdef ARM_COMPUTE_ENABLE_FP16
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010049constexpr AbsoluteTolerance<float> tolerance_f16(0.001f);
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010050#endif /* ARM_COMPUTE_ENABLE_FP16 */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010051constexpr AbsoluteTolerance<float> tolerance_f32(0.00001f);
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010052/** Tolerance for fixed point operations */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010053constexpr AbsoluteTolerance<int8_t> tolerance_qs8(2);
54constexpr AbsoluteTolerance<int16_t> tolerance_qs16(3);
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010055
56/** Input data set. */
57const auto NormalizationDataset = combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()), framework::dataset::make("NormalizationSize", 3, 9, 2)),
58 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f }));
59} // namespace
60
61TEST_SUITE(NEON)
62TEST_SUITE(NormalizationLayer)
63
64//TODO(COMPMID-415): Missing configuration?
65
66template <typename T>
67using NENormalizationLayerFixture = NormalizationValidationFixture<Tensor, Accessor, NENormalizationLayer, T>;
68
69TEST_SUITE(Float)
70#ifdef ARM_COMPUTE_ENABLE_FP16
71TEST_SUITE(FP16)
72FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<half_float::half>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
73{
74 // Validate output
75 validate(Accessor(_target), _reference, tolerance_f16);
76}
77FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<half_float::half>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
78{
79 // Validate output
80 validate(Accessor(_target), _reference, tolerance_f16);
81}
82TEST_SUITE_END()
83#endif /* ARM_COMPUTE_ENABLE_FP16 */
84
85TEST_SUITE(FP32)
86FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F32)))
87{
88 // Validate output
89 validate(Accessor(_target), _reference, tolerance_f32);
90}
91FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F32)))
92{
93 // Validate output
94 validate(Accessor(_target), _reference, tolerance_f32);
95}
96TEST_SUITE_END()
97TEST_SUITE_END()
98
99template <typename T>
100using NENormalizationLayerFixedPointFixture = NormalizationValidationFixedPointFixture<Tensor, Accessor, NENormalizationLayer, T>;
101
102TEST_SUITE(Quantized)
103TEST_SUITE(QS8)
104// Testing for fixed point position [1,6) as reciprocal limits the maximum fixed point position to 5
105FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
106 DataType::QS8)),
107 framework::dataset::make("FractionalBits", 1, 6)))
108{
109 // Validate output
110 validate(Accessor(_target), _reference, tolerance_qs8);
111}
112FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
113 DataType::QS8)),
114 framework::dataset::make("FractionalBits", 1, 6)))
115{
116 // Validate output
117 validate(Accessor(_target), _reference, tolerance_qs8);
118}
119TEST_SUITE_END()
Michele Di Giorgiod5e65c72017-07-26 17:09:17 +0100120
121TEST_SUITE(QS16)
122// Testing for fixed point position [1,14) as reciprocal limits the maximum fixed point position to 14
123FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
124 DataType::QS16)),
125 framework::dataset::make("FractionalBits", 1, 14)))
126{
127 // Validate output
128 validate(Accessor(_target), _reference, tolerance_qs16);
129}
130FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
131 DataType::QS16)),
132 framework::dataset::make("FractionalBits", 1, 14)))
133{
134 // Validate output
135 validate(Accessor(_target), _reference, tolerance_qs16);
136}
137TEST_SUITE_END()
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100138TEST_SUITE_END()
139
140TEST_SUITE_END()
141TEST_SUITE_END()
142} // namespace validation
143} // namespace test
144} // namespace arm_compute