blob: 3bec05b5f163de3ced1251b17ced031677053db5 [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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/GLES_COMPUTE/kernels/GCTransposeKernel.h"
25
Anthony Barbier7068f992017-10-26 15:23:08 +010026#include "arm_compute/core/Error.h"
27#include "arm_compute/core/GLES_COMPUTE/GCHelpers.h"
28#include "arm_compute/core/GLES_COMPUTE/GCKernelLibrary.h"
29#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
30#include "arm_compute/core/GLES_COMPUTE/OpenGLES.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/Types.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/AccessWindowStatic.h"
34#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010037
38#include <set>
39#include <string>
40
41using namespace arm_compute;
42
43void GCTransposeKernel::configure(const IGCTensor *input, IGCTensor *output)
44{
45 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
46 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
47
48 TensorShape output_shape{ input->info()->tensor_shape() };
49 const size_t w_out = input->info()->dimension(1);
50 const size_t h_out = input->info()->dimension(0);
51 output_shape.set(0, w_out);
52 output_shape.set(1, h_out);
53
54 // Output tensor auto inizialitation if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010055 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type());
Anthony Barbier7068f992017-10-26 15:23:08 +010056
57 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
58 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
59
60 _input = input;
61 _output = output;
62
steli01d0643892018-01-02 14:56:06 +080063 // for better performance
64 if(w_out < 512 && h_out < 512)
65 {
66 _lws_hint = gles::NDRange(8U, 1U, 1U);
67 }
68 else
69 {
70 _lws_hint = gles::NDRange(1U, 8U, 1U);
71 }
72
Anthony Barbier7068f992017-10-26 15:23:08 +010073 std::set<std::string> build_opts;
74 std::string dt_name = (input->info()->data_type() == DataType::F32) ? "DATA_TYPE_FP32" : "DATA_TYPE_FP16";
75 build_opts.emplace(("#define " + dt_name));
steli01d0643892018-01-02 14:56:06 +080076 build_opts.emplace("#define LOCAL_SIZE_X " + support::cpp11::to_string(_lws_hint[0]));
77 build_opts.emplace("#define LOCAL_SIZE_Y " + support::cpp11::to_string(_lws_hint[1]));
78 build_opts.emplace("#define LOCAL_SIZE_Z " + support::cpp11::to_string(_lws_hint[2]));
Anthony Barbier7068f992017-10-26 15:23:08 +010079
Frank Leib9d38ee2017-12-05 10:43:33 +080080 // Configure kernel window
81 unsigned int num_elems_processed_per_iteration = 4;
82
83 if(input->info()->data_type() == DataType::F16)
84 {
85#define TRANSPOSE_8X8
86
87#if defined(TRANSPOSE_4X4)
88 build_opts.emplace(("#define TRANSPOSE_4X4"));
89 num_elems_processed_per_iteration = 4;
90#elif defined(TRANSPOSE_8X8) /* TRANSPOSE_4X4 */
steli017d473dd2017-12-06 18:53:32 +080091 if(w_out != h_out)
92 {
93 build_opts.emplace("#define TRANSPOSE_8X8");
94 num_elems_processed_per_iteration = 8;
95 }
96 else
97 {
98 build_opts.emplace("#define TRANSPOSE_8X8_SQUARE");
99 num_elems_processed_per_iteration = 8;
100 }
Frank Leib9d38ee2017-12-05 10:43:33 +0800101#endif /* TRANSPOSE_4X4 */
102 }
103
Anthony Barbier7068f992017-10-26 15:23:08 +0100104 // Create kernel
105 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel("transpose", build_opts));
106
steli01d0643892018-01-02 14:56:06 +0800107 const unsigned int width_aligned = num_elems_processed_per_iteration * static_cast<unsigned int>(_lws_hint[0]);
108 const unsigned int height_aligned = num_elems_processed_per_iteration * static_cast<unsigned int>(_lws_hint[1]);
Anthony Barbier7068f992017-10-26 15:23:08 +0100109
steli01d0643892018-01-02 14:56:06 +0800110 AccessWindowStatic input_access(input->info(), 0, 0,
111 ceil_to_multiple(input->info()->dimension(0), width_aligned),
112 ceil_to_multiple(input->info()->dimension(1), height_aligned));
113 AccessWindowStatic output_access(output->info(), 0, 0,
114 ceil_to_multiple(output->info()->dimension(0), height_aligned),
115 ceil_to_multiple(output->info()->dimension(1), width_aligned));
116
117 Window win = calculate_max_window(*input->info(), Steps(width_aligned, height_aligned));
118 win.set_dimension_step(Window::DimX, num_elems_processed_per_iteration);
119 win.set_dimension_step(Window::DimY, num_elems_processed_per_iteration);
Anthony Barbier7068f992017-10-26 15:23:08 +0100120 update_window_and_padding(win, input_access, output_access);
steli01d0643892018-01-02 14:56:06 +0800121 output_access.set_valid_region(win, output->info()->valid_region());
Anthony Barbier7068f992017-10-26 15:23:08 +0100122
Anthony Barbier7068f992017-10-26 15:23:08 +0100123 IGCKernel::configure(win);
124}
125
126void GCTransposeKernel::run(const Window &window)
127{
128 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
129 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IGCKernel::window(), window);
130
131 _kernel.use();
132
133 Window slice = window.first_slice_window_2D();
134
135 do
136 {
137 unsigned int idx = 0;
Anthony Barbier7068f992017-10-26 15:23:08 +0100138
Joel Liangabd03cf2018-01-08 15:20:48 +0800139 add_2D_tensor_argument(idx, _input, 1, slice);
140 add_2D_tensor_argument(idx, _output, 2, slice);
Anthony Barbier7068f992017-10-26 15:23:08 +0100141 _kernel.update_shader_params();
steli01d0643892018-01-02 14:56:06 +0800142 enqueue(*this, slice, _lws_hint);
Anthony Barbier7068f992017-10-26 15:23:08 +0100143 }
144 while(window.slide_window_slice_2D(slice));
145}