blob: 5bd34c2c85e04adbc842ed9d3c2dd26ed97ec157 [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
67 // Create kernel
68 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel("transpose", build_opts));
69
Anthony Barbier7068f992017-10-26 15:23:08 +010070 // Configure kernel window
71 const unsigned int num_elems_processed_per_iteration = 4;
72
73 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration, num_elems_processed_per_iteration));
74
75 AccessWindowRectangle input_access(input->info(), 0, 0, num_elems_processed_per_iteration, num_elems_processed_per_iteration);
76 AccessWindowTranspose output_access(output->info(), 0, 0, num_elems_processed_per_iteration, num_elems_processed_per_iteration);
77 update_window_and_padding(win, input_access, output_access);
78
79 output_access.set_valid_region(win, input->info()->valid_region());
80
Anthony Barbier7068f992017-10-26 15:23:08 +010081 IGCKernel::configure(win);
82}
83
84void GCTransposeKernel::run(const Window &window)
85{
86 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
87 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IGCKernel::window(), window);
88
89 _kernel.use();
90
91 Window slice = window.first_slice_window_2D();
92
93 do
94 {
95 unsigned int idx = 0;
96 if(_input->info()->data_type() == DataType::F32)
97 {
98 add_2D_tensor_argument(idx, _input, 1, slice);
99 add_2D_tensor_argument(idx, _output, 2, slice);
100 }
101 else if(_input->info()->data_type() == DataType::F16)
102 {
103 add_2D_tensor_argument(idx, _input, BufferParam(1, 3), slice);
104 add_2D_tensor_argument(idx, _output, BufferParam(2, 3), slice);
105 }
106
107 _kernel.update_shader_params();
108 enqueue(*this, slice);
109 }
110 while(window.slide_window_slice_2D(slice));
111}