blob: f5dc65577605cddc6b2b32381f1dacf6d54566cf [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Georgios Pinitas932491f2018-09-21 16:33:15 +01002 * Copyright (c) 2017-2018 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"
Gian Marco58c57942017-11-28 09:10:03 +000027#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel.h"
Georgios Pinitas51e53a32018-10-22 13:49:08 +010028#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel.h"
Gian Marco05288a22017-11-21 10:57:50 +000029#include "arm_compute/core/CL/kernels/CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel.h"
30#include "support/ToolchainSupport.h"
31
Georgios Pinitas932491f2018-09-21 16:33:15 +010032namespace arm_compute
33{
Gian Marco05288a22017-11-21 10:57:50 +000034void CLGEMMLowpQuantizeDownInt32ToUint8Scale::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output, int result_offset, int result_mult_int, int result_shift, int min, int max)
35{
36 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel>();
37 k->configure(input, bias, output, result_offset, result_mult_int, result_shift, min, max);
38 _kernel = std::move(k);
Gian Marco58c57942017-11-28 09:10:03 +000039}
40
Georgios Pinitas631c41a2017-12-06 11:53:03 +000041Status CLGEMMLowpQuantizeDownInt32ToUint8Scale::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min, int max)
Gian Marco58c57942017-11-28 09:10:03 +000042{
43 return CLGEMMLowpQuantizeDownInt32ToUint8ScaleKernel::validate(input, bias, output, min, max);
44}
45
Georgios Pinitas932491f2018-09-21 16:33:15 +010046void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
47 int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
48 int min, int max, unsigned int output_3d_depth)
Gian Marco58c57942017-11-28 09:10:03 +000049{
50 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel>();
Georgios Pinitas932491f2018-09-21 16:33:15 +010051 k->configure(input, bias, output, result_fixedpoint_multiplier, result_shift, result_offset_after_shift, min, max, output_3d_depth);
Gian Marco58c57942017-11-28 09:10:03 +000052 _kernel = std::move(k);
53}
54
Georgios Pinitas932491f2018-09-21 16:33:15 +010055Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
56 int min, int max, unsigned int output_3d_depth)
Gian Marco58c57942017-11-28 09:10:03 +000057{
Georgios Pinitas932491f2018-09-21 16:33:15 +010058 return CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel::validate(input, bias, output, min, max, output_3d_depth);
59}
Georgios Pinitas51e53a32018-10-22 13:49:08 +010060
61void CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat::configure(const ICLTensor *input, const ICLTensor *bias, ICLTensor *output,
62 float multiplier, int offset,
63 int min, int max, unsigned int output_3d_depth)
64{
65 auto k = arm_compute::support::cpp14::make_unique<CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel>();
66 k->configure(input, bias, output, multiplier, offset, min, max, output_3d_depth);
67 _kernel = std::move(k);
68}
69
70Status CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloat::validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output,
71 int min, int max, unsigned int output_3d_depth)
72{
73 return CLGEMMLowpQuantizeDownInt32ToUint8ScaleByFloatKernel::validate(input, bias, output, min, max, output_3d_depth);
74}
Georgios Pinitas932491f2018-09-21 16:33:15 +010075} // namespace arm_compute