blob: a3db6e60bae57a3f63d5d35958fab37abb4676e7 [file] [log] [blame]
Michele Di Giorgio6c928342017-06-22 16:55:57 +01001/*
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +00002 * Copyright (c) 2017-2018 ARM Limited.
Michele Di Giorgio6c928342017-06-22 16:55:57 +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/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"
Michele Di Giorgio6c928342017-06-22 16:55:57 +010037
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46/** Tolerance for float operations */
Georgios Pinitas583137c2017-08-31 18:12:42 +010047RelativeTolerance<half> tolerance_f16(half(0.2));
48RelativeTolerance<float> tolerance_f32(0.05f);
steniu013e05e4e2017-08-25 17:18:01 +010049
Michele Di Giorgio6c928342017-06-22 16:55:57 +010050/** Tolerance for fixed point operations */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010051constexpr AbsoluteTolerance<int8_t> tolerance_qs8(2);
Georgios Pinitas01624362017-11-30 10:53:31 +000052constexpr AbsoluteTolerance<int16_t> tolerance_qs16(4);
Michele Di Giorgio6c928342017-06-22 16:55:57 +010053
54/** Input data set. */
Georgios Pinitas01624362017-11-30 10:53:31 +000055const auto NormalizationDataset = combine(combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()),
Georgios Pinitas41caa622017-11-16 14:37:08 +000056 framework::dataset::make("NormalizationSize", 3, 9, 2)),
57 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
58 framework::dataset::make("IsScaled", { true }));
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +000059const auto NormalizationDatasetQS = combine(combine(combine(combine(datasets::TinyShapes(), datasets::NormalizationTypes()),
60 framework::dataset::make("NormalizationSize", 3, 9, 2)),
61 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
62 framework::dataset::make("IsScaled", { true }));
Georgios Pinitas01624362017-11-30 10:53:31 +000063const auto NormalizationDatasetFP16 = combine(combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("NormType", { NormType::IN_MAP_1D, NormType::CROSS_MAP })),
64 framework::dataset::make("NormalizationSize", 3, 9, 2)),
65 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
66 framework::dataset::make("IsScaled", { true }));
67
68const auto NormalizationDatasetFP32 = combine(combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()),
Georgios Pinitas41caa622017-11-16 14:37:08 +000069 framework::dataset::make("NormalizationSize", 3, 9, 2)),
70 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
71 framework::dataset::make("IsScaled", { true, false }));
Michele Di Giorgio6c928342017-06-22 16:55:57 +010072} // namespace
73
74TEST_SUITE(CL)
75TEST_SUITE(NormalizationLayer)
76
77//TODO(COMPMID-415): Missing configuration?
78
Georgios Pinitas30902ed2017-11-14 15:32:57 +000079// *INDENT-OFF*
80// clang-format off
81DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
82 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching data type input/output
83 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Mismatching shapes
84 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Even normalization
85 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Non implemented IN_MAP_2D
86 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QS8, 4), // Mismatching fixed point position
Giorgio Arenac23b6332017-11-28 15:23:51 +000087 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0), // Window shrink
88 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32, 0),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000089 }),
90 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16, 0),
91 TensorInfo(TensorShape(27U, 11U, 2U), 1, DataType::F32, 0),
92 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
93 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
94 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::QS8, 3),
95 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32, 0),
Giorgio Arenac23b6332017-11-28 15:23:51 +000096 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32, 0),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000097 })),
98 framework::dataset::make("NormInfo", { NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
99 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
100 NormalizationLayerInfo(NormType::IN_MAP_1D, 4),
101 NormalizationLayerInfo(NormType::IN_MAP_2D, 5),
102 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
103 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
Giorgio Arenac23b6332017-11-28 15:23:51 +0000104 NormalizationLayerInfo(NormType::CROSS_MAP, 5),
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000105 })),
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000106 framework::dataset::make("Expected", { false, false, false, false, false, false, true })),
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000107 input_info, output_info, norm_info, expected)
108{
Giorgio Arenac23b6332017-11-28 15:23:51 +0000109 ARM_COMPUTE_EXPECT(bool(CLNormalizationLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), norm_info)) == expected, framework::LogLevel::ERRORS);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000110}
111// clang-format on
112// *INDENT-ON*
113
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100114template <typename T>
115using CLNormalizationLayerFixture = NormalizationValidationFixture<CLTensor, CLAccessor, CLNormalizationLayer, T>;
116
117TEST_SUITE(Float)
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100118TEST_SUITE(FP16)
Georgios Pinitas01624362017-11-30 10:53:31 +0000119FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDatasetFP16, framework::dataset::make("DataType", DataType::F16)))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100120{
121 // Validate output
122 validate(CLAccessor(_target), _reference, tolerance_f16);
123}
Georgios Pinitas01624362017-11-30 10:53:31 +0000124FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(NormalizationDatasetFP16, framework::dataset::make("DataType", DataType::F16)))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100125{
126 // Validate output
127 validate(CLAccessor(_target), _reference, tolerance_f16);
128}
129TEST_SUITE_END()
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100130
131TEST_SUITE(FP32)
Georgios Pinitas41caa622017-11-16 14:37:08 +0000132FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(NormalizationDatasetFP32, framework::dataset::make("DataType", DataType::F32)))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100133{
134 // Validate output
135 validate(CLAccessor(_target), _reference, tolerance_f32);
136}
Georgios Pinitas41caa622017-11-16 14:37:08 +0000137FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(NormalizationDatasetFP32, framework::dataset::make("DataType", DataType::F32)))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100138{
139 // Validate output
140 validate(CLAccessor(_target), _reference, tolerance_f32);
141}
142TEST_SUITE_END()
143TEST_SUITE_END()
144
145template <typename T>
146using CLNormalizationLayerFixedPointFixture = NormalizationValidationFixedPointFixture<CLTensor, CLAccessor, CLNormalizationLayer, T>;
147
148TEST_SUITE(Quantized)
149TEST_SUITE(QS8)
150// Testing for fixed point position [1,6) as reciprocal limits the maximum fixed point position to 5
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000151FIXTURE_DATA_TEST_CASE(RunTiny, CLNormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDatasetQS, framework::dataset::make("DataType",
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100152 DataType::QS8)),
153 framework::dataset::make("FractionalBits", 1, 6)))
154{
155 // Validate output
156 validate(CLAccessor(_target), _reference, tolerance_qs8);
157}
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000158FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixedPointFixture<int8_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100159 DataType::QS8)),
160 framework::dataset::make("FractionalBits", 1, 6)))
161{
162 // Validate output
163 validate(CLAccessor(_target), _reference, tolerance_qs8);
164}
165TEST_SUITE_END()
166
167TEST_SUITE(QS16)
168// Testing for fixed point position [1,14) as reciprocal limits the maximum fixed point position to 5
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000169FIXTURE_DATA_TEST_CASE(RunTiny, CLNormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDatasetQS, framework::dataset::make("DataType",
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100170 DataType::QS16)),
171 framework::dataset::make("FractionalBits", 1, 14)))
172{
173 // Validate output
174 validate(CLAccessor(_target), _reference, tolerance_qs16);
175}
Anthony Barbier1c0d0ff2018-01-31 13:05:09 +0000176FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixedPointFixture<int16_t>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset, framework::dataset::make("DataType",
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100177 DataType::QS16)),
178 framework::dataset::make("FractionalBits", 1, 14)))
179{
180 // Validate output
181 validate(CLAccessor(_target), _reference, tolerance_qs16);
182}
183TEST_SUITE_END()
184TEST_SUITE_END()
185
186TEST_SUITE_END()
187TEST_SUITE_END()
188} // namespace validation
189} // namespace test
190} // namespace arm_compute