blob: 8b3bdbc3ead5fb576fa1617c8b280c9f1217d05e [file] [log] [blame]
Sanghoon Lee96883782017-09-15 14:10:48 +01001/*
Michalis Spyroud175ece2020-07-30 23:39:32 +01002 * Copyright (c) 2017-2020 Arm Limited.
Sanghoon Lee96883782017-09-15 14:10:48 +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/CLBatchNormalizationLayer.h"
Georgios Pinitasc9369172018-09-26 11:25:40 +010028#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
29#include "arm_compute/runtime/CL/functions/CLFuseBatchNormalization.h"
Sanghoon Lee96883782017-09-15 14:10:48 +010030#include "tests/CL/CLAccessor.h"
31#include "tests/PaddingCalculator.h"
Georgios Pinitasc9369172018-09-26 11:25:40 +010032#include "tests/datasets/LargeConvolutionLayerDataset.h"
Sanghoon Lee96883782017-09-15 14:10:48 +010033#include "tests/datasets/RandomBatchNormalizationLayerDataset.h"
Georgios Pinitasc9369172018-09-26 11:25:40 +010034#include "tests/datasets/SmallConvolutionLayerDataset.h"
Sanghoon Lee96883782017-09-15 14:10:48 +010035#include "tests/framework/Asserts.h"
36#include "tests/framework/Macros.h"
37#include "tests/framework/datasets/Datasets.h"
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +000038#include "tests/validation/Helpers.h"
Sanghoon Lee96883782017-09-15 14:10:48 +010039#include "tests/validation/Validation.h"
40#include "tests/validation/fixtures/BatchNormalizationLayerFixture.h"
Georgios Pinitasc9369172018-09-26 11:25:40 +010041#include "tests/validation/fixtures/BatchNormalizationLayerFusionFixture.h"
Sanghoon Lee96883782017-09-15 14:10:48 +010042
43namespace arm_compute
44{
45namespace test
46{
47namespace validation
48{
49namespace
50{
Georgios Pinitas51e53a32018-10-22 13:49:08 +010051RelativeTolerance<float> rel_tolerance_f32(0.05f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
52constexpr AbsoluteTolerance<float> abs_tolerance_f32(0.0001f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
53constexpr AbsoluteTolerance<float> tolerance_f16(0.01f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F16 */
Giorgio Arena11674872018-02-07 15:38:12 +000054const auto act_infos = framework::dataset::make("ActivationInfo",
55{
56 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
57 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
58 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 8.f, 2.f),
59});
Georgios Pinitasc9369172018-09-26 11:25:40 +010060
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010061const auto common_fusion_dataset = combine(combine(combine(framework::dataset::make("UseBias",
62{ false, true }),
63framework::dataset::make("UseBeta", { false, true })),
64framework::dataset::make("UseGamma", { false, true })),
65framework::dataset::make("Epsilon", { 0.001f }));
Sheri Zhang141c31a2020-10-08 12:35:28 +010066
Sanghoon Lee96883782017-09-15 14:10:48 +010067} // namespace
68
69TEST_SUITE(CL)
70TEST_SUITE(BatchNormalizationLayer)
71
72template <typename T>
73using CLBatchNormalizationLayerFixture = BatchNormalizationLayerValidationFixture<CLTensor, CLAccessor, CLBatchNormalizationLayer, T>;
74
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000075// *INDENT-OFF*
76// clang-format off
Giorgio Arena11674872018-02-07 15:38:12 +000077DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
Giorgio Arena70623822017-11-27 15:50:10 +000078 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
79 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Window shrink
80 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching data types
81 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching data types
82 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Invalid mean/var/beta/gamma shape
Giorgio Arena11674872018-02-07 15:38:12 +000083 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Unsupported fused activation
84 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Fused activation's a < b
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000085 }),
Giorgio Arena70623822017-11-27 15:50:10 +000086 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000087 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
Giorgio Arena70623822017-11-27 15:50:10 +000088 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
89 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F16),
90 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Giorgio Arena11674872018-02-07 15:38:12 +000091 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
92 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000093 })),
94 framework::dataset::make("MVBGInfo",{ TensorInfo(TensorShape(2U), 1, DataType::F32),
Giorgio Arena70623822017-11-27 15:50:10 +000095 TensorInfo(TensorShape(2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000096 TensorInfo(TensorShape(2U), 1, DataType::F16),
97 TensorInfo(TensorShape(2U), 1, DataType::F32),
98 TensorInfo(TensorShape(5U), 1, DataType::F32),
Giorgio Arena11674872018-02-07 15:38:12 +000099 TensorInfo(TensorShape(2U), 1, DataType::F32),
100 TensorInfo(TensorShape(2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000101 })),
Giorgio Arena11674872018-02-07 15:38:12 +0000102 framework::dataset::make("ActivationLayerInfo",{ ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
103 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
104 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
105 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f),
106 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f),
Giorgio Arena11674872018-02-07 15:38:12 +0000107 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH),
108 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 2.f, 6.f),
Giorgio Arena11674872018-02-07 15:38:12 +0000109 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100110 framework::dataset::make("Expected", { true, false, false, false, false, false, false})),
Giorgio Arena11674872018-02-07 15:38:12 +0000111 input_info, output_info, mvbg_info, act_info, expected)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000112{
Giorgio Arena70623822017-11-27 15:50:10 +0000113 const auto &mean_info = mvbg_info;
114 const auto &var_info = mvbg_info;
115 const auto &beta_info = mvbg_info;
116 const auto &gamma_info = mvbg_info;
Giorgio Arena11674872018-02-07 15:38:12 +0000117 bool has_error = bool(CLBatchNormalizationLayer::validate(&input_info.clone()->set_is_resizable(false), (output_info.total_size() == 0) ? nullptr : &output_info.clone()->set_is_resizable(false), &mean_info.clone()->set_is_resizable(false), &var_info.clone()->set_is_resizable(false), &beta_info.clone()->set_is_resizable(false), &gamma_info.clone()->set_is_resizable(false), 1.f, act_info));
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000118 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
119}
120// clang-format on
121// *INDENT-ON*
122
Sanghoon Lee96883782017-09-15 14:10:48 +0100123TEST_SUITE(Float)
Gian Marco Iodice349feef2017-09-28 11:21:29 +0100124TEST_SUITE(FP32)
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000125FIXTURE_DATA_TEST_CASE(Random, CLBatchNormalizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(datasets::SmallRandomBatchNormalizationLayerDataset(),
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100126 combine(framework::dataset::make("UseBeta", { false, true }), framework::dataset::make("UseGamma", { false, true }))),
Giorgio Arena11674872018-02-07 15:38:12 +0000127 act_infos),
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000128 framework::dataset::make("DataType", DataType::F32)),
Michele Di Giorgiobf3c6622018-03-08 11:52:27 +0000129 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Sanghoon Lee96883782017-09-15 14:10:48 +0100130{
131 // Validate output
Georgios Pinitasc9369172018-09-26 11:25:40 +0100132 validate(CLAccessor(_target), _reference, abs_tolerance_f32, 0);
Sanghoon Lee96883782017-09-15 14:10:48 +0100133}
Georgios Pinitasc9369172018-09-26 11:25:40 +0100134TEST_SUITE_END() //FP32
Sanghoon Lee96883782017-09-15 14:10:48 +0100135
Gian Marco Iodice349feef2017-09-28 11:21:29 +0100136TEST_SUITE(FP16)
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000137FIXTURE_DATA_TEST_CASE(Random, CLBatchNormalizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(datasets::SmallRandomBatchNormalizationLayerDataset(),
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100138 combine(framework::dataset::make("UseBeta", { false, true }), framework::dataset::make("UseGamma", { false, true }))),
139 framework::dataset::make("ActivationInfo",
140 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f))),
Michele Di Giorgio0cbb9272018-03-01 16:56:48 +0000141 framework::dataset::make("DataType", DataType::F16)),
Michele Di Giorgiobf3c6622018-03-08 11:52:27 +0000142 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
Gian Marco Iodice349feef2017-09-28 11:21:29 +0100143{
144 // Validate output
145 validate(CLAccessor(_target), _reference, tolerance_f16, 0);
146}
Georgios Pinitasc9369172018-09-26 11:25:40 +0100147TEST_SUITE_END() // FP16
148TEST_SUITE_END() // Float
Gian Marco Iodice349feef2017-09-28 11:21:29 +0100149
Georgios Pinitasc9369172018-09-26 11:25:40 +0100150TEST_SUITE_END() // BatchNormalizationLayer
151
152TEST_SUITE(BatchNormalizationLayerFusion)
Michalis Spyrou80943252019-01-10 17:19:50 +0000153// *INDENT-OFF*
154// clang-format off
155DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(
156 framework::dataset::make("Weights", { TensorInfo(TensorShape(32U, 13U, 2U, 2U), 1, DataType::F32), // Valid
157 TensorInfo(TensorShape(32U, 13U, 2U, 2U), 1, DataType::F32), // Mismatching data types
158 TensorInfo(TensorShape(32U, 13U, 2U, 1U), 1, DataType::F32), // Invalid mean/var/beta/gamma shape
159 }),
160 framework::dataset::make("MVBGInfo",{ TensorInfo(TensorShape(2U), 1, DataType::F32),
161 TensorInfo(TensorShape(2U), 1, DataType::F16),
162 TensorInfo(TensorShape(5U), 1, DataType::F32),
163 })),
164 framework::dataset::make("Expected", { true, false, false})),
165 weights_info, mvbg_info, expected)
166{
167 const auto &weights_in_info = weights_info;
168 const auto &mean_info = mvbg_info;
169 const auto &var_info = mvbg_info;
170 const auto &fused_weights_info = weights_info;
171 const auto &fused_bias_info = mvbg_info;
172 const auto &conv_bias_info = mvbg_info;
173 const auto &beta_info = mvbg_info;
174 const auto &gamma_info = mvbg_info;
175 bool has_error = bool(CLFuseBatchNormalization::validate(
176 &weights_in_info.clone()->set_is_resizable(false), &mean_info.clone()->set_is_resizable(false),
177 &var_info.clone()->set_is_resizable(false), &fused_weights_info.clone()->set_is_resizable(false),
178 &fused_bias_info.clone()->set_is_resizable(false), &conv_bias_info.clone()->set_is_resizable(false),
179 &beta_info.clone()->set_is_resizable(false), &gamma_info.clone()->set_is_resizable(false), 1.f));
180 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
181}
182// clang-format on
183// *INDENT-ON*
Georgios Pinitasc9369172018-09-26 11:25:40 +0100184template <typename T>
185using CLBatchNormalizationLayerFusionFixture = BatchNormalizationLayerFusionValidationFixture<CLTensor, CLAccessor, CLConvolutionLayer, CLFuseBatchNormalization, T>;
186
187TEST_SUITE(Float)
188TEST_SUITE(FP32)
189FIXTURE_DATA_TEST_CASE(RunSmall, CLBatchNormalizationLayerFusionFixture<float>, framework::DatasetMode::PRECOMMIT,
Michalis Spyrou80943252019-01-10 17:19:50 +0000190 combine(combine(combine(datasets::SmallConvolutionLayerReducedDataset(), common_fusion_dataset),
191 framework::dataset::make("DataType", DataType::F32)),
192 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
193{
194 // Validate output
195 validate(CLAccessor(_target), _reference, rel_tolerance_f32, 0.f, abs_tolerance_f32);
196}
197FIXTURE_DATA_TEST_CASE(RunLarge, CLBatchNormalizationLayerFusionFixture<float>, framework::DatasetMode::NIGHTLY,
Georgios Pinitasc9369172018-09-26 11:25:40 +0100198 combine(combine(combine(datasets::SmallConvolutionLayerDataset(), common_fusion_dataset),
199 framework::dataset::make("DataType", DataType::F32)),
200 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
201{
202 // Validate output
203 validate(CLAccessor(_target), _reference, rel_tolerance_f32, 0.f, abs_tolerance_f32);
204}
205TEST_SUITE_END() // FP32
206TEST_SUITE_END() // Float
207
208TEST_SUITE_END() // BatchNormalizationLayerFusion
209TEST_SUITE_END() // CL
Sanghoon Lee96883782017-09-15 14:10:48 +0100210} // namespace validation
211} // namespace test
212} // namespace arm_compute