blob: 8a5ce9fa8788e0612daaf603f909053b795c94c4 [file] [log] [blame]
Manuel Bottini1f332d42019-11-29 17:25:25 +00001/*
Manuel Bottini9a9440e2020-01-13 11:40:48 +00002 * Copyright (c) 2019-2020 ARM Limited.
Manuel Bottini1f332d42019-11-29 17:25:25 +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/CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#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"
36
37#include "support/ToolchainSupport.h"
38
39namespace arm_compute
40{
41namespace
42{
43Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
44 int min, int max)
45{
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
47 ARM_COMPUTE_RETURN_ERROR_ON(max > 127);
48 ARM_COMPUTE_RETURN_ERROR_ON(min < -128 || min > max);
49
50 // Check biases if exist
51 if(bias != nullptr)
52 {
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, bias);
54 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
55 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != bias->dimension(0));
56 }
57
58 if(output->total_size() != 0)
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8_SIGNED);
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
62 }
63
64 return Status{};
65}
66
67std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
68{
69 constexpr unsigned int num_elems_processed_per_iteration = 4;
70
71 // Output auto inizialitation if not yet initialized
72 auto_init_if_empty(*output, input->clone()->set_data_type(DataType::QASYMM8_SIGNED));
73
74 // Configure kernel window
75 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
76
77 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
78
79 bool window_changed = update_window_and_padding(win, input_access);
80
81 if(output->total_size() != 0)
82 {
83 Window win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
84 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
85 window_changed = window_changed || update_window_and_padding(win_out, output_result_access);
86 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
87 }
88
89 if(bias != nullptr)
90 {
91 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
92 window_changed = window_changed || update_window_and_padding(win, bias_access);
93 }
94
95 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
96 return std::make_pair(err, win);
97}
98} // namespace
99
100CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel::CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel()
101 : _input(nullptr), _bias(nullptr), _output(nullptr)
102{
103}
104
105Status CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
106 int min, int max)
107{
108 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
109 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
110 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(),
111 (bias != nullptr) ? bias->clone().get() : nullptr,
112 output->clone().get())
113 .first);
114
115 return Status{};
116}
117
118void CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
119 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
120 int min, int max)
121{
122 // Perform validate step
123 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
124 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 +0000125 // Configure kernel window
126 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info());
127 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Manuel Bottini1f332d42019-11-29 17:25:25 +0000128
129 _input = input;
130 _bias = bias;
131 _output = output;
132
133 // Set the arguments to pass at compile time
134 CLBuildOptions build_opts;
135 build_opts.add_option("-DRESULT_OFFSET_AFTER_SHIFT=" + support::cpp11::to_string(result_offset_after_shift));
136 build_opts.add_option("-DRESULT_FIXEDPOINT_MULTIPLIER=" + support::cpp11::to_string(result_fixedpoint_multiplier));
137 build_opts.add_option("-DRESULT_SHIFT=" + support::cpp11::to_string(result_shift));
138 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
139 build_opts.add_option_if((min != -128) && (min != max), "-DMIN_BOUND=" + support::cpp11::to_string(min));
140 build_opts.add_option_if((max != 127) && (min != max), "-DMAX_BOUND=" + support::cpp11::to_string(max));
141 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
142
143 // Create kernel
144 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_output_stage_quantize_down_fixedpoint", build_opts.options()));
145
Manuel Bottini1f332d42019-11-29 17:25:25 +0000146 ICLKernel::configure_internal(win_config.second);
147}
148
149void CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel::run(const Window &window, cl::CommandQueue &queue)
150{
151 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
152 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
153
154 // Create input window
155 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
156 Window slice = collapsed.first_slice_window_3D();
157
158 // Setup bias slice
159 unsigned int idx1 = num_arguments_per_3D_tensor();
160 if(_bias != nullptr)
161 {
162 Window biases_slice(slice);
163 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
164 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
165 add_1D_tensor_argument(idx1, _bias, biases_slice);
166 }
167
168 do
169 {
170 unsigned int idx = 0;
171 add_3D_tensor_argument(idx, _input, slice);
172 add_3D_tensor_argument(idx1, _output, slice);
173 enqueue(queue, *this, slice, lws_hint());
174 }
175 while(collapsed.slide_window_slice_3D(slice));
176}
177} // namespace arm_compute