blob: 4c08873dcf85cb2fca4c35e147c085372c1667b9 [file] [log] [blame]
Stephen Lie855c232018-01-04 14:13:22 +08001/*
2 * Copyright (c) 2017-2018 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/GCWeightsReshapeKernel.h"
25
26#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"
33#include "arm_compute/core/Validate.h"
34
35#include "arm_compute/core/GLES_COMPUTE/GCHelpers.h"
36
37using namespace arm_compute;
38using namespace arm_compute::gles_compute;
39
40GCWeightsReshapeKernel::GCWeightsReshapeKernel()
41 : _input(nullptr), _biases(nullptr), _output(nullptr)
42{
43}
44
45void GCWeightsReshapeKernel::configure(const IGCTensor *input, const IGCTensor *biases, IGCTensor *output)
46{
47 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
48 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
49
50 // Calculate output shape
51 TensorShape output_shape{ input->info()->tensor_shape() };
52 output_shape.collapse(3);
53 const size_t tmp_dim = output_shape[0];
54 output_shape.set(0, output_shape[1]);
55 output_shape.set(1, tmp_dim + (biases != nullptr ? 1 : 0));
56
57 // Output tensor auto inizialitation if not yet initialized
58 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
59
60 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
61
62 if(biases != nullptr)
63 {
64 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
65 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 4) && (biases->info()->num_dimensions() != 1));
66 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 5) && (biases->info()->num_dimensions() != 2));
67 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 4) && (biases->info()->dimension(0) != input->info()->tensor_shape()[3]));
68 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 5) && (biases->info()->dimension(0) != input->info()->tensor_shape()[3] || biases->info()->dimension(1) != input->info()->tensor_shape()[4]));
69 }
70
71 _biases = biases;
72 _output = output;
73 _input = input;
74
75 // Create build options
76 std::set<std::string> build_opts;
77 std::string dt_name = (input->info()->data_type() == DataType::F32) ? "DATA_TYPE_FP32" : "DATA_TYPE_FP16";
78 build_opts.emplace("#define " + dt_name);
79 build_opts.emplace("#define LOCAL_SIZE_X " + support::cpp11::to_string(1));
80 build_opts.emplace("#define LOCAL_SIZE_Y " + support::cpp11::to_string(1));
81 build_opts.emplace("#define LOCAL_SIZE_Z " + support::cpp11::to_string(1));
82 build_opts.emplace("#define RESHAPE_TO_COLUMNS");
83 if(biases != nullptr)
84 {
85 build_opts.emplace("#define HAS_BIAS");
86 }
87
88 // Create kernel
89 _kernel = static_cast<GCKernel>(GCKernelLibrary::get().create_kernel("reshape_to_columns", build_opts));
90
91 // Set static arguments
92 unsigned int idx = num_arguments_per_3D_tensor() + num_arguments_per_2D_tensor();
93 idx += (biases != nullptr) ? num_arguments_per_1D_tensor() : 0;
94 _kernel.set_argument(idx++, _input->info()->dimension(0));
95 _kernel.set_argument(idx++, _input->info()->dimension(1));
96 _kernel.set_argument(idx++, _input->info()->dimension(2));
97 _kernel.set_argument(idx++, _input->info()->dimension(3));
98
99 // Configure window
100 Window win = calculate_max_window(*input->info(), Steps());
101
102 // The GCWeightsReshapeKernel doesn't need padding so update_window_and_padding() can be skipped
103 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
104 IGCKernel::configure(win);
105}
106
107void GCWeightsReshapeKernel::run(const Window &window)
108{
109 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
110 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(IGCKernel::window(), window);
111
112 Window out_window;
113 out_window.use_tensor_dimensions(_output->info()->tensor_shape());
114
115 Window in_slice = window.first_slice_window_3D();
116 Window out_slice = out_window.first_slice_window_2D();
117
118 Window biases_window;
119 Window biases_slice;
120
121 if(_biases != nullptr)
122 {
123 biases_window.use_tensor_dimensions(_biases->info()->tensor_shape());
124 biases_slice = biases_window.first_slice_window_1D();
125 }
126
127 _kernel.use();
128
129 do
130 {
131 // Set arguments
132 unsigned idx = 0;
133 add_3D_tensor_argument(idx, _input, 1, in_slice);
134 add_2D_tensor_argument(idx, _output, 2, out_slice);
135 if(_biases != nullptr)
136 {
137 add_1D_tensor_argument(idx, _biases, 3, biases_slice);
138 biases_window.slide_window_slice_1D(biases_slice);
139 }
140
141 _kernel.update_shader_params();
142 // Run kernel
143 enqueue(*this, in_slice);
144 }
145 while(window.slide_window_slice_4D(in_slice) && out_window.slide_window_slice_2D(out_slice));
146}