blob: 1d29dfe4b3484f8c99f6b2e84ae985a852649579 [file] [log] [blame]
Georgios Pinitas51e53a32018-10-22 13:49:08 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010025
Sheri Zhang1b14c752020-03-09 14:29:52 +000026#include "arm_compute/core/CL/CLHelpers.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010027#include "arm_compute/core/CL/ICLTensor.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010028#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/TensorInfo.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010030#include "arm_compute/core/Validate.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010031#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sheri Zhang1b14c752020-03-09 14:29:52 +000032#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/AccessWindowStatic.h"
34#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010037
Georgios Pinitas51e53a32018-10-22 13:49:08 +010038namespace arm_compute
39{
40namespace
41{
42Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Sheri Zhang1b14c752020-03-09 14:29:52 +000043 const GEMMLowpOutputStageInfo *info)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010044{
45 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::S32);
Sheri Zhang1b14c752020-03-09 14:29:52 +000046 ARM_COMPUTE_RETURN_ERROR_ON((info->output_data_type != DataType::QASYMM8) && (info->output_data_type != DataType::QASYMM8_SIGNED));
47 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)));
48 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))
49 || info->gemmlowp_min_bound > info->gemmlowp_max_bound);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010050
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 {
Sheri Zhang1b14c752020-03-09 14:29:52 +000061 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 +000062 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010063 }
64
65 return Status{};
66}
Georgios Pinitas51e53a32018-10-22 13:49:08 +010067} // namespace
68
69class Coordinates;
Sheri Zhang1b14c752020-03-09 14:29:52 +000070CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel()
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000071 : _input(nullptr), _bias(nullptr), _output(nullptr)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010072{
73}
74
Sheri Zhang1b14c752020-03-09 14:29:52 +000075Status CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
76 const GEMMLowpOutputStageInfo *info)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010077{
78 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhang1b14c752020-03-09 14:29:52 +000079 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, bias, output, info));
Georgios Pinitas51e53a32018-10-22 13:49:08 +010080
81 return Status{};
82}
83
Sheri Zhang1b14c752020-03-09 14:29:52 +000084void CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
85 const GEMMLowpOutputStageInfo *info)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010086{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010087 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, info);
88}
89
Manuel Bottini679fc962020-04-21 16:08:53 +010090void CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
Manuel Bottini4c6bd512020-04-08 10:15:51 +010091 const GEMMLowpOutputStageInfo *info)
92{
Georgios Pinitas51e53a32018-10-22 13:49:08 +010093 // Perform validate step
94 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhang1b14c752020-03-09 14:29:52 +000095 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (bias != nullptr) ? bias->info() : nullptr, output->info(), info));
Georgios Pinitas51e53a32018-10-22 13:49:08 +010096
Michele Di Giorgio671d4f02020-10-14 12:26:51 +010097 // Output auto inizialitation if not yet initialized
98 auto_init_if_empty(*output->info(), input->info()->clone()->set_data_type(info->output_data_type));
99
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000100 _input = input;
101 _bias = bias;
102 _output = output;
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100103
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100104 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, input->info()->dimension(0));
105
Sheri Zhang1b14c752020-03-09 14:29:52 +0000106 auto min = info->gemmlowp_min_bound;
107 auto max = info->gemmlowp_max_bound;
108
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100109 // Set the arguments to pass at compile time
110 CLBuildOptions build_opts;
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100111 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
112 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->info()->dimension(0) % num_elems_processed_per_iteration));
Sheri Zhang1b14c752020-03-09 14:29:52 +0000113 build_opts.add_option("-DREAL_MULTIPLIER=" + float_to_string_with_full_precision(info->gemmlowp_real_multiplier));
114 build_opts.add_option("-DOUTPUT_OFFSET=" + support::cpp11::to_string(info->gemmlowp_offset));
115 build_opts.add_option("-DOUTPUT_DATA_TYPE=" + get_cl_type_from_data_type(output->info()->data_type()));
Giorgio Arena1856ff72020-02-07 13:46:45 +0000116 build_opts.add_option_if((min > 0), "-DMIN_BOUND=" + support::cpp11::to_string(min));
117 build_opts.add_option_if((max < 255), "-DMAX_BOUND=" + support::cpp11::to_string(max));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100118 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100119
120 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100121 _kernel = create_kernel(compile_context, "gemmlowp_output_stage_quantize_down_float", build_opts.options());
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100122
123 // Configure kernel window
Michele Di Giorgio671d4f02020-10-14 12:26:51 +0100124 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration));
125 ICLKernel::configure_internal(win);
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100126}
127
Sheri Zhang1b14c752020-03-09 14:29:52 +0000128void CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::run(const Window &window, cl::CommandQueue &queue)
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100129{
130 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
131 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
132
133 // Create input window
134 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
135 Window slice = collapsed.first_slice_window_3D();
136
137 // Setup bias slice
138 unsigned int idx1 = num_arguments_per_3D_tensor();
139 if(_bias != nullptr)
140 {
141 Window biases_slice(slice);
142 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
143 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
144 add_1D_tensor_argument(idx1, _bias, biases_slice);
145 }
146
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000147 do
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100148 {
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000149 unsigned int idx = 0;
150 add_3D_tensor_argument(idx, _input, slice);
151 add_3D_tensor_argument(idx1, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100152 enqueue(queue, *this, slice, lws_hint());
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100153 }
Gian Marco Iodice0c54a622018-10-30 12:20:03 +0000154 while(collapsed.slide_window_slice_3D(slice));
Georgios Pinitas51e53a32018-10-22 13:49:08 +0100155}
Michele Di Giorgioa046e162019-10-08 09:36:26 +0100156} // namespace arm_compute