blob: ead50ce1f557c82b7f09a6bcba13895d4b2f7150 [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * 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
steli01d0643892018-01-02 14:56:06 +080026#include "arm_compute/core/AccessWindowStatic.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010027#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"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000034#include "support/StringSupport.h"
Anthony Barbier7068f992017-10-26 15:23:08 +010035
36#include <set>
37#include <string>
38
39using namespace arm_compute;
40
41void GCTransposeKernel::configure(const IGCTensor *input, IGCTensor *output)
42{
43 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
44 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
45
46 TensorShape output_shape{ input->info()->tensor_shape() };
47 const size_t w_out = input->info()->dimension(1);
48 const size_t h_out = input->info()->dimension(0);
49 output_shape.set(0, w_out);
50 output_shape.set(1, h_out);
51
52 // Output tensor auto inizialitation if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010053 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type());
Anthony Barbier7068f992017-10-26 15:23:08 +010054
55 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
56 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
57
58 _input = input;
59 _output = output;
60
steli01d0643892018-01-02 14:56:06 +080061 // for better performance
62 if(w_out < 512 && h_out < 512)
63 {
64 _lws_hint = gles::NDRange(8U, 1U, 1U);
65 }
66 else
67 {
68 _lws_hint = gles::NDRange(1U, 8U, 1U);
69 }
70
Anthony Barbier7068f992017-10-26 15:23:08 +010071 std::set<std::string> build_opts;
72 std::string dt_name = (input->info()->data_type() == DataType::F32) ? "DATA_TYPE_FP32" : "DATA_TYPE_FP16";
73 build_opts.emplace(("#define " + dt_name));
steli01d0643892018-01-02 14:56:06 +080074 build_opts.emplace("#define LOCAL_SIZE_X " + support::cpp11::to_string(_lws_hint[0]));
75 build_opts.emplace("#define LOCAL_SIZE_Y " + support::cpp11::to_string(_lws_hint[1]));
76 build_opts.emplace("#define LOCAL_SIZE_Z " + support::cpp11::to_string(_lws_hint[2]));
Anthony Barbier7068f992017-10-26 15:23:08 +010077
Frank Leib9d38ee2017-12-05 10:43:33 +080078 // Configure kernel window
79 unsigned int num_elems_processed_per_iteration = 4;
80
81 if(input->info()->data_type() == DataType::F16)
82 {
83#define TRANSPOSE_8X8
84
85#if defined(TRANSPOSE_4X4)
86 build_opts.emplace(("#define TRANSPOSE_4X4"));
87 num_elems_processed_per_iteration = 4;
88#elif defined(TRANSPOSE_8X8) /* TRANSPOSE_4X4 */
steli017d473dd2017-12-06 18:53:32 +080089 if(w_out != h_out)
90 {
91 build_opts.emplace("#define TRANSPOSE_8X8");
92 num_elems_processed_per_iteration = 8;
93 }
94 else
95 {
96 build_opts.emplace("#define TRANSPOSE_8X8_SQUARE");
97 num_elems_processed_per_iteration = 8;
98 }
Frank Leib9d38ee2017-12-05 10:43:33 +080099#endif /* TRANSPOSE_4X4 */
100 }
101
Anthony Barbier7068f992017-10-26 15:23:08 +0100102 // Create kernel
103 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel("transpose", build_opts));
104
steli01d0643892018-01-02 14:56:06 +0800105 const unsigned int width_aligned = num_elems_processed_per_iteration * static_cast<unsigned int>(_lws_hint[0]);
106 const unsigned int height_aligned = num_elems_processed_per_iteration * static_cast<unsigned int>(_lws_hint[1]);
Anthony Barbier7068f992017-10-26 15:23:08 +0100107
steli01d0643892018-01-02 14:56:06 +0800108 AccessWindowStatic input_access(input->info(), 0, 0,
109 ceil_to_multiple(input->info()->dimension(0), width_aligned),
110 ceil_to_multiple(input->info()->dimension(1), height_aligned));
111 AccessWindowStatic output_access(output->info(), 0, 0,
112 ceil_to_multiple(output->info()->dimension(0), height_aligned),
113 ceil_to_multiple(output->info()->dimension(1), width_aligned));
114
115 Window win = calculate_max_window(*input->info(), Steps(width_aligned, height_aligned));
116 win.set_dimension_step(Window::DimX, num_elems_processed_per_iteration);
117 win.set_dimension_step(Window::DimY, num_elems_processed_per_iteration);
Anthony Barbier7068f992017-10-26 15:23:08 +0100118 update_window_and_padding(win, input_access, output_access);
steli01d0643892018-01-02 14:56:06 +0800119 output_access.set_valid_region(win, output->info()->valid_region());
Anthony Barbier7068f992017-10-26 15:23:08 +0100120
Anthony Barbier7068f992017-10-26 15:23:08 +0100121 IGCKernel::configure(win);
122}
123
124void GCTransposeKernel::run(const Window &window)
125{
126 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
127 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IGCKernel::window(), window);
128
129 _kernel.use();
130
131 Window slice = window.first_slice_window_2D();
132
133 do
134 {
135 unsigned int idx = 0;
Anthony Barbier7068f992017-10-26 15:23:08 +0100136
Joel Liangabd03cf2018-01-08 15:20:48 +0800137 add_2D_tensor_argument(idx, _input, 1, slice);
138 add_2D_tensor_argument(idx, _output, 2, slice);
Anthony Barbier7068f992017-10-26 15:23:08 +0100139 _kernel.update_shader_params();
steli01d0643892018-01-02 14:56:06 +0800140 enqueue(*this, slice, _lws_hint);
Anthony Barbier7068f992017-10-26 15:23:08 +0100141 }
142 while(window.slide_window_slice_2D(slice));
143}