blob: fdfb225866a70a6c6cb4967cadaa6fb51460b8e4 [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/** Input data set. */
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +000051const auto NormalizationDatasetFP16 = combine(combine(combine(framework::dataset::make("NormType", { NormType::IN_MAP_1D, NormType::IN_MAP_2D, NormType::CROSS_MAP }),
52 framework::dataset::make("NormalizationSize", 3, 9, 2)),
Georgios Pinitas01624362017-11-30 10:53:31 +000053 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
54 framework::dataset::make("IsScaled", { true }));
55
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +000056const auto NormalizationDatasetFP32 = combine(combine(combine(framework::dataset::make("NormType", { NormType::IN_MAP_1D, NormType::IN_MAP_2D, NormType::CROSS_MAP }),
57 framework::dataset::make("NormalizationSize", 3, 9, 2)),
Georgios Pinitas41caa622017-11-16 14:37:08 +000058 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
59 framework::dataset::make("IsScaled", { true, false }));
Michele Di Giorgio6c928342017-06-22 16:55:57 +010060} // namespace
61
62TEST_SUITE(CL)
63TEST_SUITE(NormalizationLayer)
64
65//TODO(COMPMID-415): Missing configuration?
66
Georgios Pinitas30902ed2017-11-14 15:32:57 +000067// *INDENT-OFF*
68// clang-format off
69DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010070 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data type input/output
71 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
72 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Even normalization
73 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Non implemented IN_MAP_2D
74 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Window shrink
75 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000076 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010077 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
78 TensorInfo(TensorShape(27U, 11U, 2U), 1, DataType::F32),
79 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
80 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
81 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
82 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000083 })),
84 framework::dataset::make("NormInfo", { NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
85 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
86 NormalizationLayerInfo(NormType::IN_MAP_1D, 4),
87 NormalizationLayerInfo(NormType::IN_MAP_2D, 5),
88 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
Giorgio Arenac23b6332017-11-28 15:23:51 +000089 NormalizationLayerInfo(NormType::CROSS_MAP, 5),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000090 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010091 framework::dataset::make("Expected", { false, false, false, false, false, true })),
Georgios Pinitas30902ed2017-11-14 15:32:57 +000092 input_info, output_info, norm_info, expected)
93{
Giorgio Arenac23b6332017-11-28 15:23:51 +000094 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 +000095}
96// clang-format on
97// *INDENT-ON*
98
Michele Di Giorgio6c928342017-06-22 16:55:57 +010099template <typename T>
100using CLNormalizationLayerFixture = NormalizationValidationFixture<CLTensor, CLAccessor, CLNormalizationLayer, T>;
101
102TEST_SUITE(Float)
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100103TEST_SUITE(FP16)
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000104FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallShapes(), NormalizationDatasetFP16),
105 framework::dataset::make("DataType", DataType::F16)),
106 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100107{
108 // Validate output
109 validate(CLAccessor(_target), _reference, tolerance_f16);
110}
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000111FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeShapes(), NormalizationDatasetFP16),
112 framework::dataset::make("DataType", DataType::F16)),
113 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100114{
115 // Validate output
116 validate(CLAccessor(_target), _reference, tolerance_f16);
117}
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100118TEST_SUITE_END() // FP16
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100119
120TEST_SUITE(FP32)
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000121FIXTURE_DATA_TEST_CASE(RunSmall, CLNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallShapes(), NormalizationDatasetFP32),
122 framework::dataset::make("DataType", DataType::F32)),
123 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100124{
125 // Validate output
126 validate(CLAccessor(_target), _reference, tolerance_f32);
127}
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000128FIXTURE_DATA_TEST_CASE(RunLarge, CLNormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeShapes(), NormalizationDatasetFP32),
129 framework::dataset::make("DataType", DataType::F32)),
130 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100131{
132 // Validate output
133 validate(CLAccessor(_target), _reference, tolerance_f32);
134}
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100135TEST_SUITE_END() // FP32
136TEST_SUITE_END() // Float
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100137
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100138TEST_SUITE_END() // NormalizationLayer
139TEST_SUITE_END() // CL
Michele Di Giorgio6c928342017-06-22 16:55:57 +0100140} // namespace validation
141} // namespace test
142} // namespace arm_compute