blob: 2bc26810d58c8e7b4ab38e53699f0afaa1d9d74f [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"
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 Szabo33fd07b2017-10-26 15:42:24 +010047#ifdef ARM_COMPUTE_AARCH64_V8_2
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010048constexpr AbsoluteTolerance<float> tolerance_f16(0.001f);
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010049#endif /* ARM_COMPUTE_AARCH64_V8_2 */
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. */
56const auto NormalizationDataset = combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()), framework::dataset::make("NormalizationSize", 3, 9, 2)),
57 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f }));
58} // namespace
59
60TEST_SUITE(NEON)
61TEST_SUITE(NormalizationLayer)
62
63//TODO(COMPMID-415): Missing configuration?
64
65template <typename T>
66using NENormalizationLayerFixture = NormalizationValidationFixture<Tensor, Accessor, NENormalizationLayer, T>;
67
68TEST_SUITE(Float)
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010069#ifdef ARM_COMPUTE_AARCH64_V8_2
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010070TEST_SUITE(FP16)
Georgios Pinitas583137c2017-08-31 18:12:42 +010071FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010072{
73 // Validate output
74 validate(Accessor(_target), _reference, tolerance_f16);
75}
Georgios Pinitas583137c2017-08-31 18:12:42 +010076FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010077{
78 // Validate output
79 validate(Accessor(_target), _reference, tolerance_f16);
80}
81TEST_SUITE_END()
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010082#endif /* ARM_COMPUTE_AARCH64_V8_2 */
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010083
84TEST_SUITE(FP32)
85FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F32)))
86{
87 // Validate output
88 validate(Accessor(_target), _reference, tolerance_f32);
89}
90FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F32)))
91{
92 // Validate output
93 validate(Accessor(_target), _reference, tolerance_f32);
94}
95TEST_SUITE_END()
96TEST_SUITE_END()
97
98template <typename T>
99using NENormalizationLayerFixedPointFixture = NormalizationValidationFixedPointFixture<Tensor, Accessor, NENormalizationLayer, T>;
100
101TEST_SUITE(Quantized)
102TEST_SUITE(QS8)
103// Testing for fixed point position [1,6) as reciprocal limits the maximum fixed point position to 5
104FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
105 DataType::QS8)),
106 framework::dataset::make("FractionalBits", 1, 6)))
107{
108 // Validate output
109 validate(Accessor(_target), _reference, tolerance_qs8);
110}
111FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
112 DataType::QS8)),
113 framework::dataset::make("FractionalBits", 1, 6)))
114{
115 // Validate output
116 validate(Accessor(_target), _reference, tolerance_qs8);
117}
118TEST_SUITE_END()
Michele Di Giorgiod5e65c72017-07-26 17:09:17 +0100119
120TEST_SUITE(QS16)
121// Testing for fixed point position [1,14) as reciprocal limits the maximum fixed point position to 14
122FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
123 DataType::QS16)),
124 framework::dataset::make("FractionalBits", 1, 14)))
125{
126 // Validate output
127 validate(Accessor(_target), _reference, tolerance_qs16);
128}
129FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
130 DataType::QS16)),
131 framework::dataset::make("FractionalBits", 1, 14)))
132{
133 // Validate output
134 validate(Accessor(_target), _reference, tolerance_qs16);
135}
136TEST_SUITE_END()
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100137TEST_SUITE_END()
138
139TEST_SUITE_END()
140TEST_SUITE_END()
141} // namespace validation
142} // namespace test
143} // namespace arm_compute