blob: ad2f3a4892922a5a0a0e82e5e4ebf75f4cdddf32 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Alex Gilday27c08ab2018-02-22 11:36:16 +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/CLLocallyConnectedMatrixMultiplyKernel.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#include "arm_compute/core/Window.h"
37
38#include <set>
39#include <sstream>
40#include <string>
41
42using namespace arm_compute;
43
44CLLocallyConnectedMatrixMultiplyKernel::CLLocallyConnectedMatrixMultiplyKernel()
45 : _input0(nullptr), _input1(nullptr), _output(nullptr)
46{
47}
48
Alex Gilday27c08ab2018-02-22 11:36:16 +000049namespace
50{
51Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output)
52{
53 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010054 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
Alex Gilday27c08ab2018-02-22 11:36:16 +000055 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F16, DataType::F32);
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::F16, DataType::F32);
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::F16, DataType::F32);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1, output);
59 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
60
61 return Status{};
62}
63
64std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output)
65{
66 const unsigned int num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(input0->data_type());
67
68 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x));
69
70 AccessWindowHorizontal input0_access(input0, 0, num_elems_processed_per_iteration_x);
71 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration_x);
72 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration_x);
73
74 bool window_changed = update_window_and_padding(win, input0_access, input1_access, output_access);
75
76 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
77
78 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
79
80 return std::make_tuple(err, win);
81}
82} // namespace
83
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084void CLLocallyConnectedMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output)
85{
Alex Gilday27c08ab2018-02-22 11:36:16 +000086 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
87 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088
89 _input0 = input0;
90 _input1 = input1;
91 _output = output;
92
Anthony Barbierb6eb3532018-08-08 13:20:04 +010093 cl::NDRange lws_hint;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094 if(output->info()->dimension(1) == 196)
95 {
Anthony Barbierb6eb3532018-08-08 13:20:04 +010096 lws_hint = cl::NDRange(1, 7);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097 }
98 else
99 {
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100100 lws_hint = cl::NDRange(8, 8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 }
102
103 std::ostringstream mm_arguments;
104 std::set<std::string> build_opts;
105
106 mm_arguments << "-DWIDTH_VECTOR_A=" << input0->info()->dimension(0) << " ";
107 build_opts.emplace(mm_arguments.str());
108
109 // Create kernel
110 std::string data_type_name = lower_string(string_from_data_type(input0->info()->data_type()));
111 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(("gemm_lc_vm_" + data_type_name), build_opts));
112
Alex Gilday27c08ab2018-02-22 11:36:16 +0000113 // Configure kernel window
114 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115
Alex Gilday27c08ab2018-02-22 11:36:16 +0000116 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100118 ICLKernel::configure_internal(std::get<1>(win_config), lws_hint);
Alex Gilday27c08ab2018-02-22 11:36:16 +0000119}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100120
Alex Gilday27c08ab2018-02-22 11:36:16 +0000121Status CLLocallyConnectedMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output)
122{
123 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output));
124 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input0->clone().get(), input1->clone().get(), output->clone().get())));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125
Alex Gilday27c08ab2018-02-22 11:36:16 +0000126 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100127}
128
129void CLLocallyConnectedMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
130{
131 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
132 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
133
134 Window slice = window.first_slice_window_2D();
135
136 Window matrix_b_window;
SiCong Li86b53332017-08-23 11:02:43 +0100137 matrix_b_window.use_tensor_dimensions(_input1->info()->tensor_shape());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138 Window slice_matrix_b = matrix_b_window.first_slice_window_3D();
139
140 do
141 {
142 unsigned int idx = 0;
143 add_2D_tensor_argument(idx, _input0, slice);
144 add_3D_tensor_argument(idx, _input1, slice_matrix_b);
145 add_2D_tensor_argument(idx, _output, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100146 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 }
148 while(window.slide_window_slice_2D(slice));
149}