blob: 099626d259cd923b0e0f76dbc09d064a3eb9c9ff [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sanghoon Leef47bfb92018-01-23 15:16:47 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/NELocallyConnectedMatrixMultiplyKernel.h"
25
26#include "arm_compute/core/AccessWindowTranspose.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/IAccessWindow.h"
30#include "arm_compute/core/ITensor.h"
31#include "arm_compute/core/NEON/NEFixedPoint.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Types.h"
34#include "arm_compute/core/Utils.h"
35#include "arm_compute/core/Validate.h"
36#include "arm_compute/core/Window.h"
37
38#include <arm_neon.h>
39#include <cstddef>
40#include <cstdint>
41#include <tuple>
42
43using namespace arm_compute;
44
45namespace arm_compute
46{
47class Coordinates;
48} // namespace arm_compute
49
50namespace
51{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010052void vector_matrix_multiply_f16(const ITensor *input0, const ITensor *input1, ITensor *output, const Window &window, const ThreadInfo &info)
Pablo Telloafde7322017-07-25 09:19:46 +010053{
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000054#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Pablo Telloafde7322017-07-25 09:19:46 +010055 const auto width_matrix_b = static_cast<int>(output->info()->dimension(0));
56 const auto in_b_stride = static_cast<int>(input1->info()->strides_in_bytes()[1] / data_size_from_type(input1->info()->data_type()));
57 const auto num_elems_vec_a = static_cast<int>(input0->info()->dimension(0));
58
59 // The implementation computes 16 elements per iteration
Moritz Pflanzerc186b572017-09-07 09:48:04 +010060 const int window_start_x = 16 * info.thread_id;
61 const int window_step_x = 16 * info.num_threads;
Pablo Telloafde7322017-07-25 09:19:46 +010062 // Make sure (window_end_x - window_start_x) is a multiple of window_step_x
63 const int window_end_x = ceil_to_multiple(width_matrix_b - window_start_x, window_step_x) + window_start_x;
64
65 Window win_out(window);
66 win_out.set(Window::DimX, Window::Dimension(window_start_x, window_end_x, window_step_x));
67
68 Window win_a(window);
69 win_a.set(Window::DimX, Window::Dimension(0, 1, 1));
70
71 Iterator ina(input0, win_a);
72 Iterator out(output, win_out);
73
74 execute_window_loop(win_out, [&](const Coordinates & id)
75 {
76 if(id.x() > width_matrix_b)
77 {
78 return;
79 }
80
81 float16x8_t acc0 = vdupq_n_f16(0.f);
82 float16x8_t acc1 = vdupq_n_f16(0.f);
83 float16x8_t acc2 = vdupq_n_f16(0.f);
84 float16x8_t acc3 = vdupq_n_f16(0.f);
85
86 auto vec_a = reinterpret_cast<const float16_t *>(ina.ptr());
87 auto matrix_b = reinterpret_cast<const float16_t *>(input1->ptr_to_element(Coordinates(id[0], 0, id[1])));
88
89 const float16_t *vec_a_end_addr = vec_a + num_elems_vec_a;
90
91 for(; vec_a <= (vec_a_end_addr - 4);)
92 {
93 const float16x4_t a0l = vld1_f16(vec_a);
94
95 float16x8_t b00 = vld1q_f16(matrix_b);
96 float16x8_t b01 = vld1q_f16(matrix_b + 8 + 0 * in_b_stride);
97 float16x8_t b02 = vld1q_f16(matrix_b + 16 + 0 * in_b_stride);
98 float16x8_t b03 = vld1q_f16(matrix_b + 24 + 0 * in_b_stride);
99
100 float16x8_t b10 = vld1q_f16(matrix_b + 0 + 1 * in_b_stride);
101 float16x8_t b11 = vld1q_f16(matrix_b + 8 + 1 * in_b_stride);
102 float16x8_t b12 = vld1q_f16(matrix_b + 16 + 1 * in_b_stride);
103 float16x8_t b13 = vld1q_f16(matrix_b + 24 + 1 * in_b_stride);
104
105 acc0 = vaddq_f16(acc0, vmulq_lane_f16(b00, a0l, 0));
106 acc1 = vaddq_f16(acc1, vmulq_lane_f16(b01, a0l, 0));
107 acc2 = vaddq_f16(acc2, vmulq_lane_f16(b02, a0l, 0));
108 acc3 = vaddq_f16(acc3, vmulq_lane_f16(b03, a0l, 0));
109 acc0 = vaddq_f16(acc0, vmulq_lane_f16(b10, a0l, 1));
110 acc1 = vaddq_f16(acc1, vmulq_lane_f16(b11, a0l, 1));
111 acc2 = vaddq_f16(acc2, vmulq_lane_f16(b12, a0l, 1));
112 acc3 = vaddq_f16(acc3, vmulq_lane_f16(b13, a0l, 1));
113
114 matrix_b += 2 * in_b_stride;
115
116 b00 = vld1q_f16(matrix_b);
117 b01 = vld1q_f16(matrix_b + 8 + 0 * in_b_stride);
118 b02 = vld1q_f16(matrix_b + 16 + 0 * in_b_stride);
119 b03 = vld1q_f16(matrix_b + 24 + 0 * in_b_stride);
120 b10 = vld1q_f16(matrix_b + 0 + 1 * in_b_stride);
121 b11 = vld1q_f16(matrix_b + 8 + 1 * in_b_stride);
122 b12 = vld1q_f16(matrix_b + 16 + 1 * in_b_stride);
123 b13 = vld1q_f16(matrix_b + 24 + 1 * in_b_stride);
124
125 acc0 = vaddq_f16(acc0, vmulq_lane_f16(b00, a0l, 2));
126 acc1 = vaddq_f16(acc1, vmulq_lane_f16(b01, a0l, 2));
127 acc2 = vaddq_f16(acc2, vmulq_lane_f16(b02, a0l, 2));
128 acc3 = vaddq_f16(acc3, vmulq_lane_f16(b03, a0l, 2));
129 acc0 = vaddq_f16(acc0, vmulq_lane_f16(b10, a0l, 3));
130 acc1 = vaddq_f16(acc1, vmulq_lane_f16(b11, a0l, 3));
131 acc2 = vaddq_f16(acc2, vmulq_lane_f16(b12, a0l, 3));
132 acc3 = vaddq_f16(acc3, vmulq_lane_f16(b13, a0l, 3));
133
134 vec_a += 4;
135 matrix_b += 2 * in_b_stride;
136 }
137
138 for(; vec_a < vec_a_end_addr;)
139 {
140 const float16_t a0 = *vec_a;
141 const float16x8_t b00 = vld1q_f16(matrix_b);
142 const float16x8_t b01 = vld1q_f16(matrix_b + 8 + 0 * in_b_stride);
143 const float16x8_t b02 = vld1q_f16(matrix_b + 16 + 0 * in_b_stride);
144 const float16x8_t b03 = vld1q_f16(matrix_b + 24 + 0 * in_b_stride);
145
146 acc0 = vaddq_f16(acc0, vmulq_n_f16(b00, a0));
147 acc1 = vaddq_f16(acc1, vmulq_n_f16(b01, a0));
148 acc2 = vaddq_f16(acc2, vmulq_n_f16(b02, a0));
149 acc3 = vaddq_f16(acc3, vmulq_n_f16(b03, a0));
150
151 vec_a += 1;
152 matrix_b += in_b_stride;
153 }
154
155 const auto vec_out = reinterpret_cast<float16_t *>(out.ptr());
156
157 vst1q_f16(vec_out + 0, acc0);
158 vst1q_f16(vec_out + 8, acc1);
159 vst1q_f16(vec_out + 16, acc2);
160 vst1q_f16(vec_out + 24, acc3);
161 },
162 ina, out);
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000163#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Telloafde7322017-07-25 09:19:46 +0100164 ARM_COMPUTE_UNUSED(input0);
165 ARM_COMPUTE_UNUSED(input1);
166 ARM_COMPUTE_UNUSED(output);
167 ARM_COMPUTE_UNUSED(window);
Georgios Pinitas30f02152017-09-27 11:20:48 +0100168 ARM_COMPUTE_UNUSED(info);
Pablo Telloafde7322017-07-25 09:19:46 +0100169 ARM_COMPUTE_ERROR("Not supported, recompile with -march=armv8.2-a+fp16+simd.");
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000170#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Telloafde7322017-07-25 09:19:46 +0100171}
172
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100173void vector_matrix_multiply_f32(const ITensor *input0, const ITensor *input1, ITensor *output, const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174{
175 const auto width_matrix_b = static_cast<int>(output->info()->dimension(0));
176 const auto in_b_stride = static_cast<int>(input1->info()->strides_in_bytes()[1] / data_size_from_type(input1->info()->data_type()));
177 const auto num_elems_vec_a = static_cast<int>(input0->info()->dimension(0));
178
179 // The implementation computes 16 elements per iteration
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100180 const int window_start_x = 16 * info.thread_id;
181 const int window_step_x = 16 * info.num_threads;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100182 // Make sure (window_end_x - window_start_x) is a multiple of window_step_x
183 const int window_end_x = ceil_to_multiple(width_matrix_b - window_start_x, window_step_x) + window_start_x;
184
185 Window win_out(window);
186 win_out.set(Window::DimX, Window::Dimension(window_start_x, window_end_x, window_step_x));
187
188 Window win_a(window);
Sanghoon Leef47bfb92018-01-23 15:16:47 +0000189 win_a.set(Window::DimX, Window::Dimension(0, 0, 0));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100190
191 Iterator ina(input0, win_a);
192 Iterator out(output, win_out);
193
194 execute_window_loop(win_out, [&](const Coordinates & id)
195 {
196 if(id.x() > width_matrix_b)
197 {
198 return;
199 }
200
201 float32x4_t acc0 = vdupq_n_f32(0.f);
202 float32x4_t acc1 = vdupq_n_f32(0.f);
203 float32x4_t acc2 = vdupq_n_f32(0.f);
204 float32x4_t acc3 = vdupq_n_f32(0.f);
205
206 auto vec_a = reinterpret_cast<const float *>(ina.ptr());
207 auto matrix_b = reinterpret_cast<const float *>(input1->ptr_to_element(Coordinates(id[0], 0, id[1])));
208
209#if __arm__
210 asm volatile("PLD [%0, #128*4]" ::"r"(reinterpret_cast<const uint8_t *>(vec_a)));
211 asm volatile("PLD [%0, #128*4]" ::"r"(reinterpret_cast<const uint8_t *>(matrix_b)));
212 asm volatile("PLD [%0, #128*4]" ::"r"(reinterpret_cast<const uint8_t *>(matrix_b + in_b_stride)));
Anthony Barbierac69aa12017-07-03 17:39:37 +0100213#endif /* __arm__ */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100214
215 const float *vec_a_end_addr = vec_a + num_elems_vec_a;
216
217 for(; vec_a <= (vec_a_end_addr - 4);)
218 {
219 float32x2_t a0l = vld1_f32(vec_a);
220
221 float32x4_t b00 = vld1q_f32(matrix_b + 0 + 0 * in_b_stride);
222 float32x4_t b01 = vld1q_f32(matrix_b + 4 + 0 * in_b_stride);
223 float32x4_t b02 = vld1q_f32(matrix_b + 8 + 0 * in_b_stride);
224 float32x4_t b03 = vld1q_f32(matrix_b + 12 + 0 * in_b_stride);
225
226 float32x4_t b10 = vld1q_f32(matrix_b + 0 + 1 * in_b_stride);
227 float32x4_t b11 = vld1q_f32(matrix_b + 4 + 1 * in_b_stride);
228 float32x4_t b12 = vld1q_f32(matrix_b + 8 + 1 * in_b_stride);
229 float32x4_t b13 = vld1q_f32(matrix_b + 12 + 1 * in_b_stride);
230
231#if __arm__
232 asm volatile("PLD [%0, #128*4]" ::"r"(reinterpret_cast<const uint8_t *>(vec_a)));
233 asm volatile("PLD [%0, #128*1]" ::"r"(reinterpret_cast<const uint8_t *>(matrix_b + 1 * in_b_stride)));
234 asm volatile("PLD [%0, #128*1]" ::"r"(reinterpret_cast<const uint8_t *>(matrix_b + 2 * in_b_stride)));
235 asm volatile("PLD [%0, #128*1]" ::"r"(reinterpret_cast<const uint8_t *>(matrix_b + 3 * in_b_stride)));
236 asm volatile("PLD [%0, #128*1]" ::"r"(reinterpret_cast<const uint8_t *>(matrix_b + 4 * in_b_stride)));
Sanghoon Leef47bfb92018-01-23 15:16:47 +0000237#endif /* __arm__ */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100238
239 acc0 = vmlaq_lane_f32(acc0, b00, a0l, 0);
240 acc1 = vmlaq_lane_f32(acc1, b01, a0l, 0);
241 acc2 = vmlaq_lane_f32(acc2, b02, a0l, 0);
242 acc3 = vmlaq_lane_f32(acc3, b03, a0l, 0);
243
244 acc0 = vmlaq_lane_f32(acc0, b10, a0l, 1);
245 acc1 = vmlaq_lane_f32(acc1, b11, a0l, 1);
246 acc2 = vmlaq_lane_f32(acc2, b12, a0l, 1);
247 acc3 = vmlaq_lane_f32(acc3, b13, a0l, 1);
248
249 vec_a += 2;
250 matrix_b += 2 * in_b_stride;
251
252 a0l = vld1_f32(vec_a);
253
254 b00 = vld1q_f32(matrix_b + 0 + 0 * in_b_stride);
255 b01 = vld1q_f32(matrix_b + 4 + 0 * in_b_stride);
256 b02 = vld1q_f32(matrix_b + 8 + 0 * in_b_stride);
257 b03 = vld1q_f32(matrix_b + 12 + 0 * in_b_stride);
258
259 b10 = vld1q_f32(matrix_b + 0 + 1 * in_b_stride);
260 b11 = vld1q_f32(matrix_b + 4 + 1 * in_b_stride);
261 b12 = vld1q_f32(matrix_b + 8 + 1 * in_b_stride);
262 b13 = vld1q_f32(matrix_b + 12 + 1 * in_b_stride);
263
264 acc0 = vmlaq_lane_f32(acc0, b00, a0l, 0);
265 acc1 = vmlaq_lane_f32(acc1, b01, a0l, 0);
266 acc2 = vmlaq_lane_f32(acc2, b02, a0l, 0);
267 acc3 = vmlaq_lane_f32(acc3, b03, a0l, 0);
268
269 acc0 = vmlaq_lane_f32(acc0, b10, a0l, 1);
270 acc1 = vmlaq_lane_f32(acc1, b11, a0l, 1);
271 acc2 = vmlaq_lane_f32(acc2, b12, a0l, 1);
272 acc3 = vmlaq_lane_f32(acc3, b13, a0l, 1);
273
274 vec_a += 2;
275 matrix_b += 2 * in_b_stride;
276 }
277
278 for(; vec_a < vec_a_end_addr;)
279 {
280 const float a0 = *vec_a;
281
282 const float32x4_t b00 = vld1q_f32(matrix_b + 0 + 0 * in_b_stride);
283 const float32x4_t b01 = vld1q_f32(matrix_b + 4 + 0 * in_b_stride);
284 const float32x4_t b02 = vld1q_f32(matrix_b + 8 + 0 * in_b_stride);
285 const float32x4_t b03 = vld1q_f32(matrix_b + 12 + 0 * in_b_stride);
286
287 acc0 = vmlaq_n_f32(acc0, b00, a0);
288 acc1 = vmlaq_n_f32(acc1, b01, a0);
289 acc2 = vmlaq_n_f32(acc2, b02, a0);
290 acc3 = vmlaq_n_f32(acc3, b03, a0);
291
292 vec_a += 1;
293 matrix_b += in_b_stride;
294 }
295
296 const auto vec_out = reinterpret_cast<float *>(out.ptr());
297
298 vst1q_f32(vec_out + 0, acc0);
299 vst1q_f32(vec_out + 4, acc1);
300 vst1q_f32(vec_out + 8, acc2);
301 vst1q_f32(vec_out + 12, acc3);
302 },
303 ina, out);
304}
Alex Gilday27c08ab2018-02-22 11:36:16 +0000305
306Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output)
307{
308 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
309 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
310 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::F16, DataType::F32);
311 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::F16, DataType::F32);
312 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1, output);
313 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
314
315 return Status{};
316}
317
318std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output)
319{
320 const unsigned int num_elems_processed_per_iteration_x = 16;
321
322 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x));
323
324 AccessWindowHorizontal input0_access(input0, 0, num_elems_processed_per_iteration_x);
325 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration_x);
326 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration_x);
327
328 bool window_changed = update_window_and_padding(win, input0_access, input1_access, output_access);
329
330 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
331
332 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
333
334 return std::make_tuple(err, win);
335}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100336} // namespace
337
338NELocallyConnectedMatrixMultiplyKernel::NELocallyConnectedMatrixMultiplyKernel()
339 : _input0(nullptr), _input1(nullptr), _output(nullptr)
340{
341}
342
343void NELocallyConnectedMatrixMultiplyKernel::configure(const ITensor *input0, const ITensor *input1, ITensor *output)
344{
Alex Gilday27c08ab2018-02-22 11:36:16 +0000345 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
346 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100347
348 _input0 = input0;
349 _input1 = input1;
350 _output = output;
351
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100352 // Configure kernel window
Alex Gilday27c08ab2018-02-22 11:36:16 +0000353 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100354
Alex Gilday27c08ab2018-02-22 11:36:16 +0000355 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100356
Alex Gilday27c08ab2018-02-22 11:36:16 +0000357 INEKernel::configure(std::get<1>(win_config));
358}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100359
Alex Gilday27c08ab2018-02-22 11:36:16 +0000360Status NELocallyConnectedMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output)
361{
362 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output));
363 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input0->clone().get(), input1->clone().get(), output->clone().get())));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100364
Alex Gilday27c08ab2018-02-22 11:36:16 +0000365 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100366}
367
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100368void NELocallyConnectedMatrixMultiplyKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100369{
370 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
371 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
372
Pablo Telloafde7322017-07-25 09:19:46 +0100373 switch(_input0->info()->data_type())
374 {
375 case DataType::F16:
376 {
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100377 vector_matrix_multiply_f16(_input0, _input1, _output, window, info);
Pablo Telloafde7322017-07-25 09:19:46 +0100378 break;
379 }
380 case DataType::F32:
381 {
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100382 vector_matrix_multiply_f32(_input0, _input1, _output, window, info);
Pablo Telloafde7322017-07-25 09:19:46 +0100383 break;
384 }
385 default:
386 {
387 ARM_COMPUTE_ERROR("Data type not supported");
388 break;
389 }
390 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100391}