blob: 7d767642f3e75e3ac12abb0878fd4922e49a10d3 [file] [log] [blame]
Moritz Pflanzer69d33412017-08-09 11:45:15 +01001/*
Giorgio Arena33b103b2021-01-08 10:37:15 +00002 * 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#ifndef ARM_COMPUTE_TEST_FULLY_CONNECTED_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_FULLY_CONNECTED_LAYER_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/core/Utils.h"
Moritz Pflanzer69d33412017-08-09 11:45:15 +010030#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
33#include "tests/RawTensor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010034#include "tests/framework/Asserts.h"
35#include "tests/framework/Fixture.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010036#include "tests/validation/Helpers.h"
Giorgio Arena1856ff72020-02-07 13:46:45 +000037#include "tests/validation/reference/ActivationLayer.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000038#include "tests/validation/reference/FullyConnectedLayer.h"
39#include "tests/validation/reference/Utils.h"
Moritz Pflanzer69d33412017-08-09 11:45:15 +010040
41#include <random>
42
43namespace arm_compute
44{
45namespace test
46{
47namespace validation
48{
Giorgio Arenaa855af12018-07-16 17:20:38 +010049template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000050class FullyConnectedLayerValidationGenericFixture : public framework::Fixture
Moritz Pflanzer69d33412017-08-09 11:45:15 +010051{
52public:
Sang-Hoon Parkb66aa3b2020-01-10 14:44:13 +000053 using TDecay = typename std::decay<T>::type;
54 using TBias = typename std::conditional < (std::is_same<TDecay, uint8_t>::value || std::is_same<TDecay, int8_t>::value), int32_t, T >::type;
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000055
56public:
Moritz Pflanzer69d33412017-08-09 11:45:15 +010057 template <typename...>
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000058 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, bool transpose_weights, bool reshape_weights,
Manuel Bottinica62c6f2021-03-23 11:50:34 +000059 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo activation_info, bool mixed_layout = false)
Moritz Pflanzer69d33412017-08-09 11:45:15 +010060 {
61 ARM_COMPUTE_UNUSED(weights_shape);
62 ARM_COMPUTE_UNUSED(bias_shape);
63
Manuel Bottinica62c6f2021-03-23 11:50:34 +000064 _mixed_layout = mixed_layout;
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000065 _data_type = data_type;
66 _bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000067 _quantization_info = quantization_info;
Giorgio Arena1856ff72020-02-07 13:46:45 +000068 _activation_info = activation_info;
Moritz Pflanzer69d33412017-08-09 11:45:15 +010069
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000070 _target = compute_target(input_shape, weights_shape, bias_shape, output_shape, transpose_weights, reshape_weights);
Michalis Spyrou6bff1952019-10-02 17:22:11 +010071 _reference = compute_reference(input_shape, weights_shape, bias_shape, output_shape);
Moritz Pflanzer69d33412017-08-09 11:45:15 +010072 }
73
74protected:
Manuel Bottinica62c6f2021-03-23 11:50:34 +000075 void mix_layout(FunctionType &layer, TensorType &src, TensorType &dst)
76 {
77 const DataLayout data_layout = src.info()->data_layout();
78 // Test Multi DataLayout graph cases, when the data layout changes after configure
79 src.info()->set_data_layout(data_layout == DataLayout::NCHW ? DataLayout::NHWC : DataLayout::NCHW);
80 dst.info()->set_data_layout(data_layout == DataLayout::NCHW ? DataLayout::NHWC : DataLayout::NCHW);
81
82 // Compute Convolution function
83 layer.run();
84
85 // Reinstating original data layout for the test suite to properly check the values
86 src.info()->set_data_layout(data_layout);
87 dst.info()->set_data_layout(data_layout);
88 }
89
Moritz Pflanzer69d33412017-08-09 11:45:15 +010090 template <typename U>
91 void fill(U &&tensor, int i)
92 {
Michele Di Giorgio9c700372020-01-08 11:33:44 +000093 if(_data_type == DataType::QASYMM8)
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000094 {
95 std::uniform_int_distribution<uint8_t> distribution(0, 30);
96 library->fill(tensor, distribution, i);
97 }
Michele Di Giorgio9c700372020-01-08 11:33:44 +000098 else if(_data_type == DataType::QASYMM8_SIGNED)
99 {
100 std::uniform_int_distribution<int8_t> distribution(-15, 15);
101 library->fill(tensor, distribution, i);
102 }
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000103 else if(_data_type == DataType::S32)
104 {
105 std::uniform_int_distribution<int32_t> distribution(-50, 50);
106 library->fill(tensor, distribution, i);
107 }
Giorgio Arena4bdd1772020-12-17 16:47:07 +0000108 else if(_data_type == DataType::F16)
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100109 {
Giorgio Arena33b103b2021-01-08 10:37:15 +0000110 arm_compute::utils::uniform_real_distribution_16bit<half> distribution(-1.0f, 1.0f);
Giorgio Arena4bdd1772020-12-17 16:47:07 +0000111 library->fill(tensor, distribution, i);
112 }
113 else if(_data_type == DataType::F32)
114 {
115 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100116 library->fill(tensor, distribution, i);
117 }
118 else
119 {
120 library->fill_tensor_uniform(tensor, i);
121 }
122 }
123
124 TensorType compute_target(const TensorShape &input_shape, const TensorShape &weights_shape, const TensorShape &bias_shape, const TensorShape &output_shape, bool transpose_weights,
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000125 bool reshape_weights)
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100126 {
127 TensorShape reshaped_weights_shape(weights_shape);
128
129 // Test actions depending on the target settings
130 //
131 // | reshape | !reshape
132 // -----------+-----------+---------------------------
133 // transpose | | ***
134 // -----------+-----------+---------------------------
Giorgio Arenaa855af12018-07-16 17:20:38 +0100135 // !transpose | transpose | transpose
136 // | |
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100137 //
138 // ***: That combination is invalid. But we can ignore the transpose flag and handle all !reshape the same
139 if(!reshape_weights || !transpose_weights)
140 {
141 const size_t shape_x = reshaped_weights_shape.x();
142 reshaped_weights_shape.set(0, reshaped_weights_shape.y());
143 reshaped_weights_shape.set(1, shape_x);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100144 }
145
146 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100147 TensorType src = create_tensor<TensorType>(input_shape, _data_type, 1, _quantization_info);
148 TensorType weights = create_tensor<TensorType>(reshaped_weights_shape, _data_type, 1, _quantization_info);
149 TensorType bias = create_tensor<TensorType>(bias_shape, _bias_data_type, 1, _quantization_info);
150 TensorType dst = create_tensor<TensorType>(output_shape, _data_type, 1, _quantization_info);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100151
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100152 // Create Fully Connected layer info
153 FullyConnectedLayerInfo fc_info;
154 fc_info.transpose_weights = transpose_weights;
155 fc_info.are_weights_reshaped = !reshape_weights;
Giorgio Arena1856ff72020-02-07 13:46:45 +0000156 fc_info.activation_info = _activation_info;
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100157
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100158 // Create and configure function.
159 FunctionType fc;
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100160 fc.configure(&src, &weights, &bias, &dst, fc_info);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100161
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100162 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
163 ARM_COMPUTE_ASSERT(weights.info()->is_resizable());
164 ARM_COMPUTE_ASSERT(bias.info()->is_resizable());
165 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100166
Giorgio Arena63825e82021-03-25 14:54:50 +0000167 add_padding_x({ &src, &weights, &bias, &dst });
168
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100169 // Allocate tensors
170 src.allocator()->allocate();
171 weights.allocator()->allocate();
172 bias.allocator()->allocate();
173 dst.allocator()->allocate();
174
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100175 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
176 ARM_COMPUTE_ASSERT(!weights.info()->is_resizable());
177 ARM_COMPUTE_ASSERT(!bias.info()->is_resizable());
178 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100179
180 // Fill tensors
181 fill(AccessorType(src), 0);
182 fill(AccessorType(bias), 2);
183
184 if(!reshape_weights || !transpose_weights)
185 {
186 TensorShape tmp_shape(weights_shape);
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100187 RawTensor tmp(tmp_shape, _data_type, 1);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100188
189 // Fill with original shape
190 fill(tmp, 1);
191
192 // Transpose elementwise
193 tmp = transpose(tmp);
194
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100195 AccessorType weights_accessor(weights);
196
197 for(int i = 0; i < tmp.num_elements(); ++i)
198 {
199 Coordinates coord = index2coord(tmp.shape(), i);
200 std::copy_n(static_cast<const RawTensor::value_type *>(tmp(coord)),
201 tmp.element_size(),
202 static_cast<RawTensor::value_type *>(weights_accessor(coord)));
203 }
204 }
205 else
206 {
207 fill(AccessorType(weights), 1);
208 }
209
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000210 if(_mixed_layout)
211 {
212 mix_layout(fc, src, dst);
213 }
214 else
215 {
216 // Compute NEFullyConnectedLayer function
217 fc.run();
218 }
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100219
220 return dst;
221 }
222
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100223 SimpleTensor<T> compute_reference(const TensorShape &input_shape, const TensorShape &weights_shape, const TensorShape &bias_shape, const TensorShape &output_shape)
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100224 {
225 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100226 SimpleTensor<T> src{ input_shape, _data_type, 1, _quantization_info };
227 SimpleTensor<T> weights{ weights_shape, _data_type, 1, _quantization_info };
228 SimpleTensor<TBias> bias{ bias_shape, _bias_data_type, 1, _quantization_info };
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100229
230 // Fill reference
231 fill(src, 0);
232 fill(weights, 1);
233 fill(bias, 2);
234
Giorgio Arena1856ff72020-02-07 13:46:45 +0000235 return reference::activation_layer(reference::fully_connected_layer<T>(src, weights, bias, output_shape), _activation_info, _quantization_info);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100236 }
237
Giorgio Arena1856ff72020-02-07 13:46:45 +0000238 TensorType _target{};
239 SimpleTensor<T> _reference{};
240 DataType _data_type{};
241 DataType _bias_data_type{};
Giorgio Arena63825e82021-03-25 14:54:50 +0000242 bool _mixed_layout{ false };
Giorgio Arena1856ff72020-02-07 13:46:45 +0000243 QuantizationInfo _quantization_info{};
244 ActivationLayerInfo _activation_info{};
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100245};
246
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000247template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool mixed_layout = false>
Giorgio Arenaa855af12018-07-16 17:20:38 +0100248class FullyConnectedLayerValidationFixture : public FullyConnectedLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100249{
250public:
251 template <typename...>
Giorgio Arena1856ff72020-02-07 13:46:45 +0000252 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, bool transpose_weights, bool reshape_weights, DataType data_type,
253 ActivationLayerInfo activation_info)
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100254 {
Giorgio Arenaa855af12018-07-16 17:20:38 +0100255 FullyConnectedLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, transpose_weights,
256 reshape_weights, data_type,
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000257 QuantizationInfo(), activation_info, mixed_layout);
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000258 }
259};
260
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000261template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool mixed_layout = false>
Giorgio Arenaa855af12018-07-16 17:20:38 +0100262class FullyConnectedLayerValidationQuantizedFixture : public FullyConnectedLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000263{
264public:
265 template <typename...>
266 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, bool transpose_weights, bool reshape_weights, DataType data_type,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000267 QuantizationInfo quantization_info, ActivationLayerInfo activation_info)
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000268 {
Giorgio Arenaa855af12018-07-16 17:20:38 +0100269 FullyConnectedLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, transpose_weights,
270 reshape_weights, data_type,
Manuel Bottinica62c6f2021-03-23 11:50:34 +0000271 quantization_info, activation_info, mixed_layout);
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100272 }
273};
Georgios Pinitas72ee9b42021-05-10 22:26:37 +0100274
275template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
276class FullyConnectedWithDynamicWeightsFixture : public framework::Fixture
277{
278private:
279 template <typename U>
280 void fill(U &&tensor, int i)
281 {
282 if(_data_type == DataType::F16)
283 {
284 arm_compute::utils::uniform_real_distribution_16bit<half> distribution(-1.0f, 1.0f);
285 library->fill(tensor, distribution, i);
286 }
287 else if(_data_type == DataType::F32)
288 {
289 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
290 library->fill(tensor, distribution, i);
291 }
292 else
293 {
294 library->fill_tensor_uniform(tensor, i);
295 }
296 }
297
298 void fill_transposed_weights(TensorType &weights, TensorShape weights_shape, int seed)
299 {
300 RawTensor tmp(weights_shape, _data_type, 1);
301
302 // Fill with original shape
303 fill(tmp, seed);
304
305 // Transpose elementwise
306 tmp = transpose(tmp);
307
308 AccessorType weights_accessor(weights);
309
310 for(int i = 0; i < tmp.num_elements(); ++i)
311 {
312 Coordinates coord = index2coord(tmp.shape(), i);
313 std::copy_n(static_cast<const RawTensor::value_type *>(tmp(coord)),
314 tmp.element_size(),
315 static_cast<RawTensor::value_type *>(weights_accessor(coord)));
316 }
317 }
318
319 void validate_with_tolerance(TensorType &target, SimpleTensor<T> &ref)
320 {
321 if(_data_type == DataType::F32)
322 {
323 constexpr RelativeTolerance<float> rel_tolerance_f32(0.05f);
324 constexpr AbsoluteTolerance<float> abs_tolerance_f32(0.0001f);
325 validate(AccessorType(target), ref, rel_tolerance_f32, 0, abs_tolerance_f32);
326 }
327 else
328 {
329 validate(AccessorType(target), ref);
330 }
331 }
332
333public:
334 template <typename...>
335 void setup(TensorShape src_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape dst_shape,
336 DataType data_type, ActivationLayerInfo activation_info)
337 {
338 _data_type = data_type;
339
340 // Setup tensor meta-data
341 TensorInfo src_info(src_shape, 1, data_type);
342 _src.allocator()->init(src_info);
343
344 TensorShape tr_weights_shape{ weights_shape[1], weights_shape[0] };
345 TensorInfo wei_info(tr_weights_shape, 1, data_type);
346 _weights.allocator()->init(wei_info);
347
348 TensorInfo bias_info(bias_shape, 1, data_type);
349 _bias.allocator()->init(bias_info);
350
351 TensorInfo dst_info(dst_shape, 1, data_type);
352 _dst.allocator()->init(dst_info);
353
354 // Configure FC layer and mark the weights as non constant
355 FullyConnectedLayerInfo fc_info;
356 fc_info.activation_info = activation_info;
357 fc_info.are_weights_reshaped = true;
Giorgio Arena4403ed32021-05-17 13:03:50 +0100358 fc_info.transpose_weights = false;
Georgios Pinitas72ee9b42021-05-10 22:26:37 +0100359 fc_info.constant_weights = false;
360 FunctionType fc;
361 fc.configure(&_src, &_weights, &_bias, &_dst, fc_info);
362
363 // Allocate all the tensors
364 _src.allocator()->allocate();
365 _weights.allocator()->allocate();
366 _bias.allocator()->allocate();
367 _dst.allocator()->allocate();
368
369 // Run multiple iterations with different inputs
370 constexpr int num_iterations = 5;
371 int randomizer_offset = 0;
372 for(int i = 0; i < num_iterations; ++i)
373 {
374 // Run target
375 {
376 fill(AccessorType(_src), randomizer_offset);
377 fill_transposed_weights(_weights, weights_shape, randomizer_offset + 1);
378 fill(AccessorType(_bias), randomizer_offset + 2);
379
380 fc.run();
381 }
382
383 // Run reference and compare
384 {
385 SimpleTensor<T> src{ src_shape, data_type };
386 SimpleTensor<T> weights{ weights_shape, data_type };
387 SimpleTensor<T> bias{ bias_shape, data_type };
388
389 // Fill reference
390 fill(src, randomizer_offset);
391 fill(weights, randomizer_offset + 1);
392 fill(bias, randomizer_offset + 2);
393
394 auto dst = reference::activation_layer(reference::fully_connected_layer<T>(src, weights, bias, dst_shape), activation_info);
395
396 // Validate
397 validate_with_tolerance(_dst, dst);
398 }
399
400 randomizer_offset += 100;
401 }
402 }
403
404private:
405 TensorType _src{}, _weights{}, _bias{}, _dst{};
406 DataType _data_type{ DataType::UNKNOWN };
407};
Moritz Pflanzer69d33412017-08-09 11:45:15 +0100408} // namespace validation
409} // namespace test
410} // namespace arm_compute
411#endif /* ARM_COMPUTE_TEST_FULLY_CONNECTED_LAYER_FIXTURE */