blob: 621c9693fe809b7c584bbedd36abf68321e968cf [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
2 * Copyright (c) 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/GLES_COMPUTE/kernels/GCTransposeKernel.h"
25
26#include "arm_compute/core/AccessWindowTranspose.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/GLES_COMPUTE/GCHelpers.h"
29#include "arm_compute/core/GLES_COMPUTE/GCKernelLibrary.h"
30#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
31#include "arm_compute/core/GLES_COMPUTE/OpenGLES.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/Types.h"
34
35#include <set>
36#include <string>
37
38using namespace arm_compute;
39
40void GCTransposeKernel::configure(const IGCTensor *input, IGCTensor *output)
41{
42 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
43 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
44
45 TensorShape output_shape{ input->info()->tensor_shape() };
46 const size_t w_out = input->info()->dimension(1);
47 const size_t h_out = input->info()->dimension(0);
48 output_shape.set(0, w_out);
49 output_shape.set(1, h_out);
50
51 // Output tensor auto inizialitation if not yet initialized
52 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
53
54 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
55 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
56
57 _input = input;
58 _output = output;
59
60 std::set<std::string> build_opts;
61 std::string dt_name = (input->info()->data_type() == DataType::F32) ? "DATA_TYPE_FP32" : "DATA_TYPE_FP16";
62 build_opts.emplace(("#define " + dt_name));
63 build_opts.emplace("#define LOCAL_SIZE_X " + support::cpp11::to_string(1));
64 build_opts.emplace("#define LOCAL_SIZE_Y " + support::cpp11::to_string(1));
65 build_opts.emplace("#define LOCAL_SIZE_Z " + support::cpp11::to_string(1));
66
Frank Leib9d38ee2017-12-05 10:43:33 +080067 // Configure kernel window
68 unsigned int num_elems_processed_per_iteration = 4;
69
70 if(input->info()->data_type() == DataType::F16)
71 {
72#define TRANSPOSE_8X8
73
74#if defined(TRANSPOSE_4X4)
75 build_opts.emplace(("#define TRANSPOSE_4X4"));
76 num_elems_processed_per_iteration = 4;
77#elif defined(TRANSPOSE_8X8) /* TRANSPOSE_4X4 */
steli017d473dd2017-12-06 18:53:32 +080078 if(w_out != h_out)
79 {
80 build_opts.emplace("#define TRANSPOSE_8X8");
81 num_elems_processed_per_iteration = 8;
82 }
83 else
84 {
85 build_opts.emplace("#define TRANSPOSE_8X8_SQUARE");
86 num_elems_processed_per_iteration = 8;
87 }
Frank Leib9d38ee2017-12-05 10:43:33 +080088#endif /* TRANSPOSE_4X4 */
89 }
90
Anthony Barbier7068f992017-10-26 15:23:08 +010091 // Create kernel
92 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel("transpose", build_opts));
93
Anthony Barbier7068f992017-10-26 15:23:08 +010094 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration, num_elems_processed_per_iteration));
95
96 AccessWindowRectangle input_access(input->info(), 0, 0, num_elems_processed_per_iteration, num_elems_processed_per_iteration);
97 AccessWindowTranspose output_access(output->info(), 0, 0, num_elems_processed_per_iteration, num_elems_processed_per_iteration);
98 update_window_and_padding(win, input_access, output_access);
99
100 output_access.set_valid_region(win, input->info()->valid_region());
101
Anthony Barbier7068f992017-10-26 15:23:08 +0100102 IGCKernel::configure(win);
103}
104
105void GCTransposeKernel::run(const Window &window)
106{
107 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
108 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IGCKernel::window(), window);
109
110 _kernel.use();
111
112 Window slice = window.first_slice_window_2D();
113
114 do
115 {
116 unsigned int idx = 0;
117 if(_input->info()->data_type() == DataType::F32)
118 {
119 add_2D_tensor_argument(idx, _input, 1, slice);
120 add_2D_tensor_argument(idx, _output, 2, slice);
121 }
122 else if(_input->info()->data_type() == DataType::F16)
123 {
Frank Leib9d38ee2017-12-05 10:43:33 +0800124#if defined(TRANSPOSE_4X4)
125 BufferParam param = { 1, 3 };
126 add_2D_tensor_argument(idx, _input, param, slice);
127 param.binding_point = 2;
128 add_2D_tensor_argument(idx, _output, param, slice);
129#elif defined(TRANSPOSE_8X8) /* TRANSPOSE_4X4 */
130 BufferParam param = { 1, 4 };
131 add_2D_tensor_argument(idx, _input, param, slice);
132 param.binding_point = 2;
133 add_2D_tensor_argument(idx, _output, param, slice);
134#endif /* TRANSPOSE_4X4 */
Anthony Barbier7068f992017-10-26 15:23:08 +0100135 }
136
137 _kernel.update_shader_params();
138 enqueue(*this, slice);
139 }
140 while(window.slide_window_slice_2D(slice));
141}