blob: 171dc48112075ac857122fac20536fe678aed4e0 [file] [log] [blame]
Georgios Pinitas51e53a32018-10-22 13:49:08 +01001/*
Giorgio Arena1856ff72020-02-07 13:46:45 +00002 * Copyright (c) 2018-2020 ARM Limited.
Georgios Pinitas51e53a32018-10-22 13:49:08 +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 */
Sheri Zhang1b14c752020-03-09 14:29:52 +000024#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010025
26#include "arm_compute/core/AccessWindowStatic.h"
Sheri Zhang1b14c752020-03-09 14:29:52 +000027#include "arm_compute/core/CL/CLHelpers.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Error.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sheri Zhang1b14c752020-03-09 14:29:52 +000036#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000037#include "support/StringSupport.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010038
Georgios Pinitas51e53a32018-10-22 13:49:08 +010039namespace arm_compute
40{
41namespace
42{
43Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Sheri Zhang1b14c752020-03-09 14:29:52 +000044 const GEMMLowpOutputStageInfo *info)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010045{
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Sheri Zhang1b14c752020-03-09 14:29:52 +000047 ARM_COMPUTE_RETURN_ERROR_ON((info->output_data_type != DataType::QASYMM8) && (info->output_data_type != DataType::QASYMM8_SIGNED));
48 ARM_COMPUTE_RETURN_ERROR_ON(info->gemmlowp_max_bound > std::get<1>(quantization::get_min_max_values_from_quantized_data_type(info->output_data_type)));
49 ARM_COMPUTE_RETURN_ERROR_ON(info->gemmlowp_min_bound < std::get<0>(quantization::get_min_max_values_from_quantized_data_type(info->output_data_type))
50 || info->gemmlowp_min_bound > info->gemmlowp_max_bound);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010051
52 // Check biases if exist
53 if(bias != nullptr)
54 {
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
56 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
57 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
58 }
59
60 if(output->total_size() != 0)
61 {
Sheri Zhang1b14c752020-03-09 14:29:52 +000062 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_type() != info->output_data_type, "Mismatching output data type");
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000063 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010064 }
65
66 return Status{};
67}
68
Sheri Zhang1b14c752020-03-09 14:29:52 +000069std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output, DataType output_data_type)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010070{
Sheri Zhang1b14c752020-03-09 14:29:52 +000071 // Output auto inizialitation if not yet initialized
72 auto_init_if_empty(*output, input->clone()->set_data_type(output_data_type));
73
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000074 constexpr unsigned int num_elems_processed_per_iteration = 4;
75
76 // Output auto inizialitation if not yet initialized
77 auto_init_if_empty(*output, input->clone()->set_data_type(DataType::QASYMM8));
Georgios Pinitas51e53a32018-10-22 13:49:08 +010078
79 // Configure kernel window
80 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
81
82 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
83
84 bool window_changed = update_window_and_padding(win,
85 input_access);
86
Sheri Zhang1b14c752020-03-09 14:29:52 +000087 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
88 window_changed = window_changed || update_window_and_padding(win, output_result_access);
89 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
Georgios Pinitas51e53a32018-10-22 13:49:08 +010090
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
97 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
98 return std::make_pair(err, win);
99}
100} // namespace
101
102class Coordinates;
Sheri Zhang1b14c752020-03-09 14:29:52 +0000103CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel()
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000104 : _input(nullptr), _bias(nullptr), _output(nullptr)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100105{
106}
107
Sheri Zhang1b14c752020-03-09 14:29:52 +0000108Status CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
109 const GEMMLowpOutputStageInfo *info)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100110{
111 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhang1b14c752020-03-09 14:29:52 +0000112 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, info));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100113
114 return Status{};
115}
116
Sheri Zhang1b14c752020-03-09 14:29:52 +0000117void CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
118 const GEMMLowpOutputStageInfo *info)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100119{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100120 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, info);
121}
122
123void CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::configure(CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
124 const GEMMLowpOutputStageInfo *info)
125{
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100126 // Perform validate step
127 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhang1b14c752020-03-09 14:29:52 +0000128 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), info));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100129
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000130 _input = input;
131 _bias = bias;
132 _output = output;
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100133
Sheri Zhang1b14c752020-03-09 14:29:52 +0000134 auto min = info->gemmlowp_min_bound;
135 auto max = info->gemmlowp_max_bound;
136
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100137 // Set the arguments to pass at compile time
138 CLBuildOptions build_opts;
Sheri Zhang1b14c752020-03-09 14:29:52 +0000139 build_opts.add_option("-DREAL_MULTIPLIER=" + float_to_string_with_full_precision(info->gemmlowp_real_multiplier));
140 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(info->gemmlowp_offset));
141 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
Giorgio Arena1856ff72020-02-07 13:46:45 +0000142 build_opts.add_option_if((min > 0), "-DMIN_BOUND=" + support::cpp11::to_string(min));
143 build_opts.add_option_if((max < 255), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100144 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100145
146 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100147 _kernel = create_kernel(compile_context, "gemmlowp_output_stage_quantize_down_float", build_opts.options());
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100148
149 // Configure kernel window
Sheri Zhang1b14c752020-03-09 14:29:52 +0000150 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), info->output_data_type);
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100151 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
152 ICLKernel::configure_internal(win_config.second);
153}
154
Sheri Zhang1b14c752020-03-09 14:29:52 +0000155void CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::run(const Window &window, cl::CommandQueue &queue)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100156{
157 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
158 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
159
160 // Create input window
161 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
162 Window slice = collapsed.first_slice_window_3D();
163
164 // Setup bias slice
165 unsigned int idx1 = num_arguments_per_3D_tensor();
166 if(_bias != nullptr)
167 {
168 Window biases_slice(slice);
169 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
170 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
171 add_1D_tensor_argument(idx1, _bias, biases_slice);
172 }
173
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000174 do
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100175 {
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000176 unsigned int idx = 0;
177 add_3D_tensor_argument(idx, _input, slice);
178 add_3D_tensor_argument(idx1, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100179 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100180 }
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000181 while(collapsed.slide_window_slice_3D(slice));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100182}
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100183} // namespace arm_compute