blob: 1a029cf92499618a5c74b82208e147de45f4f3b2 [file] [log] [blame]
Michele Di Giorgio6c928342017-06-22 16:55:57 +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/CL/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLNormalizationLayer.h"
Michele Di Giorgio6c928342017-06-22 16:55:57 +010028#include "tests/CL/CLAccessor.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"
37#include "tests/validation/half.h"
Michele Di Giorgio6c928342017-06-22 16:55:57 +010038
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
47/** Tolerance for float operations */
steniu013e05e4e2017-08-25 17:18:01 +010048RelativeTolerance<half_float::half> tolerance_f16(half_float::half(0.2));
49RelativeTolerance<float> tolerance_f32(0.05f);
50
Michele Di Giorgio6c928342017-06-22 16:55:57 +010051/** Tolerance for fixed point operations */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010052constexpr AbsoluteTolerance<int8_t> tolerance_qs8(2);
Georgios Pinitas8b3b5fa2017-09-18 13:49:01 +010053constexpr AbsoluteTolerance<int16_t> tolerance_qs16(3);
Michele Di Giorgio6c928342017-06-22 16:55:57 +010054
55/** Input data set. */
56const auto NormalizationDataset = combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("NormType", { NormType::IN_MAP_1D, NormType::CROSS_MAP })),
57 framework::dataset::make("NormalizationSize", 3, 9, 2)),
58 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f }));
59} // namespace
60
61TEST_SUITE(CL)
62TEST_SUITE(NormalizationLayer)
63
64//TODO(COMPMID-415): Missing configuration?
65
66template <typename T>
67using CLNormalizationLayerFixture = NormalizationValidationFixture<CLTensor, CLAccessor, CLNormalizationLayer, T>;
68
69TEST_SUITE(Float)
Michele Di Giorgio6c928342017-06-22 16:55:57 +010070TEST_SUITE(FP16)
71FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixture<half_float::half>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
72{
73 // Validate output
74 validate(CLAccessor(_target), _reference, tolerance_f16);
75}
76FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixture<half_float::half>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F16)))
77{
78 // Validate output
79 validate(CLAccessor(_target), _reference, tolerance_f16);
80}
81TEST_SUITE_END()
Michele Di Giorgio6c928342017-06-22 16:55:57 +010082
83TEST_SUITE(FP32)
84FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F32)))
85{
86 // Validate output
87 validate(CLAccessor(_target), _reference, tolerance_f32);
88}
89FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(NormalizationDataset, framework::dataset::make("DataType", DataType::F32)))
90{
91 // Validate output
92 validate(CLAccessor(_target), _reference, tolerance_f32);
93}
94TEST_SUITE_END()
95TEST_SUITE_END()
96
97template <typename T>
98using CLNormalizationLayerFixedPointFixture = NormalizationValidationFixedPointFixture<CLTensor, CLAccessor, CLNormalizationLayer, T>;
99
100TEST_SUITE(Quantized)
101TEST_SUITE(QS8)
102// Testing for fixed point position [1,6) as reciprocal limits the maximum fixed point position to 5
103FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
104 DataType::QS8)),
105 framework::dataset::make("FractionalBits", 1, 6)))
106{
107 // Validate output
108 validate(CLAccessor(_target), _reference, tolerance_qs8);
109}
110FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
111 DataType::QS8)),
112 framework::dataset::make("FractionalBits", 1, 6)))
113{
114 // Validate output
115 validate(CLAccessor(_target), _reference, tolerance_qs8);
116}
117TEST_SUITE_END()
118
119TEST_SUITE(QS16)
120// Testing for fixed point position [1,14) as reciprocal limits the maximum fixed point position to 5
121FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
122 DataType::QS16)),
123 framework::dataset::make("FractionalBits", 1, 14)))
124{
125 // Validate output
126 validate(CLAccessor(_target), _reference, tolerance_qs16);
127}
128FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
129 DataType::QS16)),
130 framework::dataset::make("FractionalBits", 1, 14)))
131{
132 // Validate output
133 validate(CLAccessor(_target), _reference, tolerance_qs16);
134}
135TEST_SUITE_END()
136TEST_SUITE_END()
137
138TEST_SUITE_END()
139TEST_SUITE_END()
140} // namespace validation
141} // namespace test
142} // namespace arm_compute