blob: d3211f6ee8a4d45cdc6e68209553efb6e606e58d [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Giorgio Arena1856ff72020-02-07 13:46:45 +00002 * Copyright (c) 2017-2020 ARM Limited.
Gian Marco05288a22017-11-21 10:57:50 +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/CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.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"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/Window.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000033#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000034
35using namespace arm_compute;
36
37namespace arm_compute
38{
Gian Marco58c57942017-11-28 09:10:03 +000039namespace
40{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000041Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000042{
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Giorgio Arena1856ff72020-02-07 13:46:45 +000044 ARM_COMPUTE_RETURN_ERROR_ON(min > max);
Gian Marco58c57942017-11-28 09:10:03 +000045
46 // Check biases if exist
47 if(bias != nullptr)
48 {
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
50 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
51 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
52 }
Chunosov5124be52017-11-22 20:42:13 +070053
54 if(output->total_size() != 0)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8);
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
58 }
59
Georgios Pinitas631c41a2017-12-06 11:53:03 +000060 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000061}
62
Georgios Pinitas631c41a2017-12-06 11:53:03 +000063std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
Gian Marco58c57942017-11-28 09:10:03 +000064{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010065 constexpr unsigned int num_elems_processed_per_iteration = 4;
Gian Marco58c57942017-11-28 09:10:03 +000066
67 // Configure kernel window
68 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
69
70 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Gian Marco58c57942017-11-28 09:10:03 +000071
72 bool window_changed = update_window_and_padding(win,
Chunosov5124be52017-11-22 20:42:13 +070073 input_access);
74
75 if(output->total_size() != 0)
76 {
77 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
78 window_changed = window_changed || update_window_and_padding(win, output_result_access);
79
80 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
81 }
Gian Marco58c57942017-11-28 09:10:03 +000082
83 if(bias != nullptr)
84 {
85 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
86 window_changed = window_changed || update_window_and_padding(win, bias_access);
87 }
88
Georgios Pinitas631c41a2017-12-06 11:53:03 +000089 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marco58c57942017-11-28 09:10:03 +000090 return std::make_pair(err, win);
91}
92} // namespace
93
Gian Marco05288a22017-11-21 10:57:50 +000094class Coordinates;
95} // namespace arm_compute
96
97CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel::CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel()
98 : _input(nullptr), _bias(nullptr), _output(nullptr)
99{
100}
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000101Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +0000102{
Chunosov5124be52017-11-22 20:42:13 +0700103 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco58c57942017-11-28 09:10:03 +0000104 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
105 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(),
106 (bias != nullptr) ? bias->clone().get() : nullptr,
107 output->clone().get())
108 .first);
109
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000110 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +0000111}
Gian Marco05288a22017-11-21 10:57:50 +0000112
113void CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, int result_offset, int result_mult_int, int result_shift, int min,
114 int max)
115{
Gian Marco58c57942017-11-28 09:10:03 +0000116 // Perform validate step
117 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco05288a22017-11-21 10:57:50 +0000118
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000119 // Output auto inizialitation if not yet initialized
120 auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(DataType::QASYMM8));
121
Gian Marco58c57942017-11-28 09:10:03 +0000122 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(),
123 (bias != nullptr) ? bias->info() : nullptr,
124 output->info(),
125 min,
126 max));
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +0000127
Gian Marco05288a22017-11-21 10:57:50 +0000128 _input = input;
129 _bias = bias;
130 _output = output;
131
132 // Set the arguments to pass at compile time
133 CLBuildOptions build_opts;
134 build_opts.add_option("-DRESULT_OFFSET=" + support::cpp11::to_string(result_offset));
135 build_opts.add_option("-DRESULT_MULT_INT=" + support::cpp11::to_string(result_mult_int));
136 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(result_shift));
Giorgio Arena1856ff72020-02-07 13:46:45 +0000137 build_opts.add_option_if((min > 0), "-DMIN_BOUND=" + support::cpp11::to_string(min));
138 build_opts.add_option_if((max < 255), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Gian Marco05288a22017-11-21 10:57:50 +0000139 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
140
141 // Create kernel
142 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_output_stage_quantize_down", build_opts.options()));
143
Gian Marco05288a22017-11-21 10:57:50 +0000144 // Configure kernel window
Gian Marco58c57942017-11-28 09:10:03 +0000145 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info());
146 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100147 ICLKernel::configure_internal(win_config.second);
Gian Marco05288a22017-11-21 10:57:50 +0000148}
149
150void CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel::run(const Window &window, cl::CommandQueue &queue)
151{
152 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
153 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
154
155 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
156 Window slice = collapsed.first_slice_window_3D();
157
158 unsigned int idx1 = num_arguments_per_3D_tensor();
159 if(_bias != nullptr)
160 {
161 Window biases_slice(slice);
162 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
163 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
164 add_1D_tensor_argument(idx1, _bias, biases_slice);
165 }
166
167 do
168 {
169 unsigned int idx = 0;
170 add_3D_tensor_argument(idx, _input, slice);
171 add_3D_tensor_argument(idx1, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100172 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000173 }
174 while(collapsed.slide_window_slice_3D(slice));
Chunosov5124be52017-11-22 20:42:13 +0700175}