blob: 52fa8da60beca72dc53a6d143f66069b5d461825 [file] [log] [blame]
Moritz Pflanzerb3d25792017-07-26 11:49:37 +01001/*
Georgios Pinitas8be91482019-03-26 17:23:28 +00002 * Copyright (c) 2017-2019 ARM Limited.
Moritz Pflanzerb3d25792017-07-26 11:49:37 +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_CONVOLUTION_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_CONVOLUTION_LAYER_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010029#include "arm_compute/runtime/NEON/NEScheduler.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010030#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/framework/Asserts.h"
34#include "tests/framework/Fixture.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010035#include "tests/validation/Helpers.h"
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000036#include "tests/validation/reference/ActivationLayer.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000037#include "tests/validation/reference/ConvolutionLayer.h"
Michalis Spyroue2503892018-04-23 15:17:31 +010038#include "tests/validation/reference/Permute.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000039#include "tests/validation/reference/Utils.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010040
41#include <random>
42
43namespace arm_compute
44{
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010045class NEConvolutionLayer;
46
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010047namespace test
48{
49namespace validation
50{
51template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosov5124be52017-11-22 20:42:13 +070052class ConvolutionValidationGenericFixture : public framework::Fixture
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010053{
54public:
Chunosov5124be52017-11-22 20:42:13 +070055 using TBias = typename std::conditional<std::is_same<typename std::decay<T>::type, uint8_t>::value, int32_t, T>::type;
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010056
Chunosov5124be52017-11-22 20:42:13 +070057public:
58 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +000059 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, PadStrideInfo info, Size2D dilation, bool reshape_weights,
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010060 DataType data_type, DataLayout data_layout, QuantizationInfo quantization_info, ActivationLayerInfo act_info)
Chunosov5124be52017-11-22 20:42:13 +070061 {
62 _data_type = data_type;
63 _is_quantized = is_data_type_quantized_asymmetric(data_type);
64 _bias_data_type = _is_quantized ? DataType::S32 : data_type;
Chunosov5124be52017-11-22 20:42:13 +070065 _quantization_info = quantization_info;
Michalis Spyroue2503892018-04-23 15:17:31 +010066 _data_layout = data_layout;
Chunosov5124be52017-11-22 20:42:13 +070067
Isabella Gottardi3f217ec2018-02-12 14:59:19 +000068 _target = compute_target(input_shape, weights_shape, bias_shape, output_shape, info, reshape_weights, dilation, act_info);
69 _reference = compute_reference(input_shape, weights_shape, bias_shape, output_shape, info, dilation, act_info);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010070 }
71
72protected:
73 template <typename U>
74 void fill(U &&tensor, int i)
75 {
76 switch(tensor.data_type())
77 {
Chunosov5124be52017-11-22 20:42:13 +070078 case DataType::QASYMM8:
79 {
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010080 std::pair<int, int> bounds = get_quantized_bounds(tensor.quantization_info(), -1.0f, 1.0f);
81 std::uniform_int_distribution<uint8_t> distribution(bounds.first, bounds.second);
Chunosov5124be52017-11-22 20:42:13 +070082 library->fill(tensor, distribution, i);
83 break;
84 }
85 case DataType::S32:
86 {
87 std::uniform_int_distribution<int32_t> distribution(-100, 100);
88 library->fill(tensor, distribution, i);
89 break;
90 }
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010091 case DataType::F16:
92 case DataType::F32:
93 {
94 std::uniform_real_distribution<> distribution(-1.0f, 1.0f);
95 library->fill(tensor, distribution, i);
96 break;
97 }
98 default:
99 library->fill_tensor_uniform(tensor, i);
100 }
101 }
102
Michalis Spyroue2503892018-04-23 15:17:31 +0100103 TensorType compute_target(TensorShape input_shape, TensorShape weights_shape, const TensorShape &bias_shape, TensorShape output_shape, const PadStrideInfo &info,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000104 bool reshape_weights, const Size2D &dilation, const ActivationLayerInfo act_info)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100105 {
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100106 ARM_COMPUTE_ERROR_ON((input_shape[2] % weights_shape[2]) != 0);
107
108 const unsigned int num_groups = input_shape[2] / weights_shape[2];
109
Michalis Spyroue2503892018-04-23 15:17:31 +0100110 if(_data_layout == DataLayout::NHWC)
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100111 {
Michalis Spyroue2503892018-04-23 15:17:31 +0100112 permute(input_shape, PermutationVector(2U, 0U, 1U));
113 permute(weights_shape, PermutationVector(2U, 0U, 1U));
114 permute(output_shape, PermutationVector(2U, 0U, 1U));
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100115 }
116
Michalis Spyroue2503892018-04-23 15:17:31 +0100117 const int idx_width = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
118 const int idx_height = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
119
120 WeightsInfo weights_info(!reshape_weights, weights_shape[idx_width], weights_shape[idx_height], weights_shape[3]);
121 TensorShape reshaped_weights_shape(weights_shape);
122
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100123 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100124 TensorType src = create_tensor<TensorType>(input_shape, _data_type, 1, _quantization_info, _data_layout);
125 TensorType weights = create_tensor<TensorType>(reshaped_weights_shape, _data_type, 1, _quantization_info, _data_layout);
126 TensorType bias = create_tensor<TensorType>(bias_shape, _bias_data_type, 1, _quantization_info, _data_layout);
127 TensorType dst = create_tensor<TensorType>(output_shape, _data_type, 1, _quantization_info, _data_layout);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100128
129 // Create and configure function
130 FunctionType conv;
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100131 conv.configure(&src, &weights, &bias, &dst, info, weights_info, dilation, act_info, num_groups);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100132
133 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
134 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
135 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
136 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
137
138 // Allocate tensors
139 src.allocator()->allocate();
140 weights.allocator()->allocate();
141 bias.allocator()->allocate();
142 dst.allocator()->allocate();
143
144 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
145 ARM_COMPUTE_EXPECT(!weights.info()->is_resizable(), framework::LogLevel::ERRORS);
146 ARM_COMPUTE_EXPECT(!bias.info()->is_resizable(), framework::LogLevel::ERRORS);
147 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
148
149 // Fill tensors
150 fill(AccessorType(src), 0);
Michalis Spyroue2503892018-04-23 15:17:31 +0100151 fill(AccessorType(weights), 1);
152 fill(AccessorType(bias), 2);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100153
154 // Compute NEConvolutionLayer function
155 conv.run();
156
157 return dst;
158 }
159
Alex Gilday7da29b62018-03-23 14:16:00 +0000160 SimpleTensor<T> compute_reference(const TensorShape &input_shape, const TensorShape &weights_shape, const TensorShape &bias_shape, const TensorShape &output_shape, const PadStrideInfo &info,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000161 const Size2D &dilation, const ActivationLayerInfo act_info)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100162 {
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100163 ARM_COMPUTE_ERROR_ON((input_shape[2] % weights_shape[2]) != 0);
164
165 const unsigned int num_groups = input_shape[2] / weights_shape[2];
166
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100167 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100168 SimpleTensor<T> src{ input_shape, _data_type, 1, _quantization_info };
169 SimpleTensor<T> weights{ weights_shape, _data_type, 1, _quantization_info };
170 SimpleTensor<TBias> bias{ bias_shape, _bias_data_type, 1, _quantization_info };
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100171
172 // Fill reference
173 fill(src, 0);
174 fill(weights, 1);
175 fill(bias, 2);
176
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100177 return (act_info.enabled()) ? reference::activation_layer<T>(reference::convolution_layer<T>(src, weights, bias, output_shape, info, dilation, num_groups),
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000178 act_info) :
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100179 reference::convolution_layer<T>(src, weights, bias, output_shape, info, dilation, num_groups);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100180 }
181
Chunosov5124be52017-11-22 20:42:13 +0700182 TensorType _target{};
183 SimpleTensor<T> _reference{};
184 DataType _data_type{};
185 DataType _bias_data_type{};
Michalis Spyroue2503892018-04-23 15:17:31 +0100186 DataLayout _data_layout{};
Chunosov5124be52017-11-22 20:42:13 +0700187 QuantizationInfo _quantization_info{};
188 bool _is_quantized = false;
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100189};
190
191template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosov5124be52017-11-22 20:42:13 +0700192class ConvolutionValidationFixture : public ConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100193{
194public:
195 template <typename...>
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000196 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, PadStrideInfo info, Size2D dilation, bool reshape_weights, DataType data_type,
Michalis Spyroue2503892018-04-23 15:17:31 +0100197 DataLayout data_layout, ActivationLayerInfo act_info)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100198 {
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100199 ConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, info, dilation, reshape_weights,
200 data_type, data_layout,
Michalis Spyroue2503892018-04-23 15:17:31 +0100201 QuantizationInfo(), act_info);
Chunosov5124be52017-11-22 20:42:13 +0700202 }
203};
204
205template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosov5124be52017-11-22 20:42:13 +0700206class ConvolutionValidationQuantizedFixture : public ConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
207{
208public:
209 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +0000210 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, PadStrideInfo info, Size2D dilation, bool reshape_weights, DataType data_type,
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100211 DataLayout data_layout, QuantizationInfo quantization_info, ActivationLayerInfo act_info)
Chunosov5124be52017-11-22 20:42:13 +0700212 {
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100213 ConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, info, dilation, reshape_weights,
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100214 data_type, data_layout, quantization_info, act_info);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100215 }
216};
217} // namespace validation
218} // namespace test
219} // namespace arm_compute
220#endif /* ARM_COMPUTE_TEST_CONVOLUTION_LAYER_FIXTURE */