blob: 93332de9d1f936f7241d6e0f96c0f9b8cf3b5bdb [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);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010044 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(accum, 1, DataType::F16, DataType::F32);
Georgios Pinitas358ca202017-12-07 16:47:52 +000045 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(biases, accum);
Georgios Pinitas358ca202017-12-07 16:47:52 +000046 ARM_COMPUTE_RETURN_ERROR_ON(biases->num_dimensions() != 1);
47
48 return Status{};
49}
50
51std::pair<Status, Window> validate_and_configure_window(ITensorInfo *accum, ITensorInfo *biases, GPUTarget gpu_target,
52 unsigned int &num_elems_processed_per_iteration)
53{
54 // Select the vector size to use (8 for Bifrost; 16 for Midgard).
Georgios Pinitasa34286e2018-09-04 12:18:50 +010055 bool is_gpu_bifrost = gpu_target_is_in(gpu_target,
56 GPUTarget::G71, GPUTarget::G72, GPUTarget::G76,
57 GPUTarget::G51, GPUTarget::G51BIG, GPUTarget::G51LIT,
58 GPUTarget::G52, GPUTarget::G52LIT);
59 num_elems_processed_per_iteration = is_gpu_bifrost ? 8 : 16;
Georgios Pinitas358ca202017-12-07 16:47:52 +000060
61 // Configure kernel window
62 Window win = calculate_max_window(*accum, Steps(num_elems_processed_per_iteration));
63
64 AccessWindowStatic biases_access(biases, 0, 0, ceil_to_multiple(biases->dimension(0), num_elems_processed_per_iteration), biases->dimension(1));
65 AccessWindowHorizontal accum_access(accum, 0, num_elems_processed_per_iteration);
66
67 bool window_changed = update_window_and_padding(win, biases_access, accum_access);
68
69 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
70 return std::make_pair(err, win);
71}
72} // namespace
73
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074CLGEMMMatrixAccumulateBiasesKernel::CLGEMMMatrixAccumulateBiasesKernel()
75 : _accum(nullptr), _biases(nullptr)
76{
77}
78
79void CLGEMMMatrixAccumulateBiasesKernel::configure(ICLTensor *accum, const ICLTensor *biases)
80{
Georgios Pinitas358ca202017-12-07 16:47:52 +000081 // Perform validate step
82 ARM_COMPUTE_ERROR_ON_NULLPTR(accum, biases);
83 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(accum->info(), biases->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084
85 _biases = biases;
86 _accum = accum;
87
Michalis Spyroua9676112018-02-22 18:07:43 +000088 // Get the target gpu
89 GPUTarget gpu_target = get_target();
Georgios Pinitas358ca202017-12-07 16:47:52 +000090 unsigned int vector_size = 0;
91
92 // Configure kernel window
Michalis Spyroua9676112018-02-22 18:07:43 +000093 auto win_config = validate_and_configure_window(accum->info(), biases->info(), gpu_target, vector_size);
Georgios Pinitas358ca202017-12-07 16:47:52 +000094 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +010095 ICLKernel::configure_internal(win_config.second);
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +000096
97 // Add build options
98 CLBuildOptions build_opts;
99 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(accum->info()->data_type()));
100 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(vector_size));
Gian Marco Iodice578ab612017-06-23 09:34:33 +0100101
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102 // Create kernel
Anton Lokhmotov3e80c7f2017-11-20 11:02:10 +0000103 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemm_accumulate_biases", build_opts.options()));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000104}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105
Georgios Pinitas358ca202017-12-07 16:47:52 +0000106Status CLGEMMMatrixAccumulateBiasesKernel::validate(const ITensorInfo *accum, const ITensorInfo *biases, GPUTarget gpu_target)
107{
108 unsigned int num_elems_processed_per_iteration = 0;
109 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(accum, biases));
110 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 +0100111
Georgios Pinitas358ca202017-12-07 16:47:52 +0000112 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113}
114
115void CLGEMMMatrixAccumulateBiasesKernel::run(const Window &window, cl::CommandQueue &queue)
116{
117 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
118 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
119
120 Window accum_slice = window.first_slice_window_2D();
121
122 Window biases_slice(accum_slice);
123 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
124
125 // Run kernel
126 do
127 {
128 // Set arguments
129 unsigned int idx = 0;
130 add_2D_tensor_argument(idx, _accum, accum_slice);
131 add_1D_tensor_argument(idx, _biases, biases_slice);
132
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100133 enqueue(queue, *this, accum_slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134 }
135 while(window.slide_window_slice_2D(accum_slice));
136}