blob: fe558ba4aff27a61cde492f832e009595b93eb72 [file] [log] [blame]
Anthony Barbier8140e1e2017-12-14 23:48:46 +00001/*
Anthony Barbier06ea0482018-02-22 15:45:35 +00002 * Copyright (c) 2017-2018 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
26#include "tests/validation/FixedPoint.h"
27#include "tests/validation/Helpers.h"
Jenkinsb3a371b2018-05-23 11:36:53 +010028#include "tests/validation/reference/Convolution3d.h"
29#include "tests/validation/reference/Permute.h"
Anthony Barbier8140e1e2017-12-14 23:48:46 +000030#include "tests/validation/reference/Utils.h"
31#include "tests/validation/reference/UtilsQuantizedAsymm.h"
32
33#include "tests/framework/Asserts.h"
34
35#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
36
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace reference
44{
45namespace
46{
Anthony Barbier8140e1e2017-12-14 23:48:46 +000047} // namespace
48
49template <typename T, typename TB>
Jenkinsb3a371b2018-05-23 11:36:53 +010050SimpleTensor<T> convolution_layer_nchw(const SimpleTensor<T> &src, const SimpleTensor<T> &weights, const SimpleTensor<TB> &bias, SimpleTensor<T> &dst, const PadStrideInfo &info,
51 const Size2D &dilation)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000052{
Anthony Barbier8140e1e2017-12-14 23:48:46 +000053 // Compute reference
54 const int width_in = src.shape().x();
55 const int height_in = src.shape().y();
56 const int depth_in = src.shape().z();
57 const int width_out = dst.shape().x();
58 const int height_out = dst.shape().y();
59 const int depth_out = dst.shape().z();
60 const int width_weights = weights.shape().x();
61 const int height_weights = weights.shape().y();
62 const int depth_weights = weights.shape().z();
Anthony Barbier06ea0482018-02-22 15:45:35 +000063 const int pad_left = info.pad_left();
64 const int pad_top = info.pad_top();
65 const int stride_xi = info.stride().first;
66 const int stride_yi = info.stride().second;
67
Jenkinsb3a371b2018-05-23 11:36:53 +010068 auto output_wh = scaled_dimensions(width_in, height_in, width_weights, height_weights, info, dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +000069
Jenkinsb3a371b2018-05-23 11:36:53 +010070 const int start_xi = (dilation.x() * (width_weights - 1) + 1) / 2 - pad_left;
71 const int start_yi = (dilation.y() * (height_weights - 1) + 1) / 2 - pad_top;
Anthony Barbier06ea0482018-02-22 15:45:35 +000072 const int end_xi = output_wh.first * stride_xi;
73 const int end_yi = output_wh.second * stride_yi;
Anthony Barbier8140e1e2017-12-14 23:48:46 +000074 const int num_batches = src.shape().total_size() / (width_in * height_in * depth_in);
75
76 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 {
82 for(int ofm = 0; ofm < depth_out; ++ofm)
83 {
84 // Compute input and output offsets
85 const int offset_in = r * width_in * height_in * depth_in;
86 const int xo = (xi - start_xi) / stride_xi;
87 const int yo = (yi - start_yi) / stride_yi;
88 const int offset_out = xo + yo * width_out + ofm * width_out * height_out + r * width_out * height_out * depth_out;
89
90 ARM_COMPUTE_ASSERT(xo < width_out);
91 ARM_COMPUTE_ASSERT(yo < height_out);
92
93 // Compute 3D convolution
Jenkinsb3a371b2018-05-23 11:36:53 +010094 convolution_3d::detail::convolution3d(src, weights, bias, dst,
95 offset_in, ofm * width_weights * height_weights * depth_weights, ofm, offset_out,
96 xi, yi,
97 width_in, height_in, depth_in,
98 width_weights, height_weights, dilation.x(), dilation.y());
Anthony Barbier8140e1e2017-12-14 23:48:46 +000099 }
100 }
101 }
102 }
103
104 return dst;
105}
Jenkinsb3a371b2018-05-23 11:36:53 +0100106template <typename T, typename TB>
107SimpleTensor<T> convolution_layer(const SimpleTensor<T> &src, const SimpleTensor<T> &weights, const SimpleTensor<TB> &bias, const TensorShape &output_shape, const PadStrideInfo &info,
108 const Size2D &dilation)
109{
110 // Create reference
111 SimpleTensor<T> dst{ output_shape, src.data_type(), 1, src.fixed_point_position(), src.quantization_info() };
112
113 if(src.data_layout() == DataLayout::NHWC)
114 {
115 SimpleTensor<T> src_nchw = reference::permute<T>(src, PermutationVector(1U, 2U, 0U));
116 SimpleTensor<T> weights_nchw = reference::permute<T>(weights, PermutationVector(1U, 2U, 0U));
117 SimpleTensor<T> dst_nchw = reference::permute<T>(dst, PermutationVector(1U, 2U, 0U));
118
119 return reference::permute<T>(convolution_layer_nchw(src_nchw, weights_nchw, bias, dst_nchw, info, dilation), PermutationVector(2U, 0U, 1U));
120 }
121 else
122 {
123 return convolution_layer_nchw(src, weights, bias, dst, info, dilation);
124 }
125}
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000126
127template SimpleTensor<float> convolution_layer(const SimpleTensor<float> &src, const SimpleTensor<float> &weights, const SimpleTensor<float> &bias, const TensorShape &output_shape,
Jenkinsb3a371b2018-05-23 11:36:53 +0100128 const PadStrideInfo &info, const Size2D &dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000129template SimpleTensor<half> convolution_layer(const SimpleTensor<half> &src, const SimpleTensor<half> &weights, const SimpleTensor<half> &bias, const TensorShape &output_shape,
Jenkinsb3a371b2018-05-23 11:36:53 +0100130 const PadStrideInfo &info, const Size2D &dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000131template SimpleTensor<qint8_t> convolution_layer(const SimpleTensor<qint8_t> &src, const SimpleTensor<qint8_t> &weights, const SimpleTensor<qint8_t> &bias, const TensorShape &output_shape,
Jenkinsb3a371b2018-05-23 11:36:53 +0100132 const PadStrideInfo &info, const Size2D &dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000133template SimpleTensor<qint16_t> convolution_layer(const SimpleTensor<qint16_t> &src, const SimpleTensor<qint16_t> &weights, const SimpleTensor<qint16_t> &bias, const TensorShape &output_shape,
Jenkinsb3a371b2018-05-23 11:36:53 +0100134 const PadStrideInfo &info, const Size2D &dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000135template SimpleTensor<uint8_t> convolution_layer(const SimpleTensor<uint8_t> &src, const SimpleTensor<uint8_t> &weights, const SimpleTensor<int32_t> &bias, const TensorShape &output_shape,
Jenkinsb3a371b2018-05-23 11:36:53 +0100136 const PadStrideInfo &info, const Size2D &dilation);
Anthony Barbier8140e1e2017-12-14 23:48:46 +0000137} // namespace reference
138} // namespace validation
139} // namespace test
Jenkinsb3a371b2018-05-23 11:36:53 +0100140} // namespace arm_compute