blob: e37063e2e50ccfccad87a94783683774fbaa42b7 [file] [log] [blame]
Moritz Pflanzerb3d25792017-07-26 11:49:37 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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 */
Giorgio Arenac0f54432018-03-16 14:02:34 +000024#include "arm_compute/core/Helpers.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010025#include "arm_compute/core/TensorShape.h"
26#include "arm_compute/core/Types.h"
Giorgio Arenac0f54432018-03-16 14:02:34 +000027#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010028#include "tests/AssetsLibrary.h"
29#include "tests/Globals.h"
30#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/framework/Asserts.h"
32#include "tests/framework/Fixture.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/validation/Helpers.h"
34#include "tests/validation/fixtures/ConvolutionLayerFixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/ConvolutionLayer.h"
Giorgio Arenac0f54432018-03-16 14:02:34 +000036#include "tests/validation/reference/Permute.h"
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010037
38#include <random>
39
40namespace arm_compute
41{
42namespace test
43{
44namespace validation
45{
Giorgio Arenac0f54432018-03-16 14:02:34 +000046using namespace arm_compute::misc::shape_calculator;
47
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010048template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosovd621bca2017-11-03 17:33:15 +070049class DirectConvolutionValidationGenericFixture : public framework::Fixture
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010050{
51public:
Sheri Zhang681f2d42020-02-20 11:23:08 +000052 using TBias = typename std::conditional < std::is_same<T, uint8_t>::value || std::is_same<T, int8_t>::value, int32_t, T >::type;
Georgios Pinitas540d0082017-11-17 10:55:00 +000053
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010054 template <typename...>
Chunosovd621bca2017-11-03 17:33:15 +070055 void setup(TensorShape input_shape, int stride_x, int stride_y, int pad_x, int pad_y, unsigned int kernel_size, unsigned int num_kernels,
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010056 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, DataLayout data_layout)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010057 {
Chunosovd621bca2017-11-03 17:33:15 +070058 _quantization_info = quantization_info;
59 _data_type = data_type;
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +010060
Giorgio Arenac0f54432018-03-16 14:02:34 +000061 TensorShape weights_shape(kernel_size, kernel_size, input_shape.z(), num_kernels);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010062 const TensorShape bias_shape(num_kernels);
63 const PadStrideInfo info(stride_x, stride_y, pad_x, pad_y, DimensionRoundingType::FLOOR);
Georgios Pinitas540d0082017-11-17 10:55:00 +000064 const DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010065
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010066 TensorInfo input_info = TensorInfo(input_shape, 1, data_type);
67 TensorInfo weights_info = TensorInfo(weights_shape, 1, data_type);
Giorgio Arenac0f54432018-03-16 14:02:34 +000068
Giorgio Arenac0f54432018-03-16 14:02:34 +000069 const TensorShape output_shape = compute_deep_convolution_shape(input_info, weights_info, info);
70
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010071 _target = compute_target(input_shape, weights_shape, bias_shape, output_shape, info, data_type, bias_data_type, quantization_info, act_info, data_layout);
72 _reference = compute_reference(input_shape, weights_shape, bias_shape, output_shape, info, data_type, bias_data_type, quantization_info, act_info);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010073 }
74
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000075 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +000076 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, PadStrideInfo info, Size2D dilation,
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010077 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, DataLayout data_layout)
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000078 {
Giorgio Arenac0f54432018-03-16 14:02:34 +000079 ARM_COMPUTE_ERROR_ON(data_layout == DataLayout::UNKNOWN);
Alex Gilday7da29b62018-03-23 14:16:00 +000080 ARM_COMPUTE_UNUSED(dilation);
81
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000082 _quantization_info = quantization_info;
83 _data_type = data_type;
84
85 const DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
86
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010087 _target = compute_target(input_shape, weights_shape, bias_shape, output_shape, info, data_type, bias_data_type, quantization_info, act_info, data_layout);
88 _reference = compute_reference(input_shape, weights_shape, bias_shape, output_shape, info, data_type, bias_data_type, quantization_info, act_info);
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000089 }
90
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +010091protected:
92 template <typename U>
93 void fill(U &&tensor, int i)
94 {
95 switch(tensor.data_type())
96 {
Chunosovd621bca2017-11-03 17:33:15 +070097 case DataType::QASYMM8:
98 {
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +000099 std::uniform_int_distribution<uint8_t> distribution(0, 50);
Chunosovd621bca2017-11-03 17:33:15 +0700100 library->fill(tensor, distribution, i);
101 break;
102 }
Sheri Zhang681f2d42020-02-20 11:23:08 +0000103 case DataType::QASYMM8_SIGNED:
104 {
Sheri Zhang970353e2020-03-19 14:29:49 +0000105 // Use small input range to avoid all the test results being saturated at the end.
106 std::uniform_int_distribution<int8_t> distribution(-25, 25);
Sheri Zhang681f2d42020-02-20 11:23:08 +0000107 library->fill(tensor, distribution, i);
108 break;
109 }
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100110 case DataType::F16:
111 case DataType::F32:
112 {
Pablo Tello3d319462018-06-21 15:13:17 +0100113 std::uniform_real_distribution<> distribution(-1.f, 1.f);
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100114 library->fill(tensor, distribution, i);
115 break;
116 }
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700117 case DataType::S32:
118 {
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +0000119 std::uniform_int_distribution<int32_t> distribution(-5, 5);
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700120 library->fill(tensor, distribution, i);
121 break;
122 }
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100123 default:
124 library->fill_tensor_uniform(tensor, i);
125 }
126 }
127
Giorgio Arena563494c2018-04-30 17:29:41 +0100128 TensorType compute_target(TensorShape input_shape, TensorShape weights_shape, const TensorShape &bias_shape, TensorShape output_shape, const PadStrideInfo &info,
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100129 DataType data_type, DataType bias_data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, const DataLayout &data_layout)
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100130 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100131 if(data_layout == DataLayout::NHWC)
132 {
133 permute(input_shape, PermutationVector(2U, 0U, 1U));
134 permute(weights_shape, PermutationVector(2U, 0U, 1U));
135 permute(output_shape, PermutationVector(2U, 0U, 1U));
136 }
137
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100138 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100139 TensorType src = create_tensor<TensorType>(input_shape, data_type, 1, quantization_info, data_layout);
140 TensorType weights = create_tensor<TensorType>(weights_shape, data_type, 1, quantization_info, data_layout);
141 TensorType bias = create_tensor<TensorType>(bias_shape, bias_data_type, 1, quantization_info);
142 TensorType dst = create_tensor<TensorType>(output_shape, data_type, 1, quantization_info, data_layout);
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100143
144 // Create and configure function
145 FunctionType conv;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000146 conv.configure(&src, &weights, &bias, &dst, info, act_info);
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100147
148 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
149 ARM_COMPUTE_EXPECT(weights.info()->is_resizable(), framework::LogLevel::ERRORS);
150 ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
151 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
152
153 // Allocate tensors
154 src.allocator()->allocate();
155 weights.allocator()->allocate();
156 bias.allocator()->allocate();
157 dst.allocator()->allocate();
158
159 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
160 ARM_COMPUTE_EXPECT(!weights.info()->is_resizable(), framework::LogLevel::ERRORS);
161 ARM_COMPUTE_EXPECT(!bias.info()->is_resizable(), framework::LogLevel::ERRORS);
162 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
163
164 // Fill tensors
165 fill(AccessorType(src), 0);
166 fill(AccessorType(weights), 1);
167 fill(AccessorType(bias), 2);
168
169 // Compute NEConvolutionLayer function
170 conv.run();
171
172 return dst;
173 }
174
175 SimpleTensor<T> compute_reference(const TensorShape &input_shape, const TensorShape &weights_shape, const TensorShape &bias_shape, const TensorShape &output_shape, const PadStrideInfo &info,
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100176 DataType data_type, DataType bias_data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info)
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100177 {
178 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100179 SimpleTensor<T> src{ input_shape, data_type, 1, quantization_info };
180 SimpleTensor<T> weights{ weights_shape, data_type, 1, quantization_info };
181 SimpleTensor<TBias> bias{ bias_shape, bias_data_type, 1, quantization_info };
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100182
183 // Fill reference
184 fill(src, 0);
185 fill(weights, 1);
186 fill(bias, 2);
187
Giorgio Arena563494c2018-04-30 17:29:41 +0100188 SimpleTensor<T> dst = reference::convolution_layer<T>(src, weights, bias, output_shape, info);
Giorgio Arenac0f54432018-03-16 14:02:34 +0000189 return (act_info.enabled()) ? reference::activation_layer<T>(dst, act_info) : dst;
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100190 }
Chunosovd621bca2017-11-03 17:33:15 +0700191 TensorType _target{};
192 SimpleTensor<T> _reference{};
Chunosovd621bca2017-11-03 17:33:15 +0700193 QuantizationInfo _quantization_info{};
194 DataType _data_type{};
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100195};
196
197template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosovd621bca2017-11-03 17:33:15 +0700198class DirectConvolutionValidationFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100199{
200public:
201 template <typename...>
Giorgio Arenac0f54432018-03-16 14:02:34 +0000202 void setup(TensorShape input_shape, int stride_x, int stride_y, int pad_x, int pad_y, unsigned int kernel_size, unsigned int num_kernels, DataType data_type, ActivationLayerInfo act_info,
203 DataLayout data_layout)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100204 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100205 DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, stride_x, stride_y, pad_x, pad_y, kernel_size, num_kernels, data_type, QuantizationInfo(),
Giorgio Arenac0f54432018-03-16 14:02:34 +0000206 act_info, data_layout);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100207 }
208};
Chunosovd621bca2017-11-03 17:33:15 +0700209
210template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosovd621bca2017-11-03 17:33:15 +0700211class DirectConvolutionValidationQuantizedFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
212{
213public:
214 template <typename...>
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000215 void setup(TensorShape input_shape, int stride_x, int stride_y, int pad_x, int pad_y, unsigned int kernel_size, unsigned int num_kernels, DataType data_type, QuantizationInfo quantization_info,
Giorgio Arenae620a832020-02-17 16:33:20 +0000216 ActivationLayerInfo act_info, DataLayout data_layout)
Chunosovd621bca2017-11-03 17:33:15 +0700217 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100218 DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, stride_x, stride_y, pad_x, pad_y, kernel_size, num_kernels, data_type, quantization_info,
Giorgio Arenae620a832020-02-17 16:33:20 +0000219 act_info, data_layout);
Chunosovd621bca2017-11-03 17:33:15 +0700220 }
221};
222
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000223template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
224class DirectConvolutionValidationWithTensorShapesQuantizedFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
225{
226public:
227 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +0000228 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, PadStrideInfo info, Size2D dilation,
Giorgio Arenae620a832020-02-17 16:33:20 +0000229 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, DataLayout data_layout)
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000230 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100231 DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, info, dilation, data_type, quantization_info,
Giorgio Arenae620a832020-02-17 16:33:20 +0000232 act_info, data_layout);
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000233 }
234};
235
236template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
237class DirectConvolutionValidationWithTensorShapesFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
238{
239public:
240 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +0000241 void setup(TensorShape input_shape, TensorShape weights_shape, TensorShape bias_shape, TensorShape output_shape, PadStrideInfo info, Size2D dilation,
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000242 DataType data_type, ActivationLayerInfo act_info)
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000243 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100244 DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, info, dilation, data_type, QuantizationInfo(),
Giorgio Arenac0f54432018-03-16 14:02:34 +0000245 act_info, DataLayout::NCHW);
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000246 }
247};
248
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100249} // namespace validation
250} // namespace test
251} // namespace arm_compute