blob: 2967a73866c573ae3d0b5196e462a7a357772ddc [file] [log] [blame]
Georgios Pinitas51e53a32018-10-22 13:49:08 +01001/*
Georgios Pinitas275f99c2019-08-23 12:44:11 +01002 * Copyright (c) 2018-2019 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 */
24#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel.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/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
34#include "arm_compute/core/utils/misc/ShapeCalculator.h"
35
36#include "support/ToolchainSupport.h"
37
38using namespace arm_compute;
39
40namespace arm_compute
41{
42namespace
43{
44Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000045 int min, int max)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010046{
47 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
48 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 }
58
59 if(output->total_size() != 0)
60 {
Georgios Pinitas51e53a32018-10-22 13:49:08 +010061 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8);
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000062 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010063 }
64
65 return Status{};
66}
67
68std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *bias, ITensorInfo *output)
69{
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000070 constexpr unsigned int num_elems_processed_per_iteration = 4;
71
72 // Output auto inizialitation if not yet initialized
73 auto_init_if_empty(*output, input->clone()->set_data_type(DataType::QASYMM8));
Georgios Pinitas51e53a32018-10-22 13:49:08 +010074
75 // Configure kernel window
76 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
77
78 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
79
80 bool window_changed = update_window_and_padding(win,
81 input_access);
82
83 if(output->total_size() != 0)
84 {
85 Window win_out = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
86 AccessWindowHorizontal output_result_access(output, 0, num_elems_processed_per_iteration);
87 window_changed = window_changed || update_window_and_padding(win_out, output_result_access);
88
89 output_result_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
90 }
91
92 if(bias != nullptr)
93 {
94 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
95 window_changed = window_changed || update_window_and_padding(win, bias_access);
96 }
97
98 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
99 return std::make_pair(err, win);
100}
101} // namespace
102
103class Coordinates;
104} // namespace arm_compute
105
106CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel::CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel()
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000107 : _input(nullptr), _bias(nullptr), _output(nullptr)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100108{
109}
110
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000111Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100112{
113 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000114 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, min, max));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100115 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
120 return Status{};
121}
122
123void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
124 float multiplier, int offset,
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000125 int min, int max)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100126{
127 // Perform validate step
128 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000129 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), min, max));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100130
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000131 _input = input;
132 _bias = bias;
133 _output = output;
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100134
135 // Set the arguments to pass at compile time
136 CLBuildOptions build_opts;
137 build_opts.add_option("-DREAL_MULTIPLIER=" + float_to_string_with_full_precision(multiplier));
138 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(offset));
139 build_opts.add_option_if((min != 0) && (min != max), "-DMIN_BOUND=" + support::cpp11::to_string(min));
140 build_opts.add_option_if((max != 255) && (min != max), "-DMAX_BOUND=" + support::cpp11::to_string(max));
141 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100142
143 // Create kernel
144 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_output_stage_quantize_down_float", build_opts.options()));
145
146 // Configure kernel window
147 auto win_config = validate_and_configure_window(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info());
148 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
149 ICLKernel::configure_internal(win_config.second);
150}
151
152void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel::run(const Window &window, cl::CommandQueue &queue)
153{
154 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
155 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
156
157 // Create input window
158 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
159 Window slice = collapsed.first_slice_window_3D();
160
161 // Setup bias slice
162 unsigned int idx1 = num_arguments_per_3D_tensor();
163 if(_bias != nullptr)
164 {
165 Window biases_slice(slice);
166 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
167 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
168 add_1D_tensor_argument(idx1, _bias, biases_slice);
169 }
170
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000171 do
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100172 {
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000173 unsigned int idx = 0;
174 add_3D_tensor_argument(idx, _input, slice);
175 add_3D_tensor_argument(idx1, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100176 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100177 }
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000178 while(collapsed.slide_window_slice_3D(slice));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100179}