blob: ac17b2efa51fb54603123080a12edab88db3c520 [file] [log] [blame]
George Wort2d7e6832019-02-22 16:37:41 +00001/*
2 * Copyright (c) 2019 ARM Limited.
3 *
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#ifndef __ARM_COMPUTE_NEGEMMLOWPOFFSETCONTRIBUTIONOUTPUTSTAGEKERNEL_H__
25#define __ARM_COMPUTE_NEGEMMLOWPOFFSETCONTRIBUTIONOUTPUTSTAGEKERNEL_H__
26
27#include "arm_compute/core/NEON/INEKernel.h"
28
29namespace arm_compute
30{
31class ITensor;
32
33/** NEON kernel used to add the offset contribution and perform the output stage after @ref NEGEMMLowpMatrixMultiplyKernel.
34 *
35 * The computation is performed in-place
36 *
37 * This kernel takes a final int32 accumulator value (the output of @ref NEGEMMLowpMatrixMultiplyKernel),
38 * and adds to it the offset contribution of matrix A and matrix B in-place.
39 *
Georgios Pinitas6e1791b2019-12-02 19:01:25 +000040 * The output stage can perform either QuantizeDownInt32ToUint8Scale or QuantizeDownInt32ToUint8ScaleByFixedPoint for Uint8.
41 * The output stage can perform either QuantizeDownInt32ToInt8Scale or QuantizeDownInt32ToInt8ScaleByFixedPoint for Int8.
George Wort2d7e6832019-02-22 16:37:41 +000042 *
Georgios Pinitas6e1791b2019-12-02 19:01:25 +000043 * For QuantizeDownInt32ToUint8Scale/QuantizeDownInt32ToInt8Scale the final result is:
George Wort2d7e6832019-02-22 16:37:41 +000044 *
45 * ((mm_result'[i][k] + result_offset) * result_mult_int) >> result_shift
46 *
Georgios Pinitas6e1791b2019-12-02 19:01:25 +000047 * For QuantizeDownInt32ToUint8ScaleByFixedPoint/QuantizeDownInt32ToInt8ScaleByFixedPoint the final result is:
George Wort2d7e6832019-02-22 16:37:41 +000048 *
49 * (FixedPointMul(mm_result'[i][k], result_fixedpoint_multiplier) >> result_shift) + result_offset_after_shift
50 *
51 * where FixedPointMul(x, y) is the nearest integer to the following
52 * mathematical expression, evaluated without overflow or intermediate rounding:
53 *
54 * (x * y) / 2^31
55 *
56 * and mm_result'[i][k] = mm_result[i][k] +
57 * (vector_sum_col[k] * a_offset) +
58 * (vector_sum_row[i] * b_offset) +
59 * (a_offset * b_offset * k)
60 */
61
62class NEGEMMLowpOffsetContributionOutputStageKernel : public INEKernel
63{
64public:
65 const char *name() const override
66 {
67 return "NEGEMMLowpOffsetContributionOutputStageKernel";
68 }
69 /** Constructor */
70 NEGEMMLowpOffsetContributionOutputStageKernel();
71 /** Prevent instances of this class from being copied (As this class contains pointers)*/
72 NEGEMMLowpOffsetContributionOutputStageKernel(const NEGEMMLowpOffsetContributionOutputStageKernel &) = delete;
73 /** Prevent instances of this class from being copied (As this class contains pointers)*/
74 NEGEMMLowpOffsetContributionOutputStageKernel &operator=(const NEGEMMLowpOffsetContributionOutputStageKernel &) = delete;
75 /** Allow instances of this class to be moved */
76 NEGEMMLowpOffsetContributionOutputStageKernel(NEGEMMLowpOffsetContributionOutputStageKernel &&) = default;
77 /** Allow instances of this class to be moved */
78 NEGEMMLowpOffsetContributionOutputStageKernel &operator=(NEGEMMLowpOffsetContributionOutputStageKernel &&) = default;
79 /** Initialise the kernel's input and output.
80 *
81 * @param[in] mm_result Input tensor containing the result of @ref NEGEMMLowpMatrixMultiplyKernel. Data type supported: S32
82 * @param[in] vector_sum_col Input row-vector of sums of all the entries in each column of matrix B.
83 * Note: vector_sum_col can be a nullptr in case a_offset = 0. Data type supported: same as @p mm_result
84 * @param[in] vector_sum_row Input row-vector of sums of all the entries in each row of matrix A.
85 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
86 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p mm_result.
Georgios Pinitas448a81f2019-11-21 14:10:25 +000087 * @param[out] output Output tensor containing the final quantized result. Data type supported: QASYMM8/QASYMM8_SIGNED
George Wort2d7e6832019-02-22 16:37:41 +000088 * @param[in] k Number of matrix A columns or Matrix B rows
89 * @param[in] a_offset Offset to be added to each element of the matrix A.
90 * @param[in] b_offset Offset to be added to each element of the matrix B.
91 * @param[in] output_stage GEMMLowp output stage info, providing the type of quantization and the necessary parameters.
92 */
93 void configure(const ITensor *mm_result, const ITensor *vector_sum_col, const ITensor *vector_sum_row, const ITensor *bias, ITensor *output, int32_t k, int32_t a_offset, int32_t b_offset,
94 GEMMLowpOutputStageInfo output_stage);
95 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpOffsetContributionOutputStageKernel
96 *
97 * @param[in] mm_result Input tensor info containing the result of @ref NEGEMMLowpMatrixMultiplyKernel. Data type supported: S32
98 * @param[in] vector_sum_col Tensor info for the input row-vector of sums of all the entries in each column of matrix B.
99 * Note: vector_sum_col can be a nullptr in case a_offset = 0. Data type supported: same as @p mm_result
100 * @param[in] vector_sum_row Tensor info for the input row-vector of sums of all the entries in each row of matrix A.
101 * Note: vector_sum_row can be a nullptr in case b_offset = 0. Data type supported: same as @p mm_result
102 * @param[in] bias Biases tensor info. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
103 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p mm_result.
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000104 * @param[in] output Output tensor info containing the final quantized result. Data type supported: QASYMM8/QASYMM8_SIGNED
George Wort2d7e6832019-02-22 16:37:41 +0000105 * @param[in] a_offset Offset to be added to each element of the matrix A.
106 * @param[in] b_offset Offset to be added to each element of the matrix B.
107 * @param[in] output_stage GEMMLowp output stage info, providing the type of quantization and the necessary parameters.
108 *
109 * @return a status
110 */
111 static Status validate(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias, const ITensorInfo *output, int32_t a_offset,
112 int32_t b_offset,
113 GEMMLowpOutputStageInfo output_stage);
114
115 // Inherited methods overridden:
116 void run(const Window &window, const ThreadInfo &info) override;
117
118 using NEGEMMLowpOffsetContributionOutputStageFunction = std::function<void(const Window, const ITensor *, const ITensor *, const ITensor *, const ITensor *,
119 ITensor *, int32_t, int32_t, int32_t, bool, GEMMLowpOutputStageInfo)>;
120
121private:
122 /** Function to use for the particular tensors passed to configure() */
123 NEGEMMLowpOffsetContributionOutputStageFunction _function;
124 const ITensor *_vector_sum_col;
125 const ITensor *_vector_sum_row;
126 const ITensor *_bias;
127 const ITensor *_mm_result;
128 ITensor *_output;
129 int32_t _a_offset;
130 int32_t _b_offset;
131 int32_t _k_offset;
132 bool _slide_vector_sum_col;
133 GEMMLowpOutputStageInfo _output_stage;
134};
135} // namespace arm_compute
136
137#endif /* __ARM_COMPUTE_NEGEMMLOWPOFFSETCONTRIBUTIONOUTPUTSTAGEKERNEL_H__ */