blob: 9502df5ade60443b68a47b0399a712d177ee515d [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2019 Arm Limited.
Michalis Spyrou04f089c2017-08-08 17:42:38 +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"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000027#include "arm_compute/runtime/CL/functions/CLL2NormalizeLayer.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010028#include "tests/CL/CLAccessor.h"
29#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/datasets/ShapeDatasets.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000035#include "tests/validation/fixtures/L2NormalizeLayerFixture.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45/** Tolerance for float operations */
46constexpr AbsoluteTolerance<float> tolerance_f32(0.00001f);
Michalis Spyrou9f56efe2018-11-16 15:07:05 +000047constexpr AbsoluteTolerance<float> tolerance_f16(0.2f);
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +010048
Manuel Bottini4b5c5882019-05-14 10:38:30 +010049auto data = concat(combine(framework::dataset::make("DataLayout", { DataLayout::NCHW }), framework::dataset::make("Axis", { -1, 0, 2 })), combine(framework::dataset::make("DataLayout", { DataLayout::NHWC }),
50 framework::dataset::make("Axis", { -2, 2 })));
Michalis Spyrou04f089c2017-08-08 17:42:38 +010051
52} // namespace
53
54TEST_SUITE(CL)
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000055TEST_SUITE(L2NormalizeLayer)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010056
John Richardson62385bc2018-04-20 13:11:36 +010057// *INDENT-OFF*
58// clang-format off
59DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
60 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(128U, 64U), 1, DataType::F32), // Mismatching data type input/output
61 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32), // Mismatching shape input/output
62 TensorInfo(TensorShape(128U, 64U), 2, DataType::F32), // Number of Input channels != 1
63 TensorInfo(TensorShape(128U, 64U), 1, DataType::S16), // DataType != F32
Manuel Bottini4b5c5882019-05-14 10:38:30 +010064 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
65 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
66 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
John Richardson62385bc2018-04-20 13:11:36 +010067 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32)
68 }),
69 framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(128U, 64U), 1, DataType::F16),
70 TensorInfo(TensorShape(256U, 64U), 1, DataType::F32),
71 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
72 TensorInfo(TensorShape(128U, 64U), 1, DataType::S16),
73 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
74 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
Manuel Bottini4b5c5882019-05-14 10:38:30 +010075 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32),
John Richardson62385bc2018-04-20 13:11:36 +010076 TensorInfo(TensorShape(128U, 64U), 1, DataType::F32)
77 })),
Manuel Bottini4b5c5882019-05-14 10:38:30 +010078 framework::dataset::make("Axis", {
79 0,
80 0,
81 0,
82 0,
83 static_cast<int>(TensorShape::num_max_dimensions),
84 3,
85 -2,
86 0 })),
87 framework::dataset::make("Expected", { false, false, false, false, true, true, true, true })),
John Richardson62385bc2018-04-20 13:11:36 +010088 input_info, output_info, axis, expected)
89{
90 bool is_valid = bool(CLL2NormalizeLayer::validate(&input_info.clone()->set_is_resizable(false),
91 &output_info.clone()->set_is_resizable(false),
92 axis));
93 ARM_COMPUTE_EXPECT(is_valid == expected, framework::LogLevel::ERRORS);
94}
95// clang-format on
96// *INDENT-ON*
97
Michalis Spyrou04f089c2017-08-08 17:42:38 +010098template <typename T>
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000099using CLL2NormalizeLayerFixture = L2NormalizeLayerValidationFixture<CLTensor, CLAccessor, CLL2NormalizeLayer, T>;
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100100
101TEST_SUITE(Float)
102TEST_SUITE(FP32)
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000103FIXTURE_DATA_TEST_CASE(RunSmall, CLL2NormalizeLayerFixture<float>, framework::DatasetMode::PRECOMMIT,
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100104 combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F32)), data), framework::dataset::make("Epsilon", { 1e-12 })))
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100105{
106 // Validate output
107 validate(CLAccessor(_target), _reference, tolerance_f32);
108}
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000109FIXTURE_DATA_TEST_CASE(RunLarge, CLL2NormalizeLayerFixture<float>, framework::DatasetMode::NIGHTLY,
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100110 combine(combine(combine(datasets::LargeShapes(), framework::dataset::make("DataType", DataType::F32)), data), framework::dataset::make("Epsilon", { 1e-12 })))
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100111{
112 // Validate output
113 validate(CLAccessor(_target), _reference, tolerance_f32);
114}
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100115TEST_SUITE_END() // FP32
116TEST_SUITE(FP16)
117FIXTURE_DATA_TEST_CASE(RunSmall, CLL2NormalizeLayerFixture<half>, framework::DatasetMode::PRECOMMIT,
118 combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F16)), data), framework::dataset::make("Epsilon", { 1e-6 })))
119{
120 // Validate output
121 validate(CLAccessor(_target), _reference, tolerance_f16);
122}
123FIXTURE_DATA_TEST_CASE(RunLarge, CLL2NormalizeLayerFixture<half>, framework::DatasetMode::NIGHTLY,
124 combine(combine(combine(datasets::LargeShapes(), framework::dataset::make("DataType", DataType::F16)), data), framework::dataset::make("Epsilon", { 1e-6 })))
125{
126 // Validate output
127 validate(CLAccessor(_target), _reference, tolerance_f16);
128}
129TEST_SUITE_END() // FP16
130TEST_SUITE_END() // Float
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100131
Michalis Spyrou8aaf93e2018-10-11 17:33:32 +0100132TEST_SUITE_END() // L2NormalizeLayer
133TEST_SUITE_END() // CL
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100134} // namespace validation
135} // namespace test
136} // namespace arm_compute