blob: 951cb19679185964874d1694f6fdd90588b7ea43 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-2020 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/NEGEMMTranspose1xWKernel.h"
25
Michele Di Giorgio9d3e7f92019-08-13 14:23:21 +010026#include "arm_compute/core/AccessWindowStatic.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/NEON/INEKernel.h"
29#include "arm_compute/core/TensorInfo.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/Validate.h"
31#include "arm_compute/core/Window.h"
32
33#include <arm_neon.h>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010035namespace arm_compute
36{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000037namespace
38{
39TensorShape get_output_shape(const ITensorInfo *input)
40{
41 TensorShape output_shape{ input->tensor_shape() };
42 const size_t transpose_w = 16 / input->element_size();
43 output_shape.set(0, input->dimension(1) * transpose_w);
44 output_shape.set(1, static_cast<size_t>(std::ceil((input->dimension(0) / static_cast<float>(transpose_w)))));
45 return output_shape;
46}
47
Georgios Pinitas631c41a2017-12-06 11:53:03 +000048Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000049{
Georgios Pinitas33843562019-12-10 13:33:18 +000050 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
51 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Anthony Barbiereaefd002018-07-20 17:49:35 +010052 //Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000053
54 if(output->total_size() != 0)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), get_output_shape(input));
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000058 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000059 }
60
Georgios Pinitas631c41a2017-12-06 11:53:03 +000061 return Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000062}
63
Georgios Pinitas631c41a2017-12-06 11:53:03 +000064std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000065{
66 const unsigned int num_elems_processed_per_iteration = 16 / input->element_size();
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000067
68 // Configure kernel window
69 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
70
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000071 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000072
73 // Configure window in case of configured output
74 if(output->total_size() != 0)
75 {
Michele Di Giorgio9d3e7f92019-08-13 14:23:21 +010076 AccessWindowStatic output_access(output, 0, 0, output->dimension(0), output->dimension(1));
77 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000078 }
79
Michele Di Giorgio9d3e7f92019-08-13 14:23:21 +010080 const bool window_changed = update_window_and_padding(win, input_access);
81
Georgios Pinitas631c41a2017-12-06 11:53:03 +000082 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000083 return std::make_pair(err, win);
84}
85} // namespace
86
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087void NEGEMMTranspose1xWKernel::configure(const ITensor *input, ITensor *output)
88{
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000089 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090
91 // Output tensor auto inizialitation if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010092 auto_init_if_empty(*output->info(), get_output_shape(input->info()), 1, input->info()->data_type());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000094 // Perform validate step
95 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096
97 _input = input;
98 _output = output;
99
100 // Configure kernel window
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000101 auto win_config = validate_and_configure_window(input->info(), output->info());
102 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
103 INEKernel::configure(win_config.second);
104}
Moritz Pflanzer0745a982017-07-05 16:34:28 +0100105
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000106Status NEGEMMTranspose1xWKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000107{
108 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
109 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Moritz Pflanzer0745a982017-07-05 16:34:28 +0100110
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000111 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112}
113
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100114void NEGEMMTranspose1xWKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100116 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
118 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INESimpleKernel::window(), window);
119
120 /*
121 * Following an example of how the transposition1xW works when the input data type is F32
122 *
123 * |a00 a01 a02 a03|
124 * |a10 a11 a12 a13|
125 * |a20 a21 a22 a23| = | a00 a01 a02 a03 || a10 a11 a12 a13 || a20 a21 a22 a23 || a30 a31 a32 a33 |
126 * |a30 a31 a32 a33|
127 *
128 * The output matrix will have the following shape: [ height * W, ceil(width / W) ], where W = (16 / element size of the tensor)
129 */
130
131 // 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
132 Window win_out(window);
133 win_out.set(Window::DimX, Window::Dimension(0, 0, 0));
134 win_out.set(Window::DimY, Window::Dimension(0, 0, 0));
135
136 Iterator in(_input, window);
137 Iterator out(_output, win_out);
138
139 switch(_input->info()->element_size())
140 {
141 case 1:
142 {
143 const size_t out_stride = _output->info()->strides_in_bytes()[1];
144 execute_window_loop(window, [&](const Coordinates & id)
145 {
146 // Output address = base addr + (y * 16) + (x / 16 ) * stride
147 const uint8_t *in_ptr = in.ptr();
148 uint8_t *const out_ptr = out.ptr() + (id.y() << 4) + (id.x() >> 4) * out_stride;
149 vst1q_u8(out_ptr, vld1q_u8(in_ptr));
150 },
151 in, out);
152 break;
153 }
154 case 2:
155 {
156 const size_t out_stride = _output->info()->strides_in_bytes()[1] / sizeof(int16_t);
157 execute_window_loop(window, [&](const Coordinates & id)
158 {
159 // Output address = base addr + (y * 8) + (x / 8 ) * stride
160 const auto in_ptr = reinterpret_cast<const uint16_t *>(in.ptr());
161 const auto out_ptr = reinterpret_cast<uint16_t *>(out.ptr()) + (id.y() << 3) + (id.x() >> 3) * out_stride;
162 vst1q_u16(out_ptr, vld1q_u16(in_ptr));
163 },
164 in, out);
165 break;
166 }
167 case 4:
168 {
169 const size_t out_stride = _output->info()->strides_in_bytes()[1] / sizeof(float);
170 execute_window_loop(window, [&](const Coordinates & id)
171 {
172 // Output address = base addr + (y * 4) + (x / 4 ) * stride
173 const auto in_ptr = reinterpret_cast<const uint32_t *>(in.ptr());
174 const auto out_ptr = reinterpret_cast<uint32_t *>(out.ptr()) + (id.y() << 2) + (id.x() >> 2) * out_stride;
175 vst1q_u32(out_ptr, vld1q_u32(in_ptr));
176 },
177 in, out);
178 break;
179 }
180 default:
181 {
182 ARM_COMPUTE_ERROR("Element size not supported");
183 break;
184 }
185 }
186}
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100187} // namespace arm_compute