blob: 9675901542243d504322f73c0f7f4b22b818cf21 [file] [log] [blame]
Anthony Barbier8140e1e2017-12-14 23:48:46 +00001/*
Jenkins6a7771e2020-05-28 11:28:36 +01002 * Copyright (c) 2017-2020 ARM Limited.
Anthony Barbier8140e1e2017-12-14 23:48:46 +00003 *
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 "ConvolutionLayer.h"
25
Anthony Barbier8140e1e2017-12-14 23:48:46 +000026#include "tests/validation/Helpers.h"
Jenkinsb3a371b2018-05-23 11:36:53 +010027#include "tests/validation/reference/Convolution3d.h"
28#include "tests/validation/reference/Permute.h"
Anthony Barbier8140e1e2017-12-14 23:48:46 +000029#include "tests/validation/reference/Utils.h"
30#include "tests/validation/reference/UtilsQuantizedAsymm.h"
31
32#include "tests/framework/Asserts.h"
33
34#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
35
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42namespace reference
43{
Jenkins0e205f72019-11-28 16:53:35 +000044template <typename T, typename TW, typename TB>
45SimpleTensor<T> convolution_layer_nchw(const SimpleTensor<T> &src, const SimpleTensor<TW> &weights, const SimpleTensor<TB> &bias, SimpleTensor<T> &dst, const PadStrideInfo &info,
Jenkins52ba29e2018-08-29 15:32:11 +000046 const Size2D &dilation, unsigned int num_groups)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000047{
Jenkins52ba29e2018-08-29 15:32:11 +000048 ARM_COMPUTE_ERROR_ON((src.shape()[2] / num_groups) != weights.shape()[2]);
49
Anthony Barbier8140e1e2017-12-14 23:48:46 +000050 // Compute reference
51 const int width_in = src.shape().x();
52 const int height_in = src.shape().y();
53 const int depth_in = src.shape().z();
54 const int width_out = dst.shape().x();
55 const int height_out = dst.shape().y();
56 const int depth_out = dst.shape().z();
57 const int width_weights = weights.shape().x();
58 const int height_weights = weights.shape().y();
59 const int depth_weights = weights.shape().z();
Anthony Barbier06ea0482018-02-22 15:45:35 +000060 const int pad_left = info.pad_left();
61 const int pad_top = info.pad_top();
62 const int stride_xi = info.stride().first;
63 const int stride_yi = info.stride().second;
64
Jenkinsb3a371b2018-05-23 11:36:53 +010065 auto output_wh = scaled_dimensions(width_in, height_in, width_weights, height_weights, info, dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000066
Jenkinsb3a371b2018-05-23 11:36:53 +010067 const int start_xi = (dilation.x() * (width_weights - 1) + 1) / 2 - pad_left;
68 const int start_yi = (dilation.y() * (height_weights - 1) + 1) / 2 - pad_top;
Anthony Barbier06ea0482018-02-22 15:45:35 +000069 const int end_xi = output_wh.first * stride_xi;
70 const int end_yi = output_wh.second * stride_yi;
Anthony Barbier8140e1e2017-12-14 23:48:46 +000071 const int num_batches = src.shape().total_size() / (width_in * height_in * depth_in);
Jenkins6a7771e2020-05-28 11:28:36 +010072
73#if defined(_OPENMP) && !( defined(__arm__) && defined(__ANDROID__))
74 #pragma omp parallel for collapse(5)
75#endif /* _OPENMP */
Anthony Barbier8140e1e2017-12-14 23:48:46 +000076 for(int r = 0; r < num_batches; ++r)
77 {
78 for(int yi = start_yi; yi < start_yi + end_yi; yi += stride_yi)
79 {
80 for(int xi = start_xi; xi < start_xi + end_xi; xi += stride_xi)
81 {
Jenkins52ba29e2018-08-29 15:32:11 +000082 for(int group = 0; group < static_cast<int>(num_groups); ++group)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000083 {
Jenkins52ba29e2018-08-29 15:32:11 +000084 for(int ofm = 0; ofm < static_cast<int>(depth_out / num_groups); ++ofm)
85 {
86 // Compute input and output offsets
87 const int offset_in = r * width_in * height_in * depth_in + (group * (depth_in / num_groups) * width_in * height_in);
88 const int xo = (xi - start_xi) / stride_xi;
89 const int yo = (yi - start_yi) / stride_yi;
90 const int offset_out = xo + yo * width_out + ((ofm + group * (depth_out / num_groups)) * width_out * height_out) + (r * width_out * height_out * depth_out);
91 const int offset_w = (ofm + group * (depth_out / num_groups)) * width_weights * height_weights * depth_weights;
92 const int offset_b = (ofm + group * (depth_out / num_groups));
Anthony Barbier8140e1e2017-12-14 23:48:46 +000093
Jenkins52ba29e2018-08-29 15:32:11 +000094 ARM_COMPUTE_ASSERT(xo < width_out);
95 ARM_COMPUTE_ASSERT(yo < height_out);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000096
Jenkins52ba29e2018-08-29 15:32:11 +000097 // Compute 3D convolution
98 convolution_3d::detail::convolution3d(src, weights, bias, dst,
99 offset_in, offset_w, offset_b, offset_out,
100 xi, yi,
101 width_in, height_in, (depth_in / num_groups),
Jenkins0e205f72019-11-28 16:53:35 +0000102 width_weights, height_weights, dilation.x(), dilation.y(), ofm);
Jenkins52ba29e2018-08-29 15:32:11 +0000103 }
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000104 }
105 }
106 }
107 }
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000108 return dst;
109}
Jenkins0e205f72019-11-28 16:53:35 +0000110template <typename T, typename TW, typename TB>
111SimpleTensor<T> convolution_layer(const SimpleTensor<T> &src, const SimpleTensor<TW> &weights, const SimpleTensor<TB> &bias, const TensorShape &output_shape, const PadStrideInfo &info,
Jenkins4ba87db2019-05-23 17:11:51 +0100112 const Size2D &dilation, unsigned int num_groups, QuantizationInfo out_quant_info)
Jenkinsb3a371b2018-05-23 11:36:53 +0100113{
Jenkins4ba87db2019-05-23 17:11:51 +0100114 // if no explicit quantization has been set you the same as src
115 if(out_quant_info == QuantizationInfo())
116 {
117 out_quant_info = src.quantization_info();
118 }
Jenkinsb3a371b2018-05-23 11:36:53 +0100119 // Create reference
Jenkins4ba87db2019-05-23 17:11:51 +0100120 SimpleTensor<T> dst{ output_shape, src.data_type(), 1, out_quant_info };
Jenkinsb3a371b2018-05-23 11:36:53 +0100121
Jenkins6a7771e2020-05-28 11:28:36 +0100122 return convolution_layer_nchw(src, weights, bias, dst, info, dilation, num_groups);
Jenkinsb3a371b2018-05-23 11:36:53 +0100123}
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000124
125template SimpleTensor<float> convolution_layer(const SimpleTensor<float> &src, const SimpleTensor<float> &weights, const SimpleTensor<float> &bias, const TensorShape &output_shape,
Jenkins4ba87db2019-05-23 17:11:51 +0100126 const PadStrideInfo &info, const Size2D &dilation, unsigned int num_groups, QuantizationInfo out_quant_info);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000127template SimpleTensor<half> convolution_layer(const SimpleTensor<half> &src, const SimpleTensor<half> &weights, const SimpleTensor<half> &bias, const TensorShape &output_shape,
Jenkins4ba87db2019-05-23 17:11:51 +0100128 const PadStrideInfo &info, const Size2D &dilation, unsigned int num_groups, QuantizationInfo out_quant_info);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000129template SimpleTensor<uint8_t> convolution_layer(const SimpleTensor<uint8_t> &src, const SimpleTensor<uint8_t> &weights, const SimpleTensor<int32_t> &bias, const TensorShape &output_shape,
Jenkins4ba87db2019-05-23 17:11:51 +0100130 const PadStrideInfo &info, const Size2D &dilation, unsigned int num_groups, QuantizationInfo out_quant_info);
Jenkins0e205f72019-11-28 16:53:35 +0000131template SimpleTensor<uint8_t> convolution_layer(const SimpleTensor<uint8_t> &src, const SimpleTensor<int8_t> &weights, const SimpleTensor<int32_t> &bias, const TensorShape &output_shape,
132 const PadStrideInfo &info, const Size2D &dilation, unsigned int num_groups, QuantizationInfo out_quant_info);
Jenkins36ccc902020-02-21 11:10:48 +0000133template SimpleTensor<int8_t> convolution_layer(const SimpleTensor<int8_t> &src, const SimpleTensor<int8_t> &weights, const SimpleTensor<int32_t> &bias, const TensorShape &output_shape,
134 const PadStrideInfo &info, const Size2D &dilation, unsigned int num_groups, QuantizationInfo out_quant_info);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000135} // namespace reference
136} // namespace validation
137} // namespace test
Jenkinsb9abeae2018-11-22 11:58:08 +0000138} // namespace arm_compute