blob: 09da519c517d0b12a5ef57358fe744fe8470f1fc [file] [log] [blame]
Moritz Pflanzer69d33412017-08-09 11:45:15 +01001/*
Giorgio Arena5d75d4a2021-04-15 12:54:53 +01002 * Copyright (c) 2017-2021 Arm Limited.
Moritz Pflanzer69d33412017-08-09 11:45:15 +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/CLFullyConnectedLayer.h"
Moritz Pflanzer69d33412017-08-09 11:45:15 +010028#include "tests/CL/CLAccessor.h"
29#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/datasets/FullyConnectedLayerDataset.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"
35#include "tests/validation/fixtures/FullyConnectedLayerFixture.h"
Moritz Pflanzer69d33412017-08-09 11:45:15 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45/** Tolerance for float operations */
Michele Di Giorgio419f33a2018-08-27 14:25:24 +010046constexpr RelativeTolerance<float> rel_tolerance_f32(0.05f); /**< Relative tolerance value for comparing reference's output against implementation's output for DataType:F32 */
47constexpr AbsoluteTolerance<float> abs_tolerance_f32(0.0001f); /**< Absolute tolerance value for comparing reference's output against implementation's output for DataType::F32 */
48RelativeTolerance<half_float::half> tolerance_f16(half(0.2)); /**< Relative tolerance value for comparing reference's output against implementation's output for DataType::F16 */
49constexpr float tolerance_num = 0.07f; /**< Tolerance number */
steniu013e05e4e2017-08-25 17:18:01 +010050
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000051/** Tolerance for quantized asymmetric operations */
52constexpr AbsoluteTolerance<uint8_t> tolerance_qasymm8(1);
Moritz Pflanzer69d33412017-08-09 11:45:15 +010053
Moritz Pflanzer69d33412017-08-09 11:45:15 +010054const auto FullyConnectedParameters = combine(framework::dataset::make("TransposeWeights", { false, true }), framework::dataset::make("ReshapeWeights", { false, true }));
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +010055
56const auto QuantizationData = framework::dataset::make("QuantizationInfo",
57{
58 QuantizationInfo(1.f / 255.f, 10),
59 QuantizationInfo(1.1f, 10),
60});
Giorgio Arena1856ff72020-02-07 13:46:45 +000061
62const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
63{
64 ActivationLayerInfo(),
65 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU),
66 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 0.5f),
67 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 0.75f, 0.25f),
68 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH)
69});
70
Giorgio Arena5d75d4a2021-04-15 12:54:53 +010071const auto ActivationFunctionsQuantizedDataset = concat(concat(concat(
72 framework::dataset::make("ActivationInfo", ActivationLayerInfo()),
73 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))),
74 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 0.5f))),
75 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 0.75f, 0.25f)));
Moritz Pflanzer69d33412017-08-09 11:45:15 +010076} // namespace
77
78TEST_SUITE(CL)
79TEST_SUITE(FullyConnectedLayer)
80
Georgios Pinitas358ca202017-12-07 16:47:52 +000081// *INDENT-OFF*
82// clang-format off
83DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(zip(
84 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(9U, 5U, 7U, 3U), 1, DataType::F32), // Mismatching data types
Georgios Pinitas358ca202017-12-07 16:47:52 +000085 TensorInfo(TensorShape(8U, 4U, 6U, 4U), 1, DataType::F32),
86 TensorInfo(TensorShape(8U, 4U, 6U, 4U), 1, DataType::F32),
87 TensorInfo(TensorShape(9U, 5U, 7U, 3U), 1, DataType::F32), // Invalid weights dimensions
88 TensorInfo(TensorShape(9U, 5U, 7U, 3U), 1, DataType::F32), // Wrongly reshaped weights
Georgios Pinitas358ca202017-12-07 16:47:52 +000089 }),
90 framework::dataset::make("WeightsInfo",{ TensorInfo(TensorShape(315U, 271U), 1, DataType::F16),
Georgios Pinitas358ca202017-12-07 16:47:52 +000091 TensorInfo(TensorShape(192U, 192U), 1, DataType::F32),
92 TensorInfo(TensorShape(192U, 192U), 1, DataType::F32),
Michalis Spyroud466c2d2018-01-30 10:54:39 +000093 TensorInfo(TensorShape(217U, 231U), 1, DataType::F32),
Georgios Pinitas358ca202017-12-07 16:47:52 +000094 TensorInfo(TensorShape(217U, 315U), 1, DataType::F32),
Georgios Pinitas358ca202017-12-07 16:47:52 +000095 })),
96 framework::dataset::make("BiasInfo",{ TensorInfo(TensorShape(271U), 1, DataType::F32),
Georgios Pinitas358ca202017-12-07 16:47:52 +000097 TensorInfo(TensorShape(192U), 1, DataType::F32),
98 TensorInfo(TensorShape(192U), 1, DataType::F32),
99 TensorInfo(TensorShape(271U), 1, DataType::F32),
100 TensorInfo(TensorShape(271U), 1, DataType::F32),
Georgios Pinitas358ca202017-12-07 16:47:52 +0000101 })),
102 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(271U, 3U), 1, DataType::F32),
Georgios Pinitas358ca202017-12-07 16:47:52 +0000103 TensorInfo(TensorShape(192U, 4U), 1, DataType::F32),
104 TensorInfo(TensorShape(192U, 4U), 1, DataType::F32),
105 TensorInfo(TensorShape(271U, 3U), 1, DataType::F32),
106 TensorInfo(TensorShape(271U, 3U), 1, DataType::F32),
Georgios Pinitas358ca202017-12-07 16:47:52 +0000107 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100108 framework::dataset::make("TransposeWeights",{ true, true, false, true, true })),
109 framework::dataset::make("ReshapedWeights",{ false, false, false, false, false})),
110 framework::dataset::make("Expected", { false, true, true, false, false })),
Georgios Pinitas358ca202017-12-07 16:47:52 +0000111 input_info, weights_info, bias_info, output_info, transpose_weights, reshaped_weights, expected)
112{
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100113 // Create Fully Connected layer info
114 FullyConnectedLayerInfo fc_info;
115 fc_info.transpose_weights = transpose_weights;
116 fc_info.are_weights_reshaped = reshaped_weights;
117
Georgios Pinitas358ca202017-12-07 16:47:52 +0000118 Status status = CLFullyConnectedLayer::validate(&input_info.clone()->set_is_resizable(false),
119 &weights_info.clone()->set_is_resizable(false),
120 &bias_info.clone()->set_is_resizable(false),
121 &output_info.clone()->set_is_resizable(false),
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100122 fc_info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000123 ARM_COMPUTE_EXPECT(bool(status) == expected, framework::LogLevel::ERRORS);
124}
125// clang-format on
126// *INDENT-ON*
127
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100128template <typename T>
Giorgio Arenaa855af12018-07-16 17:20:38 +0100129using CLFullyConnectedLayerFixture = FullyConnectedLayerValidationFixture<CLTensor, CLAccessor, CLFullyConnectedLayer, T>;
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000130template <typename T>
131using CLFullyConnectedLayerMixedDataLayoutFixture = FullyConnectedLayerValidationFixture<CLTensor, CLAccessor, CLFullyConnectedLayer, T, true>;
Georgios Pinitas72ee9b42021-05-10 22:26:37 +0100132template <typename T>
133using CLFullyConnectedLayerDynamicWeightsFixture = FullyConnectedWithDynamicWeightsFixture<CLTensor, CLAccessor, CLFullyConnectedLayer, T>;
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100134
135TEST_SUITE(Float)
136TEST_SUITE(FP16)
Giorgio Arena1856ff72020-02-07 13:46:45 +0000137FIXTURE_DATA_TEST_CASE(RunSmall, CLFullyConnectedLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallFullyConnectedLayerDataset(),
Georgios Pinitas583137c2017-08-31 18:12:42 +0100138 FullyConnectedParameters),
Giorgio Arena1856ff72020-02-07 13:46:45 +0000139 framework::dataset::make("DataType", DataType::F16)),
140 ActivationFunctionsDataset))
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100141{
142 // Validate output
steniu013e05e4e2017-08-25 17:18:01 +0100143 validate(CLAccessor(_target), _reference, tolerance_f16, tolerance_num);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100144}
Giorgio Arena1856ff72020-02-07 13:46:45 +0000145FIXTURE_DATA_TEST_CASE(RunLarge, CLFullyConnectedLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeFullyConnectedLayerDataset(),
Georgios Pinitas583137c2017-08-31 18:12:42 +0100146 FullyConnectedParameters),
Giorgio Arena1856ff72020-02-07 13:46:45 +0000147 framework::dataset::make("DataType", DataType::F16)),
148 ActivationFunctionsDataset))
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100149{
150 // Validate output
steniu013e05e4e2017-08-25 17:18:01 +0100151 validate(CLAccessor(_target), _reference, tolerance_f16, tolerance_num);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100152}
153TEST_SUITE_END()
154
155TEST_SUITE(FP32)
Giorgio Arena1856ff72020-02-07 13:46:45 +0000156FIXTURE_DATA_TEST_CASE(RunSmall, CLFullyConnectedLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::SmallFullyConnectedLayerDataset(), FullyConnectedParameters),
157 framework::dataset::make("DataType", DataType::F32)),
158 ActivationFunctionsDataset))
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100159{
160 // Validate output
Michele Di Giorgio419f33a2018-08-27 14:25:24 +0100161 validate(CLAccessor(_target), _reference, rel_tolerance_f32, 0, abs_tolerance_f32);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100162}
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000163FIXTURE_DATA_TEST_CASE(RunMixedDataLayout, CLFullyConnectedLayerMixedDataLayoutFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(combine(
Giorgio Arena5d75d4a2021-04-15 12:54:53 +0100164 framework::dataset::make("Input", TensorShape(9U, 5U, 7U)),
165 framework::dataset::make("Weights", TensorShape(315U, 271U))),
166 framework::dataset::make("Biases", TensorShape(271U))),
167 framework::dataset::make("Output", TensorShape(271U))),
168 FullyConnectedParameters),
169 framework::dataset::make("DataType", DataType::F32)),
170 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))))
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000171{
172 // Validate output
173 validate(CLAccessor(_target), _reference, rel_tolerance_f32, 0, abs_tolerance_f32);
174}
Giorgio Arena4403ed32021-05-17 13:03:50 +0100175FIXTURE_DATA_TEST_CASE(RunDynamicWeights, CLFullyConnectedLayerDynamicWeightsFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallFullyConnectedLayerDataset(),
176 framework::dataset::make("DataType", DataType::F32)),
177 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))))
Georgios Pinitas72ee9b42021-05-10 22:26:37 +0100178{
179}
Giorgio Arena1856ff72020-02-07 13:46:45 +0000180FIXTURE_DATA_TEST_CASE(RunLarge, CLFullyConnectedLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::LargeFullyConnectedLayerDataset(), FullyConnectedParameters),
181 framework::dataset::make("DataType", DataType::F32)),
182 ActivationFunctionsDataset))
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100183{
184 // Validate output
Michele Di Giorgio419f33a2018-08-27 14:25:24 +0100185 validate(CLAccessor(_target), _reference, rel_tolerance_f32, 0, abs_tolerance_f32);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100186}
187TEST_SUITE_END()
188TEST_SUITE_END()
189
190template <typename T>
Giorgio Arenaa855af12018-07-16 17:20:38 +0100191using CLFullyConnectedLayerQuantizedFixture = FullyConnectedLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLFullyConnectedLayer, T>;
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000192template <typename T>
193using CLFullyConnectedLayerQuantizedMixedDataLayoutFixture = FullyConnectedLayerValidationQuantizedFixture<CLTensor, CLAccessor, CLFullyConnectedLayer, T, true>;
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000194
195TEST_SUITE(Quantized)
196TEST_SUITE(QASYMM8)
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100197FIXTURE_DATA_TEST_CASE(RunSmall, CLFullyConnectedLayerQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000198 combine(combine(combine(combine(datasets::SmallFullyConnectedLayerDataset(), FullyConnectedParameters), framework::dataset::make("DataType", DataType::QASYMM8)), QuantizationData),
199 ActivationFunctionsQuantizedDataset))
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000200{
201 // Validate output
202 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
203}
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000204FIXTURE_DATA_TEST_CASE(RunMixedDataLayout, CLFullyConnectedLayerQuantizedMixedDataLayoutFixture<uint8_t>, framework::DatasetMode::PRECOMMIT,
205 combine(combine(combine(combine(combine(combine(combine(
Giorgio Arena5d75d4a2021-04-15 12:54:53 +0100206 framework::dataset::make("Input", TensorShape(9U, 5U, 7U)),
207 framework::dataset::make("Weights", TensorShape(315U, 271U))),
208 framework::dataset::make("Biases", TensorShape(271U))),
209 framework::dataset::make("Output", TensorShape(271U))),
210 FullyConnectedParameters),
211 framework::dataset::make("DataType", DataType::QASYMM8)),
212 QuantizationData),
213 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))))
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000214{
215 // Validate output
216 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
217}
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100218FIXTURE_DATA_TEST_CASE(RunLarge, CLFullyConnectedLayerQuantizedFixture<uint8_t>, framework::DatasetMode::NIGHTLY,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000219 combine(combine(combine(combine(datasets::LargeFullyConnectedLayerDataset(), FullyConnectedParameters), framework::dataset::make("DataType", DataType::QASYMM8)), QuantizationData),
220 ActivationFunctionsQuantizedDataset))
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000221{
222 // Validate output
223 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
224}
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +0000225TEST_SUITE_END() /* QASYMM8 */
226TEST_SUITE(QASYMM8_SIGNED)
227FIXTURE_DATA_TEST_CASE(RunSmall, CLFullyConnectedLayerQuantizedFixture<int8_t>, framework::DatasetMode::PRECOMMIT,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000228 combine(combine(combine(combine(datasets::SmallFullyConnectedLayerDataset(), FullyConnectedParameters), framework::dataset::make("DataType", DataType::QASYMM8_SIGNED)), QuantizationData),
229 ActivationFunctionsQuantizedDataset))
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +0000230{
231 // Validate output
232 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
233}
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000234FIXTURE_DATA_TEST_CASE(RunMixedDataLayout, CLFullyConnectedLayerQuantizedMixedDataLayoutFixture<int8_t>, framework::DatasetMode::PRECOMMIT,
235 combine(combine(combine(combine(combine(combine(combine(
Giorgio Arena5d75d4a2021-04-15 12:54:53 +0100236 framework::dataset::make("Input", TensorShape(9U, 5U, 7U)),
237 framework::dataset::make("Weights", TensorShape(315U, 271U))),
238 framework::dataset::make("Biases", TensorShape(271U))),
239 framework::dataset::make("Output", TensorShape(271U))),
240 FullyConnectedParameters),
241 framework::dataset::make("DataType", DataType::QASYMM8_SIGNED)),
242 QuantizationData),
243 framework::dataset::make("ActivationInfo", ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))))
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000244{
245 // Validate output
246 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
247}
248TEST_SUITE_END() // QASYMM8_SIGNED
249TEST_SUITE_END() // Quantized
250TEST_SUITE_END() // FullyConnectedLayer
251TEST_SUITE_END() // CL
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100252} // namespace validation
253} // namespace test
254} // namespace arm_compute