blob: 71dd4c7aa12563d2dd703ee875f90e23289a9775 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 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#include "arm_compute/core/NEON/kernels/NEGEMMMatrixAdditionKernel.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/NEON/NEFixedPoint.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Validate.h"
31
32#include <arm_neon.h>
33
34using namespace arm_compute;
35
36namespace arm_compute
37{
38class Coordinates;
39} // namespace arm_compute
40
41namespace
42{
43void matrix_addition_f32(const ITensor *input, ITensor *output, const Window &window, float beta)
44{
45 const float32x4_t beta_f32 = vdupq_n_f32(beta);
46
47 Iterator in(input, window);
48 Iterator out(output, window);
49
50 execute_window_loop(window, [&](const Coordinates & id)
51 {
52 const auto in_ptr = reinterpret_cast<const float *>(in.ptr());
53 const auto out_ptr = reinterpret_cast<float *>(out.ptr());
54
55 float32x4x4_t alpha_ab =
56 {
57 {
58 vld1q_f32(out_ptr + 0),
59 vld1q_f32(out_ptr + 4),
60 vld1q_f32(out_ptr + 8),
61 vld1q_f32(out_ptr + 12)
62 }
63 };
64
65 const float32x4x4_t c =
66 {
67 {
68 vld1q_f32(in_ptr + 0),
69 vld1q_f32(in_ptr + 4),
70 vld1q_f32(in_ptr + 8),
71 vld1q_f32(in_ptr + 12)
72 }
73 };
74
75 // Multiply matrix C by its weight and accumulate
76 alpha_ab.val[0] = vmlaq_f32(alpha_ab.val[0], c.val[0], beta_f32);
77 alpha_ab.val[1] = vmlaq_f32(alpha_ab.val[1], c.val[1], beta_f32);
78 alpha_ab.val[2] = vmlaq_f32(alpha_ab.val[2], c.val[2], beta_f32);
79 alpha_ab.val[3] = vmlaq_f32(alpha_ab.val[3], c.val[3], beta_f32);
80
81 vst1q_f32(out_ptr + 0, alpha_ab.val[0]);
82 vst1q_f32(out_ptr + 4, alpha_ab.val[1]);
83 vst1q_f32(out_ptr + 8, alpha_ab.val[2]);
84 vst1q_f32(out_ptr + 12, alpha_ab.val[3]);
85 },
86 in, out);
87}
88
89#ifdef ARM_COMPUTE_ENABLE_FP16
90void matrix_addition_f16(const ITensor *input, ITensor *output, const Window &window, float beta)
91{
92 const float16x8_t beta_f16 = vdupq_n_f16(beta);
93
94 Iterator in(input, window);
95 Iterator out(output, window);
96
97 execute_window_loop(window, [&](const Coordinates & id)
98 {
99 const auto in_ptr = reinterpret_cast<const float16_t *>(in.ptr());
100 const auto out_ptr = reinterpret_cast<float16_t *>(out.ptr());
101
102 float16x8x2_t alpha_ab =
103 {
104 {
105 vld1q_f16(out_ptr + 0),
106 vld1q_f16(out_ptr + 8)
107 }
108 };
109
110 float16x8x2_t c =
111 {
112 {
113 vld1q_f16(in_ptr + 0),
114 vld1q_f16(in_ptr + 8)
115 }
116 };
117
118 // Multiply matrix C by its weight and accumulate
119 alpha_ab.val[0] = vaddq_f16(alpha_ab.val[0], vmulq_f16(c.val[0], beta_f16));
120 alpha_ab.val[1] = vaddq_f16(alpha_ab.val[1], vmulq_f16(c.val[1], beta_f16));
121
122 vst1q_f16(out_ptr + 0, alpha_ab.val[0]);
123 vst1q_f16(out_ptr + 8, alpha_ab.val[1]);
124 },
125 in, out);
126}
127#endif
128
129void matrix_addition_qs8(const ITensor *input, ITensor *output, const Window &window, float beta)
130{
131 const int fixed_point_position = input->info()->fixed_point_position();
132 const qint8x16_t beta_qs8 = vdupq_n_qs8(scvt_qs8_f32(beta, fixed_point_position));
133
134 Iterator in(input, window);
135 Iterator out(output, window);
136
137 execute_window_loop(window, [&](const Coordinates & id)
138 {
139 const auto in_ptr = reinterpret_cast<const qint8_t *>(in.ptr());
140 const auto out_ptr = reinterpret_cast<qint8_t *>(out.ptr());
141
142 qint8x16_t alpha_ab = vld1q_qs8(out_ptr);
143 const qint8x16_t c = vld1q_qs8(in_ptr);
144
145 // Multiply matrix C by its weight and accumulate
146 alpha_ab = vqmlaq_qs8(alpha_ab, c, beta_qs8, fixed_point_position);
147
148 vst1q_qs8(out_ptr, alpha_ab);
149 },
150 in, out);
151}
152} // namespace
153
154NEGEMMMatrixAdditionKernel::NEGEMMMatrixAdditionKernel()
155 : INESimpleKernel(), _func(nullptr), _beta(0.0f)
156{
157}
158
159void NEGEMMMatrixAdditionKernel::configure(const ITensor *input, ITensor *output, float beta)
160{
161 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::F16, DataType::F32);
162 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::QS8, DataType::F16, DataType::F32);
163 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
164 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
165 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != output->info()->dimension(0));
166 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != output->info()->dimension(1));
167
168 switch(input->info()->data_type())
169 {
170 case DataType::F32:
171 _func = &matrix_addition_f32;
172 break;
173 case DataType::QS8:
174 _func = &matrix_addition_qs8;
175 break;
176 case DataType::F16:
177#ifdef ARM_COMPUTE_ENABLE_FP16
178 _func = &matrix_addition_f16;
179 break;
180#endif
181 default:
182 ARM_COMPUTE_ERROR("Data type not supported");
183 break;
184 }
185
186 constexpr unsigned int num_elems_processed_per_iteration = 16;
187
188 INESimpleKernel::configure(input, output, num_elems_processed_per_iteration);
189
190 _beta = beta;
191}
192
193void NEGEMMMatrixAdditionKernel::run(const Window &window)
194{
195 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
196 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INESimpleKernel::window(), window);
197
198 if(_beta != 0.0f)
199 {
200 (*_func)(_input, _output, window, _beta);
201 }
202}