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