blob: 60659faaaf970c30b616d19189e115f0a16198cf [file] [log] [blame]
Michele Di Giorgio56dd7262017-07-27 09:53:49 +01001/*
Georgios Pinitas574775c2019-02-18 20:08:02 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michele Di Giorgio56dd7262017-07-27 09:53:49 +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 "arm_compute/core/CL/kernels/CLDequantizationLayerKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitas574775c2019-02-18 20:08:02 +000029#include "arm_compute/core/CL/CLValidate.h"
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010030#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35
Manuel Bottini10c53f12019-07-17 16:11:53 +010036namespace arm_compute
37{
Alex Gilday60954c62018-03-05 16:22:48 +000038namespace
39{
Georgios Pinitas574775c2019-02-18 20:08:02 +000040Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
Alex Gilday60954c62018-03-05 16:22:48 +000041{
Georgios Pinitas574775c2019-02-18 20:08:02 +000042 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas8217c8e2019-11-11 18:24:22 +000043 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QSYMM8_PER_CHANNEL, DataType::QSYMM8, DataType::QSYMM16);
Alex Gilday60954c62018-03-05 16:22:48 +000044
45 if(output->tensor_shape().total_size() > 0)
46 {
Georgios Pinitas574775c2019-02-18 20:08:02 +000047 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(output);
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::F16, DataType::F32);
Alex Gilday60954c62018-03-05 16:22:48 +000049 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
50 }
51
52 return Status{};
53}
54
Georgios Pinitas574775c2019-02-18 20:08:02 +000055std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Alex Gilday60954c62018-03-05 16:22:48 +000056{
Georgios Pinitas574775c2019-02-18 20:08:02 +000057 // Configure kernel window
58 Window win = calculate_max_window(*input, Steps());
59
Alex Gilday60954c62018-03-05 16:22:48 +000060 // Output tensor auto initialization if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010061 auto_init_if_empty(*output, input->tensor_shape(), 1, DataType::F32);
Alex Gilday60954c62018-03-05 16:22:48 +000062
Georgios Pinitas574775c2019-02-18 20:08:02 +000063 // CLDequantizationLayerKernel doesn't need padding so update_window_and_padding() can be skipped
64 Coordinates coord;
65 coord.set_num_dimensions(output->num_dimensions());
66 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
Alex Gilday60954c62018-03-05 16:22:48 +000067
Georgios Pinitas574775c2019-02-18 20:08:02 +000068 return std::make_tuple(Status{}, win);
Alex Gilday60954c62018-03-05 16:22:48 +000069}
70} // namespace
71
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010072CLDequantizationLayerKernel::CLDequantizationLayerKernel()
Georgios Pinitas574775c2019-02-18 20:08:02 +000073 : _input(nullptr), _output(nullptr)
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010074{
75}
76
Georgios Pinitas574775c2019-02-18 20:08:02 +000077void CLDequantizationLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010078{
Georgios Pinitas574775c2019-02-18 20:08:02 +000079 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
80 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010081
Georgios Pinitas574775c2019-02-18 20:08:02 +000082 _input = input;
83 _output = output;
84
85 const int vec_size_x = 16 / output->info()->element_size();
86 const int output_width_x = output->info()->tensor_shape().x();
87 const bool multi_access_x = (output_width_x / vec_size_x > 0);
88
89 // Create and update the window (if needed)
90 Window win = calculate_max_window(*output->info());
91 if(multi_access_x)
92 {
93 win.set(Window::DimX,
94 Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
95 }
96 ICLKernel::configure_internal(win);
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010097
Michalis Spyrou3f632f32019-08-22 16:52:00 +010098 const bool is_quantized_per_channel = is_data_type_quantized_per_channel(input->info()->data_type());
99 std::string kernel_name = "dequantization_layer";
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100100
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100101 // Create kernel
Georgios Pinitas574775c2019-02-18 20:08:02 +0000102 CLBuildOptions build_opts;
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100103 if(!is_quantized_per_channel)
104 {
105 const UniformQuantizationInfo qinfo = input->info()->quantization_info().uniform();
106 const int qoffset = is_data_type_quantized_asymmetric(input->info()->data_type()) ? qinfo.offset : 0;
107 build_opts.add_option("-DSCALE=" + float_to_string_with_full_precision(qinfo.scale));
108 build_opts.add_option("-DOFFSET=" + support::cpp11::to_string(qoffset));
109 }
110 else
111 {
112 kernel_name += "_per_channel";
113 kernel_name += input->info()->data_layout() == DataLayout::NCHW ? "_nchw" : "_nhwc";
114 }
115
Georgios Pinitas574775c2019-02-18 20:08:02 +0000116 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100117 build_opts.add_option("-DDATA_TYPE_SRC=" + get_cl_type_from_data_type(input->info()->data_type()));
118 build_opts.add_option("-DDATA_TYPE_DST=" + get_cl_type_from_data_type(output->info()->data_type()));
Georgios Pinitas574775c2019-02-18 20:08:02 +0000119 build_opts.add_option_if(multi_access_x, "-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(output_width_x - vec_size_x, 0)));
Georgios Pinitas3d13af82019-06-04 13:04:16 +0100120
121 // Create kernel name
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100122 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Alex Gilday60954c62018-03-05 16:22:48 +0000123}
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100124
Georgios Pinitas574775c2019-02-18 20:08:02 +0000125Status CLDequantizationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
Alex Gilday60954c62018-03-05 16:22:48 +0000126{
Georgios Pinitas574775c2019-02-18 20:08:02 +0000127 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
128 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get())));
Alex Gilday60954c62018-03-05 16:22:48 +0000129 return Status{};
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100130}
131
132void CLDequantizationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
133{
134 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
135 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
136
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100137 const bool is_quantized_per_channel = is_data_type_quantized_per_channel(_input->info()->data_type());
138
139 // Collapse windo
140 Window new_window = is_quantized_per_channel ? window.collapse_if_possible(ICLKernel::window(), 4) : window.collapse_if_possible(ICLKernel::window(), 3);
141 Window slice = new_window.first_slice_window_3D();
142
143 if(is_quantized_per_channel)
144 {
145 unsigned int idx = num_arguments_per_3D_tensor() * 2; //Skip the input and output parameters
146 _kernel.setArg(idx++, _input->quantization().scale->cl_buffer());
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100147 }
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100148
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100149 do
150 {
151 unsigned int idx = 0;
152 add_3D_tensor_argument(idx, _input, slice);
153 add_3D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100154 enqueue(queue, *this, slice, lws_hint());
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100155 }
Michalis Spyrou3f632f32019-08-22 16:52:00 +0100156 while(new_window.slide_window_slice_3D(slice));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100157}
Manuel Bottini10c53f12019-07-17 16:11:53 +0100158} // namespace arm_compute