blob: af59830722f5cba1b2bb39b5f3468642c4b0e688 [file] [log] [blame]
Pablo Tellof5f34bb2017-08-22 13:34:13 +01001/*
giuros01a69a88b2019-01-31 16:29:19 +00002 * Copyright (c) 2017-2019 ARM Limited.
Pablo Tellof5f34bb2017-08-22 13:34:13 +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#include "ConvolutionLayer.h"
25
Pablo Tellof5f34bb2017-08-22 13:34:13 +010026#include "tests/validation/Helpers.h"
27
28namespace arm_compute
29{
30namespace test
31{
32namespace validation
33{
34namespace reference
35{
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010036template <typename T, typename TB>
37SimpleTensor<T> deconvolution_layer(const SimpleTensor<T> &src, const SimpleTensor<T> &weights, const SimpleTensor<TB> &bias, const TensorShape &output_shape,
giuros01a69a88b2019-01-31 16:29:19 +000038 const PadStrideInfo &info)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010039{
40 // Create reference
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010041 const int stride_x = info.stride().first;
42 const int stride_y = info.stride().second;
43 const int weights_width = weights.shape().x();
44 const int weights_height = weights.shape().y();
45 const int weights_upper_dims = weights.shape().total_size() / (weights_width * weights_height);
46
47 // Find the upsampled dimensions
giuros01a69a88b2019-01-31 16:29:19 +000048 unsigned int out_x = (src.shape().x() - 1) * stride_x + 1;
49 unsigned int out_y = (src.shape().y() - 1) * stride_y + 1;
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010050
51 // Find the padding needed for the convolution with stride 1 in order to match output shape
52 unsigned int padx = output_shape.x() - (out_x - weights_width + 1);
53 unsigned int pady = output_shape.y() - (out_y - weights_height + 1);
54 out_x += padx;
55 out_y += pady;
56
Pablo Tellof5f34bb2017-08-22 13:34:13 +010057 TensorShape scaled_shape = src.shape();
Michalis Spyrou780db4e2017-11-23 09:49:51 +000058 scaled_shape.set(0, out_x);
59 scaled_shape.set(1, out_y);
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010060 SimpleTensor<T> scaled{ scaled_shape, src.data_type(), 1, src.quantization_info() };
Pablo Tellof5f34bb2017-08-22 13:34:13 +010061
Michalis Spyrou780db4e2017-11-23 09:49:51 +000062 const int width_in = src.shape().x();
63 const int height_in = src.shape().y();
64 const int width_scaled = scaled.shape().x();
65 const int height_scaled = scaled.shape().y();
66 const int num_2d_slices = src.shape().total_size() / (width_in * height_in);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000067 ARM_COMPUTE_ERROR_ON(info.pad().first > (weights.shape().x() - 1));
68
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010069 if(src.data_type() == DataType::QASYMM8)
Pablo Tellof5f34bb2017-08-22 13:34:13 +010070 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010071 const uint8_t quantized_zero = src.quantization_info().uniform().offset;
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010072 std::fill_n(scaled.data(), scaled.num_elements(), quantized_zero);
73 }
74 else
75 {
76 std::fill_n(scaled.data(), scaled.num_elements(), T(0));
Pablo Tellof5f34bb2017-08-22 13:34:13 +010077 }
78
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010079 // Flip weights by 180 degrees
80 SimpleTensor<T> weights_flipped{ weights.shape(), weights.data_type(), 1, weights.quantization_info() };
81 for(int ud = 0; ud < weights_upper_dims; ++ud)
82 {
83 const int offset = ud * weights_width * weights_height;
84 for(int y = 0; y < weights_height; ++y)
85 {
86 for(int x = 0; x < weights_width; ++x)
87 {
88 weights_flipped[offset + (weights_height - 1 - y) * weights_width + (weights_width - 1 - x)] = weights[offset + y * weights_width + x];
89 }
90 }
91 }
92
Pablo Tellof5f34bb2017-08-22 13:34:13 +010093 for(int slice = 0; slice < num_2d_slices; ++slice)
94 {
95 const int offset_slice_in = slice * width_in * height_in;
96 const int offset_slice_out = slice * width_scaled * height_scaled;
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010097 const int start_x = padx / 2;
giuros01a69a88b2019-01-31 16:29:19 +000098 const int start_y = pady / 2;
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +010099 const int end_y = height_scaled - pady / 2;
giuros01a69a88b2019-01-31 16:29:19 +0000100 const int end_x = width_scaled - padx / 2;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000101
102 for(int yi = start_y, in_y = 0; yi < end_y; yi += stride_y, in_y++)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100103 {
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000104 for(int xi = start_x, in_x = 0; xi < end_x; xi += stride_x, in_x++)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100105 {
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000106 const T *in = src.data() + offset_slice_in + in_y * width_in + in_x;
107 T *out = scaled.data() + offset_slice_out + xi + yi * width_scaled;
108 *out = *in;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100109 }
110 }
111 }
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000112
113 const PadStrideInfo conv_info(1, 1, 0, 0, 0, 0, DimensionRoundingType::CEIL);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100114 return convolution_layer(scaled, weights_flipped, bias, output_shape, conv_info);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100115}
116
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +0100117template SimpleTensor<uint8_t> deconvolution_layer(const SimpleTensor<uint8_t> &src, const SimpleTensor<uint8_t> &weights, const SimpleTensor<int32_t> &bias, const TensorShape &output_shape,
giuros01a69a88b2019-01-31 16:29:19 +0000118 const PadStrideInfo &info);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100119template SimpleTensor<float> deconvolution_layer(const SimpleTensor<float> &src, const SimpleTensor<float> &weights, const SimpleTensor<float> &bias, const TensorShape &output_shape,
giuros01a69a88b2019-01-31 16:29:19 +0000120 const PadStrideInfo &info);
Georgios Pinitas793f87d2018-05-18 20:08:58 +0100121template SimpleTensor<half> deconvolution_layer(const SimpleTensor<half> &src, const SimpleTensor<half> &weights, const SimpleTensor<half> &bias, const TensorShape &output_shape,
giuros01a69a88b2019-01-31 16:29:19 +0000122 const PadStrideInfo &info);
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100123} // namespace reference
124} // namespace validation
125} // namespace test
126} // namespace arm_compute