blob: 255a68df05ad8438021630b8969c1d6d26b7b139 [file] [log] [blame]
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +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/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 Szabo5edbd1c2017-11-13 13:34:08 +000047#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Gian Marco Iodice32963c62018-08-24 10:55:34 +010048constexpr AbsoluteTolerance<float> tolerance_f16(0.1f);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000049#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer6106a4d2017-08-02 09:42:27 +010050constexpr AbsoluteTolerance<float> tolerance_f32(0.00001f);
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010051
52/** Input data set. */
Georgios Pinitas41caa622017-11-16 14:37:08 +000053const auto NormalizationDataset = combine(combine(combine(combine(datasets::SmallShapes(), datasets::NormalizationTypes()), framework::dataset::make("NormalizationSize", 3, 9, 2)),
54 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
55 framework::dataset::make("IsScaled", { true }));
Georgios Pinitas7f32d012018-10-11 18:41:19 +010056const auto NormalizationDatasetFP32 = combine(combine(combine(datasets::NormalizationTypes(), framework::dataset::make("NormalizationSize", 3, 9, 2)),
Georgios Pinitas41caa622017-11-16 14:37:08 +000057 framework::dataset::make("Beta", { 0.5f, 1.f, 2.f })),
58 framework::dataset::make("IsScaled", { true, false }));
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +010059} // namespace
60
61TEST_SUITE(NEON)
62TEST_SUITE(NormalizationLayer)
63
Michalis Spyrouafa5d812017-11-30 14:25:57 +000064// *INDENT-OFF*
65// clang-format off
66DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010067 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data type input/output
68 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
69 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Even normalization
70 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Non implemented IN_MAP_2D
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010071 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Michalis Spyrouafa5d812017-11-30 14:25:57 +000072 }),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010073 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
74 TensorInfo(TensorShape(27U, 11U, 2U), 1, DataType::F32),
75 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
76 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010077 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Michalis Spyrouafa5d812017-11-30 14:25:57 +000078 })),
79 framework::dataset::make("NormInfo", { NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
80 NormalizationLayerInfo(NormType::IN_MAP_1D, 5),
81 NormalizationLayerInfo(NormType::IN_MAP_1D, 4),
82 NormalizationLayerInfo(NormType::IN_MAP_2D, 5),
Michalis Spyrouafa5d812017-11-30 14:25:57 +000083 NormalizationLayerInfo(NormType::CROSS_MAP, 1),
84 })),
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +010085 framework::dataset::make("Expected", { false, false, false, true, true })),
Michalis Spyrouafa5d812017-11-30 14:25:57 +000086 input_info, output_info, norm_info, expected)
87{
88 bool is_valid = bool(NENormalizationLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), norm_info));
89 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
90}
91// clang-format on
92// *INDENT-ON*
93
Manuel Bottinif2c714b2020-06-15 16:50:35 +010094DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F32)),
95 shape, data_type)
96{
97 NormalizationLayerInfo info(NormType::IN_MAP_1D, 3U, 5.0f, 2.0f, 1.f, false);
98
99 // Create tensors
100 Tensor src = create_tensor<Tensor>(shape, data_type);
101 Tensor dst = create_tensor<Tensor>(shape, data_type);
102
103 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
104 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
105
106 // Create and configure function
107 NENormalizationLayer norm;
108 norm.configure(&src, &dst, info);
109
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100110 validate(src.info()->padding(), PaddingSize(0, 0, 0, 0));
Manuel Bottinif2c714b2020-06-15 16:50:35 +0100111}
112
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100113template <typename T>
114using NENormalizationLayerFixture = NormalizationValidationFixture<Tensor, Accessor, NENormalizationLayer, T>;
115
116TEST_SUITE(Float)
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000117#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100118TEST_SUITE(FP16)
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000119FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(NormalizationDataset,
120 framework::dataset::make("DataType", DataType::F16)),
Michalis Spyrou0c71d0b2018-11-22 11:22:18 +0000121 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100122{
123 // Validate output
124 validate(Accessor(_target), _reference, tolerance_f16);
125}
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000126FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(NormalizationDataset,
127 framework::dataset::make("DataType", DataType::F16)),
Michalis Spyrou0c71d0b2018-11-22 11:22:18 +0000128 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100129{
130 // Validate output
131 validate(Accessor(_target), _reference, tolerance_f16);
132}
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100133TEST_SUITE_END() // FP16
134#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100135
136TEST_SUITE(FP32)
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000137FIXTURE_DATA_TEST_CASE(RunSmall, NENormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallShapes(), NormalizationDatasetFP32),
138 framework::dataset::make("DataType", DataType::F32)),
Michalis Spyrou0c71d0b2018-11-22 11:22:18 +0000139 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100140{
141 // Validate output
142 validate(Accessor(_target), _reference, tolerance_f32);
143}
Michele Di Giorgio9d3a8312018-11-20 12:31:24 +0000144FIXTURE_DATA_TEST_CASE(RunLarge, NENormalizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeShapes(), NormalizationDatasetFP32),
145 framework::dataset::make("DataType", DataType::F32)),
Michalis Spyrou0c71d0b2018-11-22 11:22:18 +0000146 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100147{
148 // Validate output
149 validate(Accessor(_target), _reference, tolerance_f32);
150}
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100151TEST_SUITE_END() // FP32
152TEST_SUITE_END() // Float
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100153
Georgios Pinitas7f32d012018-10-11 18:41:19 +0100154TEST_SUITE_END() // NormalizationLayer
155TEST_SUITE_END() // NEON
Moritz Pflanzer6db73ce2017-07-19 10:18:42 +0100156} // namespace validation
157} // namespace test
158} // namespace arm_compute