blob: d403d671738b8c254130833d6966ae20c123c772 [file] [log] [blame]
Gian Marco58c57942017-11-28 09:10:03 +00001/*
Anthony Barbierb6eb3532018-08-08 13:20:04 +01002 * Copyright (c) 2017-2018 ARM Limited.
Gian Marco58c57942017-11-28 09:10:03 +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/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/Helpers.h"
Georgios Pinitas932491f2018-09-21 16:33:15 +010030#include "arm_compute/core/TensorInfo.h"
Gian Marco58c57942017-11-28 09:10:03 +000031#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
Georgios Pinitas932491f2018-09-21 16:33:15 +010034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
35
Gian Marco58c57942017-11-28 09:10:03 +000036#include "support/ToolchainSupport.h"
37
38using namespace arm_compute;
39
40namespace arm_compute
41{
42namespace
43{
Georgios Pinitas932491f2018-09-21 16:33:15 +010044Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
45 int min, int max, unsigned int output_3d_depth)
Gian Marco58c57942017-11-28 09:10:03 +000046{
47 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Gian Marco58c57942017-11-28 09:10:03 +000048 ARM_COMPUTE_RETURN_ERROR_ON(max > 255);
49 ARM_COMPUTE_RETURN_ERROR_ON(min < 0 || min > max);
50
51 // Check biases if exist
52 if(bias != nullptr)
53 {
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
55 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
56 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
57 }
Chunosov5124be52017-11-22 20:42:13 +070058
59 if(output->total_size() != 0)
60 {
Georgios Pinitas932491f2018-09-21 16:33:15 +010061 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_output_stage_shape(*input, output_3d_depth, true);
62 const TensorInfo tensor_info_output = output->clone()->set_tensor_shape(output_shape);
Chunosov5124be52017-11-22 20:42:13 +070063 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8);
Georgios Pinitas932491f2018-09-21 16:33:15 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
Chunosov5124be52017-11-22 20:42:13 +070065 }
66
Georgios Pinitas631c41a2017-12-06 11:53:03 +000067 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000068}
69
Georgios Pinitas631c41a2017-12-06 11:53:03 +000070std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
Gian Marco58c57942017-11-28 09:10:03 +000071{
72 constexpr unsigned int num_elems_processed_per_iteration = 16;
73
74 // Configure kernel window
Georgios Pinitas932491f2018-09-21 16:33:15 +010075 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
Gian Marco58c57942017-11-28 09:10:03 +000076
77 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Gian Marco58c57942017-11-28 09:10:03 +000078
79 bool window_changed = update_window_and_padding(win,
Chunosov5124be52017-11-22 20:42:13 +070080 input_access);
81
82 if(output->total_size() != 0)
83 {
Georgios Pinitas932491f2018-09-21 16:33:15 +010084 Window win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Chunosov5124be52017-11-22 20:42:13 +070085 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
Georgios Pinitas932491f2018-09-21 16:33:15 +010086 window_changed = window_changed || update_window_and_padding(win_out, output_result_access);
Chunosov5124be52017-11-22 20:42:13 +070087
88 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
89 }
Gian Marco58c57942017-11-28 09:10:03 +000090
91 if(bias != nullptr)
92 {
93 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
94 window_changed = window_changed || update_window_and_padding(win, bias_access);
95 }
96
Georgios Pinitas631c41a2017-12-06 11:53:03 +000097 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marco58c57942017-11-28 09:10:03 +000098 return std::make_pair(err, win);
99}
100} // namespace
101
102class Coordinates;
103} // namespace arm_compute
104
105CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel()
Georgios Pinitas932491f2018-09-21 16:33:15 +0100106 : _input(nullptr), _bias(nullptr), _output(nullptr), _reinterpret_as_3d(false)
Gian Marco58c57942017-11-28 09:10:03 +0000107{
108}
109
Georgios Pinitas932491f2018-09-21 16:33:15 +0100110Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
111 int min, int max, unsigned int output_3d_depth)
Gian Marco58c57942017-11-28 09:10:03 +0000112{
Chunosov5124be52017-11-22 20:42:13 +0700113 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas932491f2018-09-21 16:33:15 +0100114 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max, output_3d_depth));
Gian Marco58c57942017-11-28 09:10:03 +0000115 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(),
116 (bias != nullptr) ? bias->clone().get() : nullptr,
117 output->clone().get())
118 .first);
119
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000120 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +0000121}
122
Georgios Pinitas932491f2018-09-21 16:33:15 +0100123void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
124 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
125 int min, int max, unsigned int output_3d_depth)
Gian Marco58c57942017-11-28 09:10:03 +0000126{
127 // Perform validate step
128 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
129
130 // Output auto inizialitation if not yet initialized
Georgios Pinitas932491f2018-09-21 16:33:15 +0100131 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_output_stage_shape(*input->info(), output_3d_depth, true);
132 auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(DataType::QASYMM8).set_tensor_shape(output_shape));
Gian Marco58c57942017-11-28 09:10:03 +0000133
Georgios Pinitas932491f2018-09-21 16:33:15 +0100134 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(),
135 min, max, output_3d_depth));
Gian Marco58c57942017-11-28 09:10:03 +0000136
Georgios Pinitas932491f2018-09-21 16:33:15 +0100137 _input = input;
138 _bias = bias;
139 _output = output;
140 _reinterpret_as_3d = output_3d_depth > 1;
Gian Marco58c57942017-11-28 09:10:03 +0000141
142 // Set the arguments to pass at compile time
143 CLBuildOptions build_opts;
144 build_opts.add_option("-DRESULT_OFFSET_AFTER_SHIFT=" + support::cpp11::to_string(result_offset_after_shift));
145 build_opts.add_option("-DRESULT_FIXEDPOINT_MULTIPLIER=" + support::cpp11::to_string(result_fixedpoint_multiplier));
146 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(result_shift));
147 build_opts.add_option_if((min != 0) && (min != max), "-DMIN_BOUND=" + support::cpp11::to_string(min));
148 build_opts.add_option_if((max != 255) && (min != max), "-DMAX_BOUND=" + support::cpp11::to_string(max));
149 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
Georgios Pinitas932491f2018-09-21 16:33:15 +0100150 build_opts.add_option_if(_reinterpret_as_3d, "-DDST_HEIGHT=" + support::cpp11::to_string(input->info()->tensor_shape().y() / output_3d_depth));
Gian Marco58c57942017-11-28 09:10:03 +0000151
152 // Create kernel
153 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_output_stage_quantize_down_fixedpoint", build_opts.options()));
154
155 // Configure kernel window
156 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info());
157 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100158 ICLKernel::configure_internal(win_config.second);
Gian Marco58c57942017-11-28 09:10:03 +0000159}
160
161void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run(const Window &window, cl::CommandQueue &queue)
162{
163 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
164 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
165
Georgios Pinitas932491f2018-09-21 16:33:15 +0100166 // Create input window
Gian Marco58c57942017-11-28 09:10:03 +0000167 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
168 Window slice = collapsed.first_slice_window_3D();
169
Georgios Pinitas932491f2018-09-21 16:33:15 +0100170 // Setup bias slice
Gian Marco58c57942017-11-28 09:10:03 +0000171 unsigned int idx1 = num_arguments_per_3D_tensor();
172 if(_bias != nullptr)
173 {
174 Window biases_slice(slice);
175 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
176 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
177 add_1D_tensor_argument(idx1, _bias, biases_slice);
178 }
179
Georgios Pinitas932491f2018-09-21 16:33:15 +0100180 if(_reinterpret_as_3d)
Gian Marco58c57942017-11-28 09:10:03 +0000181 {
Georgios Pinitas932491f2018-09-21 16:33:15 +0100182 // Create output window
183 Window window_out;
184 window_out.use_tensor_dimensions(_output->info()->tensor_shape());
185 Window collapsed_out = window_out.collapse_if_possible(window_out, 3);
186 Window slice_out = collapsed.first_slice_window_4D();
187
188 do
189 {
190 unsigned int idx = 0;
191 add_3D_tensor_argument(idx, _input, slice);
192 add_4D_tensor_argument(idx1, _output, slice_out);
193 enqueue(queue, *this, slice);
194 }
195 while(collapsed.slide_window_slice_3D(slice) && collapsed_out.slide_window_slice_4D(slice_out));
Gian Marco58c57942017-11-28 09:10:03 +0000196 }
Georgios Pinitas932491f2018-09-21 16:33:15 +0100197 else
198 {
199 do
200 {
201 unsigned int idx = 0;
202 add_3D_tensor_argument(idx, _input, slice);
203 add_3D_tensor_argument(idx1, _output, slice);
204 enqueue(queue, *this, slice);
205 }
206 while(collapsed.slide_window_slice_3D(slice));
207 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100208}