blob: 81e455fce865f942ba6cc172258717689d71a8b4 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyroua9676112018-02-22 18:07:43 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/CL/kernels/CLGEMMMatrixAccumulateBiasesKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010029#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Error.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
37using namespace arm_compute;
38
Georgios Pinitas358ca202017-12-07 16:47:52 +000039namespace
40{
41Status validate_arguments(const ITensorInfo *accum, const ITensorInfo *biases)
42{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010043 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(accum);
Georgios Pinitas358ca202017-12-07 16:47:52 +000044 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(accum, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
45 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(biases, accum);
46 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(biases, accum);
47 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() != 1);
48
49 return Status{};
50}
51
52std::pair<Status, Window> validate_and_configure_window(ITensorInfo *accum, ITensorInfo *biases, GPUTarget gpu_target,
53 unsigned int &num_elems_processed_per_iteration)
54{
55 // Select the vector size to use (8 for Bifrost; 16 for Midgard).
Sam Laynton56e8e862018-04-05 13:26:08 +010056 num_elems_processed_per_iteration = gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72, GPUTarget::G51, GPUTarget::G51BIG, GPUTarget::G51LIT, GPUTarget::TNOX) ? 8 : 16;
Georgios Pinitas358ca202017-12-07 16:47:52 +000057
58 // Configure kernel window
59 Window win = calculate_max_window(*accum, Steps(num_elems_processed_per_iteration));
60
61 AccessWindowStatic biases_access(biases, 0, 0, ceil_to_multiple(biases->dimension(0), num_elems_processed_per_iteration), biases->dimension(1));
62 AccessWindowHorizontal accum_access(accum, 0, num_elems_processed_per_iteration);
63
64 bool window_changed = update_window_and_padding(win, biases_access, accum_access);
65
66 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
67 return std::make_pair(err, win);
68}
69} // namespace
70
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071CLGEMMMatrixAccumulateBiasesKernel::CLGEMMMatrixAccumulateBiasesKernel()
72 : _accum(nullptr), _biases(nullptr)
73{
74}
75
76void CLGEMMMatrixAccumulateBiasesKernel::configure(ICLTensor *accum, const ICLTensor *biases)
77{
Georgios Pinitas358ca202017-12-07 16:47:52 +000078 // Perform validate step
79 ARM_COMPUTE_ERROR_ON_NULLPTR(accum, biases);
80 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(accum->info(), biases->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
82 _biases = biases;
83 _accum = accum;
84
Michalis Spyroua9676112018-02-22 18:07:43 +000085 // Get the target gpu
86 GPUTarget gpu_target = get_target();
Georgios Pinitas358ca202017-12-07 16:47:52 +000087 unsigned int vector_size = 0;
88
89 // Configure kernel window
Michalis Spyroua9676112018-02-22 18:07:43 +000090 auto win_config = validate_and_configure_window(accum->info(), biases->info(), gpu_target, vector_size);
Georgios Pinitas358ca202017-12-07 16:47:52 +000091 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
92 ICLKernel::configure(win_config.second);
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +000093
94 // Add build options
95 CLBuildOptions build_opts;
96 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(accum->info()->data_type()));
97 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(vector_size));
98 build_opts.add_option_if(is_data_type_fixed_point(accum->info()->data_type()),
99 "-DFIXED_POINT_POSITION=" + support::cpp11::to_string(accum->info()->fixed_point_position()));
Gian Marco Iodice578ab612017-06-23 09:34:33 +0100100
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 // Create kernel
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000102 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemm_accumulate_biases", build_opts.options()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000103}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
Georgios Pinitas358ca202017-12-07 16:47:52 +0000105Status CLGEMMMatrixAccumulateBiasesKernel::validate(const ITensorInfo *accum, const ITensorInfo *biases, GPUTarget gpu_target)
106{
107 unsigned int num_elems_processed_per_iteration = 0;
108 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(accum, biases));
109 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(accum->clone().get(), biases->clone().get(), gpu_target, num_elems_processed_per_iteration).first);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
Georgios Pinitas358ca202017-12-07 16:47:52 +0000111 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112}
113
114void CLGEMMMatrixAccumulateBiasesKernel::run(const Window &window, cl::CommandQueue &queue)
115{
116 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
117 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
118
119 Window accum_slice = window.first_slice_window_2D();
120
121 Window biases_slice(accum_slice);
122 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
123
124 // Run kernel
125 do
126 {
127 // Set arguments
128 unsigned int idx = 0;
129 add_2D_tensor_argument(idx, _accum, accum_slice);
130 add_1D_tensor_argument(idx, _biases, biases_slice);
131
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000132 enqueue(queue, *this, accum_slice, _lws_hint);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133 }
134 while(window.slide_window_slice_2D(accum_slice));
135}