blob: 295fb5c99726038a82234721d92815ebc0a00eb5 [file] [log] [blame]
Michalis Spyrou780db4e2017-11-23 09:49:51 +00001/*
Isabella Gottardi0a1090a2019-02-14 18:07:36 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyrou780db4e2017-11-23 09:49:51 +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 "arm_compute/core/CL/kernels/CLDeconvolutionLayerUpsampleKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000028#include "arm_compute/core/CL/CLValidate.h"
Michalis Spyrou780db4e2017-11-23 09:49:51 +000029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
34
35using namespace arm_compute;
36
37CLDeconvolutionLayerUpsampleKernel::CLDeconvolutionLayerUpsampleKernel()
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010038 : _input(nullptr), _output(nullptr), _info()
Michalis Spyrou780db4e2017-11-23 09:49:51 +000039{
40}
41
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010042Status CLDeconvolutionLayerUpsampleKernel::validate(const ITensorInfo *input, const ITensorInfo *output,
Michalis Spyrou780db4e2017-11-23 09:49:51 +000043 const PadStrideInfo &info)
44{
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000046 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Michele Di Giorgio9fef38a2018-07-06 18:06:58 +010047 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000048 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000049 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010050
51 const DataLayout data_layout = input->data_layout();
52
53 const size_t idx_w = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
54 const size_t idx_h = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
55 const size_t idx_c = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
56
57 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(idx_w) == 0);
58 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(idx_h) == 0);
Anthony Barbier21f67d62018-02-16 15:17:48 +000059 ARM_COMPUTE_RETURN_ERROR_ON(!info.padding_is_symmetric());
Michalis Spyrou780db4e2017-11-23 09:49:51 +000060
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010061 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(idx_c) != output->dimension(idx_c));
62 for(size_t i = 3; i < Coordinates::num_max_dimensions; ++i)
Michalis Spyrou780db4e2017-11-23 09:49:51 +000063 {
64 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
65 }
66
Michalis Spyrou780db4e2017-11-23 09:49:51 +000067 return Status{};
68}
69
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010070void CLDeconvolutionLayerUpsampleKernel::configure(const ICLTensor *input, ICLTensor *output,
Michalis Spyrou780db4e2017-11-23 09:49:51 +000071 const PadStrideInfo &info)
72{
73 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
74
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010075 _input = input;
76 _output = output;
77 _info = info;
Michalis Spyrou780db4e2017-11-23 09:49:51 +000078
79 // Perform validation step
Manuel Bottinic1b76fa2019-06-17 12:04:40 +010080 ARM_COMPUTE_ERROR_THROW_ON(CLDeconvolutionLayerUpsampleKernel::validate(input->info(), output->info(), info));
Michalis Spyrou780db4e2017-11-23 09:49:51 +000081
82 // Create kernel
Georgios Pinitas793f87d2018-05-18 20:08:58 +010083 CLBuildOptions build_opts;
84 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
85 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("deconvolution_upsample", build_opts.options()));
Michalis Spyrou780db4e2017-11-23 09:49:51 +000086
87 constexpr unsigned int num_elems_processed_per_iteration = 1;
88
89 // Configure kernel window
Georgios Pinitas59716fa2018-02-13 19:57:31 +000090 Window win = calculate_max_window(*output->info(), Steps(num_elems_processed_per_iteration));
91 AccessWindowHorizontal output_access(output->info(), 0, num_elems_processed_per_iteration);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000092 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
93
Anthony Barbierb6eb3532018-08-08 13:20:04 +010094 ICLKernel::configure_internal(win);
Michalis Spyrou780db4e2017-11-23 09:49:51 +000095}
96
97void CLDeconvolutionLayerUpsampleKernel::run(const Window &window, cl::CommandQueue &queue)
98{
99 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
100 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
101
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100102 const DataLayout data_layout = _input->info()->data_layout();
103
104 const size_t idx_w = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
105 const size_t idx_h = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
106
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000107 const int out_start_x = _info.pad().first;
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100108 const int out_end_x = _output->info()->dimension(idx_w) - _info.pad().first + _info.stride().first - 1;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000109 const int out_step_x = _info.stride().first;
110
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100111 const int out_start_y = _info.pad().second;
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100112 const int out_end_y = _output->info()->dimension(idx_h) - _info.pad().second + _info.stride().second - 1;
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000113 const int out_step_y = _info.stride().second;
114
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100115 switch(data_layout)
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000116 {
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100117 case DataLayout::NCHW:
118 {
119 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
120
121 Window slice_out = collapsed.first_slice_window_3D();
122 slice_out.set(Window::DimX, Window::Dimension(out_start_x, out_end_x, out_step_x));
123 slice_out.set(Window::DimY, Window::Dimension(out_start_y, out_end_y, out_step_y));
124
125 Window slice_in = collapsed.first_slice_window_3D();
126
127 do
128 {
129 unsigned int idx = 0;
130 add_3D_tensor_argument(idx, _input, slice_in);
131 add_3D_tensor_argument(idx, _output, slice_out);
132 enqueue(queue, *this, slice_out);
133 }
134 while(collapsed.slide_window_slice_3D(slice_in) && collapsed.slide_window_slice_3D(slice_out));
135 break;
136 }
137 case DataLayout::NHWC:
138 {
139 // NOTE: not collapsing in NHWC
140 Window slice_out = window.first_slice_window_3D();
141 slice_out.set(Window::DimY, Window::Dimension(out_start_x, out_end_x, out_step_x));
142 slice_out.set(Window::DimZ, Window::Dimension(out_start_y, out_end_y, out_step_y));
143
144 Window slice_in = window.first_slice_window_3D();
145
146 do
147 {
148 unsigned int idx = 0;
149 add_3D_tensor_argument(idx, _input, slice_in);
150 add_3D_tensor_argument(idx, _output, slice_out);
151 enqueue(queue, *this, slice_out);
152 }
153 while(window.slide_window_slice_3D(slice_in) && window.slide_window_slice_3D(slice_out));
154 break;
155 }
156 default:
157 ARM_COMPUTE_ERROR("Unsupported data layout");
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000158 }
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000159}