blob: 7f83144e121f084ba0fa1a8c7cd6509b95411d7f [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/NEGEMMTranspose1xWKernel.h"
25
26#include "arm_compute/core/AccessWindowTranspose.h"
27#include "arm_compute/core/Coordinates.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/ITensor.h"
31#include "arm_compute/core/NEON/INEKernel.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/TensorShape.h"
34#include "arm_compute/core/Types.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 <cstring>
41
42using namespace arm_compute;
43
44void NEGEMMTranspose1xWKernel::configure(const ITensor *input, ITensor *output)
45{
Gian Marcoe75a02b2017-11-08 12:24:09 +000046 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QS8, DataType::QS16, DataType::U8, DataType::S8, DataType::U16, DataType::S16, DataType::U32, DataType::S32,
47 DataType::F16,
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010048 DataType::F32);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
50
51 TensorShape output_shape{ input->info()->tensor_shape() };
52 const size_t transpose_w = 16 / input->info()->element_size();
53 output_shape.set(0, input->info()->dimension(1) * transpose_w);
54 output_shape.set(1, static_cast<size_t>(std::ceil((input->info()->dimension(0) / static_cast<float>(transpose_w)))));
55
56 // Output tensor auto inizialitation if not yet initialized
57 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
58
59 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
60 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
Gian Marco Iodice9f89bae2017-06-22 12:09:49 +010061 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062
63 const unsigned int num_elems_processed_per_iteration = 16 / input->info()->element_size();
Moritz Pflanzer0745a982017-07-05 16:34:28 +010064 const int scale_x = num_elems_processed_per_iteration;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065
66 _input = input;
67 _output = output;
68
69 // Configure kernel window
Moritz Pflanzer0745a982017-07-05 16:34:28 +010070 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration));
71
72 ARM_COMPUTE_ERROR_ON_MSG((win.x().end() / scale_x) == 0, "Transposed shape would be 0 in the second dimension");
73
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074 AccessWindowTranspose output_access(output->info(), 0, 0, num_elems_processed_per_iteration, 1, scale_x, 1.f / scale_x);
75
76 update_window_and_padding(win,
77 AccessWindowHorizontal(input->info(), 0, num_elems_processed_per_iteration),
78 output_access);
79
Georgios Pinitas4cbee6e2017-06-19 13:02:56 +010080 output_access.set_valid_region(win, ValidRegion(Coordinates(0, 0), input->info()->tensor_shape()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
82 INEKernel::configure(win);
83}
84
Moritz Pflanzerc186b572017-09-07 09:48:04 +010085void NEGEMMTranspose1xWKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010087 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
89 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INESimpleKernel::window(), window);
90
91 /*
92 * Following an example of how the transposition1xW works when the input data type is F32
93 *
94 * |a00 a01 a02 a03|
95 * |a10 a11 a12 a13|
96 * |a20 a21 a22 a23| = | a00 a01 a02 a03 || a10 a11 a12 a13 || a20 a21 a22 a23 || a30 a31 a32 a33 |
97 * |a30 a31 a32 a33|
98 *
99 * The output matrix will have the following shape: [ height * W, ceil(width / W) ], where W = (16 / element size of the tensor)
100 */
101
102 // Set window for output tensor. Set to 0 the X and Y dimensions in order to allow multi-threading implementation and future batched matrix multiplications
103 Window win_out(window);
104 win_out.set(Window::DimX, Window::Dimension(0, 0, 0));
105 win_out.set(Window::DimY, Window::Dimension(0, 0, 0));
106
107 Iterator in(_input, window);
108 Iterator out(_output, win_out);
109
110 switch(_input->info()->element_size())
111 {
112 case 1:
113 {
114 const size_t out_stride = _output->info()->strides_in_bytes()[1];
115 execute_window_loop(window, [&](const Coordinates & id)
116 {
117 // Output address = base addr + (y * 16) + (x / 16 ) * stride
118 const uint8_t *in_ptr = in.ptr();
119 uint8_t *const out_ptr = out.ptr() + (id.y() << 4) + (id.x() >> 4) * out_stride;
120 vst1q_u8(out_ptr, vld1q_u8(in_ptr));
121 },
122 in, out);
123 break;
124 }
125 case 2:
126 {
127 const size_t out_stride = _output->info()->strides_in_bytes()[1] / sizeof(int16_t);
128 execute_window_loop(window, [&](const Coordinates & id)
129 {
130 // Output address = base addr + (y * 8) + (x / 8 ) * stride
131 const auto in_ptr = reinterpret_cast<const uint16_t *>(in.ptr());
132 const auto out_ptr = reinterpret_cast<uint16_t *>(out.ptr()) + (id.y() << 3) + (id.x() >> 3) * out_stride;
133 vst1q_u16(out_ptr, vld1q_u16(in_ptr));
134 },
135 in, out);
136 break;
137 }
138 case 4:
139 {
140 const size_t out_stride = _output->info()->strides_in_bytes()[1] / sizeof(float);
141 execute_window_loop(window, [&](const Coordinates & id)
142 {
143 // Output address = base addr + (y * 4) + (x / 4 ) * stride
144 const auto in_ptr = reinterpret_cast<const uint32_t *>(in.ptr());
145 const auto out_ptr = reinterpret_cast<uint32_t *>(out.ptr()) + (id.y() << 2) + (id.x() >> 2) * out_stride;
146 vst1q_u32(out_ptr, vld1q_u32(in_ptr));
147 },
148 in, out);
149 break;
150 }
151 default:
152 {
153 ARM_COMPUTE_ERROR("Element size not supported");
154 break;
155 }
156 }
157}