blob: 845bd3799db3bdd6fec68e1e0e196199f7b800bc [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/CL/kernels/CLWeightsReshapeKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Validate.h"
34
35using namespace arm_compute;
36
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010037CLWeightsReshapeKernel::CLWeightsReshapeKernel()
38 : _input(nullptr), _biases(nullptr), _output(nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039{
40}
41
42void CLWeightsReshapeKernel::configure(const ICLTensor *input, const ICLTensor *biases, ICLTensor *output)
43{
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010044 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::F16, DataType::F32);
45 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
46 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, biases);
47 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 4) && (biases->info()->num_dimensions() != 1));
48 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 5) && (biases->info()->num_dimensions() != 2));
49 ARM_COMPUTE_ERROR_ON((input->info()->num_dimensions() == 4) && (biases->info()->dimension(0) != input->info()->tensor_shape()[3]));
50 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]));
51 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
52 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != input->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010054 const DataType dt = input->info()->data_type();
55 const int fixed_point_position = input->info()->fixed_point_position();
56
57 TensorShape output_shape{ input->info()->tensor_shape() };
58 output_shape.collapse(3);
59 const size_t tmp_dim = output_shape[0];
60 output_shape.set(0, output_shape[1]);
61 output_shape.set(1, tmp_dim + (biases != nullptr ? 1 : 0));
62
63 // Output tensor auto inizialitation if not yet initialized
64 auto_init_if_empty(*output->info(), output_shape, 1, dt, fixed_point_position);
65
66 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
67 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
68 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069
70 _biases = biases;
71 _output = output;
72 _input = input;
73
74 // Create build options
75 std::set<std::string> build_opts;
76 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())));
77 build_opts.emplace(((biases != nullptr) ? "-DHAS_BIAS" : ""));
78
79 // Create kernel
80 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reshape_to_columns", build_opts));
81
82 // Set static arguments
83 unsigned int idx = num_arguments_per_3D_tensor() + num_arguments_per_2D_tensor();
84 idx += (biases != nullptr) ? num_arguments_per_1D_tensor() : 0;
85 _kernel.setArg<cl_uint>(idx++, _input->info()->dimension(0));
86 _kernel.setArg<cl_uint>(idx++, _input->info()->dimension(1));
87 _kernel.setArg<cl_uint>(idx++, _input->info()->dimension(2));
88 _kernel.setArg<cl_uint>(idx++, _input->info()->dimension(3));
89
90 // Configure window
91 Window win = calculate_max_window(*input->info(), Steps());
92 // The CLWeightsReshapeKernel doesn't need padding so update_window_and_padding() can be skipped
93 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
94 ICLKernel::configure(win);
95}
96
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010097void CLWeightsReshapeKernel::run(const Window &window, cl::CommandQueue &queue)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098{
99 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
100 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
101
102 Window out_window;
103 out_window.use_tensor_dimensions(_output->info());
104
105 Window in_slice = window.first_slice_window_3D();
106 Window out_slice = out_window.first_slice_window_2D();
107
108 Window biases_window;
109 Window biases_slice;
110
111 if(_biases != nullptr)
112 {
113 biases_window.use_tensor_dimensions(_biases->info());
114 biases_slice = biases_window.first_slice_window_1D();
115 }
116
117 do
118 {
119 // Set arguments
120 unsigned idx = 0;
121 add_3D_tensor_argument(idx, _input, in_slice);
122 add_2D_tensor_argument(idx, _output, out_slice);
123 if(_biases != nullptr)
124 {
125 add_1D_tensor_argument(idx, _biases, biases_slice);
126 biases_window.slide_window_slice_1D(biases_slice);
127 }
128
129 // Run kernel
130 enqueue(queue, *this, in_slice);
131 }
132 while(window.slide_window_slice_4D(in_slice) && out_window.slide_window_slice_2D(out_slice));
133}