blob: e2f955416423fa698e174bbbb9c398c317d56054 [file] [log] [blame]
Moritz Pflanzerb3d25792017-07-26 11:49:37 +01001/*
Alex Gilday7da29b62018-03-23 14:16:00 +00002 * Copyright (c) 2017-2018 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:
Georgios Pinitas540d0082017-11-17 10:55:00 +000052 using TBias = typename std::conditional<std::is_same<typename std::decay<T>::type, uint8_t>::value, int32_t, T>::type;
53
54public:
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010055 template <typename...>
Chunosovd621bca2017-11-03 17:33:15 +070056 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 +010057 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, DataLayout data_layout)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010058 {
Giorgio Arenac0f54432018-03-16 14:02:34 +000059 ARM_COMPUTE_ERROR_ON(data_layout == DataLayout::UNKNOWN);
60
Chunosovd621bca2017-11-03 17:33:15 +070061 _quantization_info = quantization_info;
62 _data_type = data_type;
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +010063
Giorgio Arenac0f54432018-03-16 14:02:34 +000064 TensorShape weights_shape(kernel_size, kernel_size, input_shape.z(), num_kernels);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010065 const TensorShape bias_shape(num_kernels);
66 const PadStrideInfo info(stride_x, stride_y, pad_x, pad_y, DimensionRoundingType::FLOOR);
Georgios Pinitas540d0082017-11-17 10:55:00 +000067 const DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
Moritz Pflanzerb3d25792017-07-26 11:49:37 +010068
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010069 TensorInfo input_info = TensorInfo(input_shape, 1, data_type);
70 TensorInfo weights_info = TensorInfo(weights_shape, 1, data_type);
Giorgio Arenac0f54432018-03-16 14:02:34 +000071
Giorgio Arenac0f54432018-03-16 14:02:34 +000072 const TensorShape output_shape = compute_deep_convolution_shape(input_info, weights_info, info);
73
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010074 _target = compute_target(input_shape, weights_shape, bias_shape, output_shape, info, data_type, bias_data_type, quantization_info, act_info, data_layout);
75 _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 +010076 }
77
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000078 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +000079 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 +010080 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, DataLayout data_layout)
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000081 {
Giorgio Arenac0f54432018-03-16 14:02:34 +000082 ARM_COMPUTE_ERROR_ON(data_layout == DataLayout::UNKNOWN);
Alex Gilday7da29b62018-03-23 14:16:00 +000083 ARM_COMPUTE_UNUSED(dilation);
84
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +000085 _quantization_info = quantization_info;
86 _data_type = data_type;
87
88 const DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type;
89
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010090 _target = compute_target(input_shape, weights_shape, bias_shape, output_shape, info, data_type, bias_data_type, quantization_info, act_info, data_layout);
91 _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 +000092 }
93
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +010094protected:
95 template <typename U>
96 void fill(U &&tensor, int i)
97 {
98 switch(tensor.data_type())
99 {
Chunosovd621bca2017-11-03 17:33:15 +0700100 case DataType::QASYMM8:
101 {
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +0000102 std::uniform_int_distribution<uint8_t> distribution(0, 50);
Chunosovd621bca2017-11-03 17:33:15 +0700103 library->fill(tensor, distribution, i);
104 break;
105 }
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100106 case DataType::F16:
107 case DataType::F32:
108 {
Pablo Tello3d319462018-06-21 15:13:17 +0100109 std::uniform_real_distribution<> distribution(-1.f, 1.f);
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100110 library->fill(tensor, distribution, i);
111 break;
112 }
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700113 case DataType::S32:
114 {
Georgios Pinitas6fdfaa82017-11-29 14:27:24 +0000115 std::uniform_int_distribution<int32_t> distribution(-5, 5);
Dmitry Savenkod7295b72017-11-20 22:00:08 +0700116 library->fill(tensor, distribution, i);
117 break;
118 }
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100119 default:
120 library->fill_tensor_uniform(tensor, i);
121 }
122 }
123
Giorgio Arena563494c2018-04-30 17:29:41 +0100124 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 +0100125 DataType data_type, DataType bias_data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info, const DataLayout &data_layout)
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100126 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100127 if(data_layout == DataLayout::NHWC)
128 {
129 permute(input_shape, PermutationVector(2U, 0U, 1U));
130 permute(weights_shape, PermutationVector(2U, 0U, 1U));
131 permute(output_shape, PermutationVector(2U, 0U, 1U));
132 }
133
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100134 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100135 TensorType src = create_tensor<TensorType>(input_shape, data_type, 1, quantization_info, data_layout);
136 TensorType weights = create_tensor<TensorType>(weights_shape, data_type, 1, quantization_info, data_layout);
137 TensorType bias = create_tensor<TensorType>(bias_shape, bias_data_type, 1, quantization_info);
138 TensorType dst = create_tensor<TensorType>(output_shape, data_type, 1, quantization_info, data_layout);
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100139
140 // Create and configure function
141 FunctionType conv;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000142 conv.configure(&src, &weights, &bias, &dst, info, act_info);
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100143
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 // Allocate tensors
150 src.allocator()->allocate();
151 weights.allocator()->allocate();
152 bias.allocator()->allocate();
153 dst.allocator()->allocate();
154
155 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
156 ARM_COMPUTE_EXPECT(!weights.info()->is_resizable(), framework::LogLevel::ERRORS);
157 ARM_COMPUTE_EXPECT(!bias.info()->is_resizable(), framework::LogLevel::ERRORS);
158 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
159
160 // Fill tensors
161 fill(AccessorType(src), 0);
162 fill(AccessorType(weights), 1);
163 fill(AccessorType(bias), 2);
164
165 // Compute NEConvolutionLayer function
166 conv.run();
167
168 return dst;
169 }
170
171 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 +0100172 DataType data_type, DataType bias_data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info)
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100173 {
174 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100175 SimpleTensor<T> src{ input_shape, data_type, 1, quantization_info };
176 SimpleTensor<T> weights{ weights_shape, data_type, 1, quantization_info };
177 SimpleTensor<TBias> bias{ bias_shape, bias_data_type, 1, quantization_info };
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100178
179 // Fill reference
180 fill(src, 0);
181 fill(weights, 1);
182 fill(bias, 2);
183
Giorgio Arena563494c2018-04-30 17:29:41 +0100184 SimpleTensor<T> dst = reference::convolution_layer<T>(src, weights, bias, output_shape, info);
Giorgio Arenac0f54432018-03-16 14:02:34 +0000185 return (act_info.enabled()) ? reference::activation_layer<T>(dst, act_info) : dst;
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100186 }
Chunosovd621bca2017-11-03 17:33:15 +0700187 TensorType _target{};
188 SimpleTensor<T> _reference{};
Chunosovd621bca2017-11-03 17:33:15 +0700189 QuantizationInfo _quantization_info{};
190 DataType _data_type{};
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100191};
192
193template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosovd621bca2017-11-03 17:33:15 +0700194class DirectConvolutionValidationFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100195{
196public:
197 template <typename...>
Giorgio Arenac0f54432018-03-16 14:02:34 +0000198 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,
199 DataLayout data_layout)
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100200 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100201 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 +0000202 act_info, data_layout);
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100203 }
204};
Chunosovd621bca2017-11-03 17:33:15 +0700205
206template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Chunosovd621bca2017-11-03 17:33:15 +0700207class DirectConvolutionValidationQuantizedFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
208{
209public:
210 template <typename...>
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000211 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,
212 ActivationLayerInfo act_info)
Chunosovd621bca2017-11-03 17:33:15 +0700213 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100214 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 Arenac0f54432018-03-16 14:02:34 +0000215 act_info, DataLayout::NCHW);
Chunosovd621bca2017-11-03 17:33:15 +0700216 }
217};
218
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000219template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
220class DirectConvolutionValidationWithTensorShapesQuantizedFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
221{
222public:
223 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +0000224 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 +0000225 DataType data_type, QuantizationInfo quantization_info, ActivationLayerInfo act_info)
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000226 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100227 DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, weights_shape, bias_shape, output_shape, info, dilation, data_type, quantization_info,
Giorgio Arenac0f54432018-03-16 14:02:34 +0000228 act_info, DataLayout::NCHW);
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000229 }
230};
231
232template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
233class DirectConvolutionValidationWithTensorShapesFixture : public DirectConvolutionValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
234{
235public:
236 template <typename...>
Alex Gilday7da29b62018-03-23 14:16:00 +0000237 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 +0000238 DataType data_type, ActivationLayerInfo act_info)
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000239 {
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100240 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 +0000241 act_info, DataLayout::NCHW);
Jaroslaw Rzepecki2ecbada2017-11-29 13:51:34 +0000242 }
243};
244
Moritz Pflanzerb3d25792017-07-26 11:49:37 +0100245} // namespace validation
246} // namespace test
247} // namespace arm_compute