blob: 020fbbe52c36bcc164e28ae50febcbe38b04ddf4 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Manuel Bottini9c9b70b2019-07-01 17:35:56 +01002 * Copyright (c) 2017-2019 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"
Manuel Bottini9c9b70b2019-07-01 17:35:56 +010027#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel.h"
Gian Marco58c57942017-11-28 09:10:03 +000028#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010029#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel.h"
Gian Marco05288a22017-11-21 10:57:50 +000030#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.h"
31#include "support/ToolchainSupport.h"
32
Georgios Pinitas932491f2018-09-21 16:33:15 +010033namespace arm_compute
34{
Gian Marco05288a22017-11-21 10:57:50 +000035void CLGEMMLowpQuantizeDownInt32ToUint8Scale::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, int result_offset, int result_mult_int, int result_shift, int min, int max)
36{
37 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel>();
38 k->configure(input, bias, output, result_offset, result_mult_int, result_shift, min, max);
39 _kernel = std::move(k);
Gian Marco58c57942017-11-28 09:10:03 +000040}
41
Georgios Pinitas631c41a2017-12-06 11:53:03 +000042Status CLGEMMLowpQuantizeDownInt32ToUint8Scale::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000043{
44 return CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel::validate(input, bias, output, min, max);
45}
46
Georgios Pinitas932491f2018-09-21 16:33:15 +010047void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
48 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
Gian Marco Iodice4b908652018-10-18 10:21:02 +010049 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000050{
51 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel>();
Gian Marco Iodice4b908652018-10-18 10:21:02 +010052 k->configure(input, bias, output, result_fixedpoint_multiplier, result_shift, result_offset_after_shift, min, max);
Gian Marco58c57942017-11-28 09:10:03 +000053 _kernel = std::move(k);
54}
55
Georgios Pinitas932491f2018-09-21 16:33:15 +010056Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Gian Marco Iodice4b908652018-10-18 10:21:02 +010057 int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000058{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010059 return CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::validate(input, bias, output, min, max);
Georgios Pinitas932491f2018-09-21 16:33:15 +010060}
Georgios Pinitas51e53a32018-10-22 13:49:08 +010061
62void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
63 float multiplier, int offset,
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000064 int min, int max)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010065{
66 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel>();
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000067 k->configure(input, bias, output, multiplier, offset, min, max);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010068 _kernel = std::move(k);
69}
70
71Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000072 int min, int max)
Georgios Pinitas51e53a32018-10-22 13:49:08 +010073{
Gian Marco Iodice0c54a622018-10-30 12:20:03 +000074 return CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel::validate(input, bias, output, min, max);
Georgios Pinitas51e53a32018-10-22 13:49:08 +010075}
Manuel Bottini9c9b70b2019-07-01 17:35:56 +010076
77void CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
78 int result_fixedpoint_multiplier, int result_shift,
79 int min, int max)
80{
81 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel>();
82 k->configure(input, bias, output, result_fixedpoint_multiplier, result_shift, min, max);
83 _kernel = std::move(k);
84}
85
86Status CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
87 int min, int max)
88{
89 return CLGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel::validate(input, bias, output, min, max);
90}
91
Georgios Pinitas932491f2018-09-21 16:33:15 +010092} // namespace arm_compute