blob: 6ab3272bd72b4f9df0ed7f4ed93d0fd7365047be [file] [log] [blame]
Gian Marco58c57942017-11-28 09:10:03 +00001/*
Manuel Bottini9a9440e2020-01-13 11:40:48 +00002 * Copyright (c) 2017-2020 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"
Manuel Bottini1f332d42019-11-29 17:25:25 +000027#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco58c57942017-11-28 09:10:03 +000028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Error.h"
30#include "arm_compute/core/Helpers.h"
Georgios Pinitas932491f2018-09-21 16:33:15 +010031#include "arm_compute/core/TensorInfo.h"
Gian Marco58c57942017-11-28 09:10:03 +000032#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
Georgios Pinitas932491f2018-09-21 16:33:15 +010035#include "arm_compute/core/utils/misc/ShapeCalculator.h"
36
Matthew Bentham758b5ba2020-03-05 23:37:48 +000037#include "support/StringSupport.h"
Gian Marco58c57942017-11-28 09:10:03 +000038
Gian Marco58c57942017-11-28 09:10:03 +000039namespace arm_compute
40{
41namespace
42{
Georgios Pinitas932491f2018-09-21 16:33:15 +010043Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Gian Marco Iodice4b908652018-10-18 10:21:02 +010044 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000045{
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Giorgio Arena1856ff72020-02-07 13:46:45 +000047 ARM_COMPUTE_RETURN_ERROR_ON(min > max);
Gian Marco58c57942017-11-28 09:10:03 +000048
49 // Check biases if exist
50 if(bias != nullptr)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
53 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
54 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
55 }
Chunosov5124be52017-11-22 20:42:13 +070056
57 if(output->total_size() != 0)
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8);
Gian Marco Iodice4b908652018-10-18 10:21:02 +010060 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Chunosov5124be52017-11-22 20:42:13 +070061 }
62
Georgios Pinitas631c41a2017-12-06 11:53:03 +000063 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +000064}
65
Georgios Pinitas631c41a2017-12-06 11:53:03 +000066std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
Gian Marco58c57942017-11-28 09:10:03 +000067{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010068 constexpr unsigned int num_elems_processed_per_iteration = 4;
Gian Marco58c57942017-11-28 09:10:03 +000069
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000070 // Output auto inizialitation if not yet initialized
71 auto_init_if_empty(*output, input->clone()->set_data_type(DataType::QASYMM8));
72
Gian Marco58c57942017-11-28 09:10:03 +000073 // Configure kernel window
Georgios Pinitas932491f2018-09-21 16:33:15 +010074 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
Gian Marco58c57942017-11-28 09:10:03 +000075
76 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Gian Marco58c57942017-11-28 09:10:03 +000077
Manuel Bottini1f332d42019-11-29 17:25:25 +000078 bool window_changed = update_window_and_padding(win, input_access);
Chunosov5124be52017-11-22 20:42:13 +070079
80 if(output->total_size() != 0)
81 {
Georgios Pinitas932491f2018-09-21 16:33:15 +010082 Window win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
Chunosov5124be52017-11-22 20:42:13 +070083 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
Georgios Pinitas932491f2018-09-21 16:33:15 +010084 window_changed = window_changed || update_window_and_padding(win_out, output_result_access);
Chunosov5124be52017-11-22 20:42:13 +070085 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
86 }
Gian Marco58c57942017-11-28 09:10:03 +000087
88 if(bias != nullptr)
89 {
90 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
91 window_changed = window_changed || update_window_and_padding(win, bias_access);
92 }
93
Georgios Pinitas631c41a2017-12-06 11:53:03 +000094 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Gian Marco58c57942017-11-28 09:10:03 +000095 return std::make_pair(err, win);
96}
97} // namespace
98
Gian Marco58c57942017-11-28 09:10:03 +000099CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel()
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100100 : _input(nullptr), _bias(nullptr), _output(nullptr)
Gian Marco58c57942017-11-28 09:10:03 +0000101{
102}
103
Georgios Pinitas932491f2018-09-21 16:33:15 +0100104Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100105 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +0000106{
Chunosov5124be52017-11-22 20:42:13 +0700107 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100108 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
Gian Marco58c57942017-11-28 09:10:03 +0000109 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(),
110 (bias != nullptr) ? bias->clone().get() : nullptr,
111 output->clone().get())
112 .first);
113
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000114 return Status{};
Gian Marco58c57942017-11-28 09:10:03 +0000115}
116
Georgios Pinitas932491f2018-09-21 16:33:15 +0100117void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
118 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100119 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +0000120{
121 // Perform validate step
122 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottini1f332d42019-11-29 17:25:25 +0000123 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), min, max));
Manuel Bottini9a9440e2020-01-13 11:40:48 +0000124 // Configure kernel window
125 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info());
126 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Gian Marco58c57942017-11-28 09:10:03 +0000127
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100128 _input = input;
129 _bias = bias;
130 _output = output;
Gian Marco58c57942017-11-28 09:10:03 +0000131
132 // Set the arguments to pass at compile time
133 CLBuildOptions build_opts;
134 build_opts.add_option("-DRESULT_OFFSET_AFTER_SHIFT=" + support::cpp11::to_string(result_offset_after_shift));
135 build_opts.add_option("-DRESULT_FIXEDPOINT_MULTIPLIER=" + support::cpp11::to_string(result_fixedpoint_multiplier));
136 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(result_shift));
Manuel Bottini1f332d42019-11-29 17:25:25 +0000137 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
Giorgio Arena1856ff72020-02-07 13:46:45 +0000138 build_opts.add_option_if((min > 0), "-DMIN_BOUND=" + support::cpp11::to_string(min));
139 build_opts.add_option_if((max < 255), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Gian Marco58c57942017-11-28 09:10:03 +0000140 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
141
142 // Create kernel
143 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_output_stage_quantize_down_fixedpoint", build_opts.options()));
144
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100145 ICLKernel::configure_internal(win_config.second);
Gian Marco58c57942017-11-28 09:10:03 +0000146}
147
148void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::run(const Window &window, cl::CommandQueue &queue)
149{
150 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
151 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
152
Georgios Pinitas932491f2018-09-21 16:33:15 +0100153 // Create input window
Gian Marco58c57942017-11-28 09:10:03 +0000154 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
155 Window slice = collapsed.first_slice_window_3D();
156
Georgios Pinitas932491f2018-09-21 16:33:15 +0100157 // Setup bias slice
Gian Marco58c57942017-11-28 09:10:03 +0000158 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
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100167 do
Gian Marco58c57942017-11-28 09:10:03 +0000168 {
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100169 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 Marco58c57942017-11-28 09:10:03 +0000173 }
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100174 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100175}
Michele Di Giorgio14cbfb22019-10-23 10:53:10 +0100176} // namespace arm_compute