blob: 28f397fd8b0eb30875004be3aaafe8d270c2ad2c [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Gian Marco05288a22017-11-21 10:57:50 +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/runtime/CL/functions/CLGEMMLowpOutputStage.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgioba14c922020-10-12 13:27:57 +010027#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel.h"
Sheri Zhang1b14c752020-03-09 14:29:52 +000028#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel.h"
Luca Foschiani689c9682020-02-26 14:30:14 +000029#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ScaleKernel.h"
Matthew Bentham92046462020-03-07 22:15:55 +000030#include "support/MemorySupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000031
Georgios Pinitas932491f2018-09-21 16:33:15 +010032namespace arm_compute
33{
Georgios Pinitas932491f2018-09-21 16:33:15 +010034void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
35 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
Gian Marco Iodice4b908652018-10-18 10:21:02 +010036 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000037{
Manuel Bottini2b84be52020-04-08 10:15:51 +010038 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, result_fixedpoint_multiplier, result_shift, result_offset_after_shift, min, max);
39}
40
41void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
42 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
43 int min, int max)
44{
Michele Di Giorgioba14c922020-10-12 13:27:57 +010045 GEMMLowpOutputStageInfo info{};
46 info.gemmlowp_multiplier = result_fixedpoint_multiplier;
47 info.gemmlowp_shift = result_shift;
48 info.gemmlowp_offset = result_offset_after_shift;
49 info.gemmlowp_min_bound = min;
50 info.gemmlowp_max_bound = max;
51 info.output_data_type = DataType::QASYMM8;
52 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel>();
53 k->configure(compile_context, input, bias, output, &info);
Gian Marco58c57942017-11-28 09:10:03 +000054 _kernel = std::move(k);
55}
56
Georgios Pinitas932491f2018-09-21 16:33:15 +010057Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Gian Marco Iodice4b908652018-10-18 10:21:02 +010058 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000059{
Michele Di Giorgioba14c922020-10-12 13:27:57 +010060 GEMMLowpOutputStageInfo info{};
61 info.gemmlowp_min_bound = min;
62 info.gemmlowp_max_bound = max;
63 info.output_data_type = DataType::QASYMM8;
64 return CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel::validate(input, bias, output, &info);
Georgios Pinitas932491f2018-09-21 16:33:15 +010065}
Georgios Pinitas51e53a32018-10-22 13:49:08 +010066
Manuel Bottini1f332d42019-11-29 17:25:25 +000067void CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
68 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
69 int min, int max)
70{
Michele Di Giorgioba14c922020-10-12 13:27:57 +010071 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, result_fixedpoint_multiplier, result_shift, result_offset_after_shift, min, max);
Manuel Bottini2b84be52020-04-08 10:15:51 +010072}
73
74void CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
75 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
76 int min, int max)
77{
Michele Di Giorgioba14c922020-10-12 13:27:57 +010078 GEMMLowpOutputStageInfo info{};
79 info.gemmlowp_multiplier = result_fixedpoint_multiplier;
80 info.gemmlowp_shift = result_shift;
81 info.gemmlowp_offset = result_offset_after_shift;
82 info.gemmlowp_min_bound = min;
83 info.gemmlowp_max_bound = max;
84 info.output_data_type = DataType::QASYMM8_SIGNED;
85 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel>();
86 k->configure(compile_context, input, bias, output, &info);
Manuel Bottini1f332d42019-11-29 17:25:25 +000087 _kernel = std::move(k);
88}
89
90Status CLGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
91 int min, int max)
92{
Michele Di Giorgioba14c922020-10-12 13:27:57 +010093 GEMMLowpOutputStageInfo info{};
94 info.gemmlowp_min_bound = min;
95 info.gemmlowp_max_bound = max;
96 info.output_data_type = DataType::QASYMM8_SIGNED;
97 return CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel::validate(input, bias, output, &info);
Manuel Bottini1f332d42019-11-29 17:25:25 +000098}
99
Manuel Bottini9c9b70b2019-07-01 17:35:56 +0100100void CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
101 int result_fixedpoint_multiplier, int result_shift,
102 int min, int max)
103{
Manuel Bottini2b84be52020-04-08 10:15:51 +0100104 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, result_fixedpoint_multiplier, result_shift, min, max);
105}
106
107void CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
108 int result_fixedpoint_multiplier, int result_shift,
109 int min, int max)
110{
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100111 GEMMLowpOutputStageInfo info{};
112 info.gemmlowp_multiplier = result_fixedpoint_multiplier;
113 info.gemmlowp_shift = result_shift;
114 info.gemmlowp_min_bound = min;
115 info.gemmlowp_max_bound = max;
116 info.output_data_type = DataType::QSYMM16;
117 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel>();
118 k->configure(compile_context, input, bias, output, &info);
Manuel Bottini9c9b70b2019-07-01 17:35:56 +0100119 _kernel = std::move(k);
120}
121
122Status CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
123 int min, int max)
124{
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100125 GEMMLowpOutputStageInfo info{};
126 info.gemmlowp_min_bound = min;
127 info.gemmlowp_max_bound = max;
128 info.output_data_type = DataType::QSYMM16;
129 return CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel::validate(input, bias, output, &info);
Manuel Bottini9c9b70b2019-07-01 17:35:56 +0100130}
131
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000132void CLGEMMLowpOutputStage::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, const GEMMLowpOutputStageInfo &info)
133{
Manuel Bottini2b84be52020-04-08 10:15:51 +0100134 configure(CLKernelLibrary::get().get_compile_context(), input, bias, output, info);
135}
136
137void CLGEMMLowpOutputStage::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, const GEMMLowpOutputStageInfo &info)
138{
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000139 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000140
Luca Foschiani689c9682020-02-26 14:30:14 +0000141 switch(info.type)
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000142 {
Luca Foschiani689c9682020-02-26 14:30:14 +0000143 case GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT:
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000144 {
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100145 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel>();
146 k->configure(compile_context, input, bias, output, &info);
147 _kernel = std::move(k);
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000148 break;
149 }
Luca Foschiani689c9682020-02-26 14:30:14 +0000150 case GEMMLowpOutputStageType::QUANTIZE_DOWN:
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000151 {
Luca Foschiani4b869532020-02-13 15:07:36 +0000152 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ScaleKernel>();
Manuel Bottini2b84be52020-04-08 10:15:51 +0100153 k->configure(compile_context, input, bias, output, &info);
Luca Foschiani4b869532020-02-13 15:07:36 +0000154 _kernel = std::move(k);
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000155 break;
156 }
Sheri Zhang1b14c752020-03-09 14:29:52 +0000157 case GEMMLowpOutputStageType::QUANTIZE_DOWN_FLOAT:
158 {
159 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel>();
Manuel Bottini2b84be52020-04-08 10:15:51 +0100160 k->configure(compile_context, input, bias, output, &info);
Sheri Zhang1b14c752020-03-09 14:29:52 +0000161 _kernel = std::move(k);
162 break;
163 }
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000164 default:
Luca Foschiani689c9682020-02-26 14:30:14 +0000165 ARM_COMPUTE_ERROR("Unsupported GEMMLowpOutputStage type.");
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000166 }
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000167}
168
169Status CLGEMMLowpOutputStage::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo &info)
170{
171 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100172 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM16);
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000173
Luca Foschiani689c9682020-02-26 14:30:14 +0000174 switch(info.type)
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000175 {
Luca Foschiani689c9682020-02-26 14:30:14 +0000176 case GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT:
Michele Di Giorgioba14c922020-10-12 13:27:57 +0100177 return CLGEMMLowpQuantizeDownInt32ScaleByFixedPointKernel::validate(input, bias, output, &info);
Luca Foschiani689c9682020-02-26 14:30:14 +0000178 case GEMMLowpOutputStageType::QUANTIZE_DOWN:
Luca Foschiani4b869532020-02-13 15:07:36 +0000179 return CLGEMMLowpQuantizeDownInt32ScaleKernel::validate(input, bias, output, &info);
Sheri Zhang1b14c752020-03-09 14:29:52 +0000180 case GEMMLowpOutputStageType::QUANTIZE_DOWN_FLOAT:
Sheri Zhang1b14c752020-03-09 14:29:52 +0000181 return CLGEMMLowpQuantizeDownInt32ScaleByFloatKernel::validate(input, bias, output, &info);
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000182 default:
Luca Foschiani689c9682020-02-26 14:30:14 +0000183 return ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Unsupported GEMMLowpOutputStage type.");
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000184 }
Sheri Zhang0cdbda52020-02-25 15:57:21 +0000185}
Sang-Hoon Parka45abfd2020-08-17 13:50:15 +0100186} // namespace arm_compute