blob: d49aed31712078c6f0c64ba71636ae49a77e3fb5 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
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/CLGEMMLowpOffsetContributionKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35#include "support/ToolchainSupport.h"
36
37#include <cstddef>
38#include <cstdint>
39
40using namespace arm_compute;
41
42namespace arm_compute
43{
44class Coordinates;
45} // namespace arm_compute
46
47CLGEMMLowpOffsetContributionKernel::CLGEMMLowpOffsetContributionKernel()
48 : _vector_sum_col(nullptr), _vector_sum_row(nullptr), _mm_result(nullptr)
49{
50}
51
52void CLGEMMLowpOffsetContributionKernel::configure(ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row, int32_t k, int32_t a_offset, int32_t b_offset)
53{
54 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
55
56 // Set the arguments to pass at compile time
57 CLBuildOptions build_opts;
58
59 // If a_offset == 0, vector_sum_col can be a nullptr
60 if(a_offset != 0)
61 {
62 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
63 ARM_COMPUTE_ERROR_ON(vector_sum_col->info()->dimension(0) != mm_result->info()->dimension(0));
64
Gian Marco05288a22017-11-21 10:57:50 +000065 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
66 }
67
68 // If b_offset == 0, vector_sum_row can be a nullptr
69 if(b_offset != 0)
70 {
71 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
72 ARM_COMPUTE_ERROR_ON(vector_sum_row->info()->dimension(0) != mm_result->info()->dimension(1));
73
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000074 // Validate batches
75 TensorShape output_shape = mm_result->info()->tensor_shape();
76 if(output_shape.num_dimensions() > 1)
Gian Marco05288a22017-11-21 10:57:50 +000077 {
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000078 TensorShape vector_sum_row_shape = vector_sum_row->info()->tensor_shape();
79 vector_sum_row_shape.collapse_from(1);
80 output_shape.collapse_from(2);
Gian Marco05288a22017-11-21 10:57:50 +000081
Georgios Pinitas45bcc3a2017-11-29 11:06:49 +000082 ARM_COMPUTE_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[2], "mm_result tensor must have the same number of batches of output tensor");
83
84 if(a_offset != 0)
85 {
86 TensorShape vector_sum_col_shape = vector_sum_col->info()->tensor_shape();
87 vector_sum_col_shape.collapse_from(1);
88
89 ARM_COMPUTE_ERROR_ON_MSG(vector_sum_col_shape[1] != 1
90 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
91 "vector_sum_col tensor must have the same number of batches of vector_sum_row_shape or the number of batches must be set to 1");
92 }
Gian Marco05288a22017-11-21 10:57:50 +000093 }
94
95 build_opts.add_option("-DB_OFFSET=" + support::cpp11::to_string(b_offset));
96 }
97
98 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
99
100 // Create kernel
101 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_offset_contribution", build_opts.options()));
102
103 _vector_sum_col = vector_sum_col;
104 _vector_sum_row = vector_sum_row;
105 _mm_result = mm_result;
106
107 constexpr unsigned int num_elems_processed_per_iteration = 16;
108
109 // Configure kernel window
110 Window win = calculate_max_window(*mm_result->info(), Steps(num_elems_processed_per_iteration));
111
112 AccessWindowHorizontal mm_result_access(mm_result->info(), 0, num_elems_processed_per_iteration);
113
114 update_window_and_padding(win, mm_result_access);
115
116 if(a_offset != 0)
117 {
118 AccessWindowHorizontal vector_sum_col_access(vector_sum_col->info(), 0, num_elems_processed_per_iteration);
119 update_window_and_padding(win, vector_sum_col_access);
120 }
121
122 if(b_offset != 0)
123 {
124 AccessWindowStatic vector_sum_row_access(vector_sum_row->info(), 0, 0, vector_sum_row->info()->dimension(0), 0);
125 update_window_and_padding(win, vector_sum_row_access);
126 }
127
128 ICLKernel::configure(win);
129}
130
131void CLGEMMLowpOffsetContributionKernel::run(const Window &window, cl::CommandQueue &queue)
132{
133 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
134 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
135
136 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
137 Window slice = collapsed.first_slice_window_3D();
138
139 // Set window for vector_sum_col
140 Window win_vector_sum_col = slice;
141 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
142
143 // Set window for vector_sum_row
144 Window win_vector_sum_row = slice;
145 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
146 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
147
148 do
149 {
150 unsigned int idx = 0;
151 add_3D_tensor_argument(idx, _mm_result, slice);
152 if(_vector_sum_col != nullptr)
153 {
154 add_2D_tensor_argument(idx, _vector_sum_col, win_vector_sum_col);
155 }
156 if(_vector_sum_row != nullptr)
157 {
158 add_2D_tensor_argument(idx, _vector_sum_row, win_vector_sum_row);
159 }
160 enqueue(queue, *this, slice);
161 }
162 while(collapsed.slide_window_slice_3D(slice));
163}