1 /*
2 * Copyright (c) 2017-2020 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 "src/core/CL/kernels/CLLocallyConnectedMatrixMultiplyKernel.h"
25
26 #include "arm_compute/core/CL/CLHelpers.h"
27 #include "arm_compute/core/CL/ICLTensor.h"
28 #include "arm_compute/core/Helpers.h"
29 #include "arm_compute/core/Utils.h"
30 #include "src/core/AccessWindowStatic.h"
31 #include "src/core/CL/CLValidate.h"
32 #include "src/core/helpers/WindowHelpers.h"
33
34 namespace arm_compute
35 {
CLLocallyConnectedMatrixMultiplyKernel()36 CLLocallyConnectedMatrixMultiplyKernel::CLLocallyConnectedMatrixMultiplyKernel()
37 : _input0(nullptr), _input1(nullptr), _output(nullptr)
38 {
39 }
40
41 namespace
42 {
validate_arguments(const ITensorInfo * input0,const ITensorInfo * input1,const ITensorInfo * output)43 Status validate_arguments(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output)
44 {
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input0, input1, output);
46 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input0);
47 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input0, 1, DataType::F32);
48 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input0, input1, output);
49 ARM_COMPUTE_RETURN_ERROR_ON(input0->dimension(0) != input1->dimension(1));
50
51 return Status{};
52 }
53
validate_and_configure_window(ITensorInfo * input0,ITensorInfo * input1,ITensorInfo * output)54 std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input0, ITensorInfo *input1, ITensorInfo *output)
55 {
56 const unsigned int num_elems_processed_per_iteration_x = max_cl_vector_width / data_size_from_type(input0->data_type());
57
58 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration_x));
59
60 AccessWindowHorizontal input0_access(input0, 0, num_elems_processed_per_iteration_x);
61 AccessWindowHorizontal input1_access(input1, 0, num_elems_processed_per_iteration_x);
62 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration_x);
63
64 bool window_changed = update_window_and_padding(win, input0_access, input1_access, output_access);
65
66 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
67
68 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
69
70 return std::make_tuple(err, win);
71 }
72 } // namespace
73
configure(const ICLTensor * input0,const ICLTensor * input1,ICLTensor * output)74 void CLLocallyConnectedMatrixMultiplyKernel::configure(const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output)
75 {
76 configure(CLKernelLibrary::get().get_compile_context(), input0, input1, output);
77 }
78
configure(const CLCompileContext & compile_context,const ICLTensor * input0,const ICLTensor * input1,ICLTensor * output)79 void CLLocallyConnectedMatrixMultiplyKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input0, const ICLTensor *input1, ICLTensor *output)
80 {
81 ARM_COMPUTE_ERROR_ON_NULLPTR(input0, input1, output);
82 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input0->info(), input1->info(), output->info()));
83
84 _input0 = input0;
85 _input1 = input1;
86 _output = output;
87
88 cl::NDRange lws_hint;
89 if(output->info()->dimension(1) == 196)
90 {
91 lws_hint = cl::NDRange(1, 7);
92 }
93 else
94 {
95 lws_hint = cl::NDRange(8, 8);
96 }
97
98 std::ostringstream mm_arguments;
99 std::set<std::string> build_opts;
100
101 mm_arguments << "-DWIDTH_VECTOR_A=" << input0->info()->dimension(0) << " ";
102 build_opts.emplace(mm_arguments.str());
103
104 // Create kernel
105 std::string data_type_name = lower_string(string_from_data_type(input0->info()->data_type()));
106 _kernel = create_kernel(compile_context, ("gemm_lc_vm_" + data_type_name), build_opts);
107
108 // Configure kernel window
109 auto win_config = validate_and_configure_window(input0->info(), input1->info(), output->info());
110
111 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
112
113 ICLKernel::configure_internal(std::get<1>(win_config), lws_hint);
114 }
115
validate(const ITensorInfo * input0,const ITensorInfo * input1,const ITensorInfo * output)116 Status CLLocallyConnectedMatrixMultiplyKernel::validate(const ITensorInfo *input0, const ITensorInfo *input1, const ITensorInfo *output)
117 {
118 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input0, input1, output));
119 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input0->clone().get(), input1->clone().get(), output->clone().get())));
120
121 return Status{};
122 }
123
run(const Window & window,cl::CommandQueue & queue)124 void CLLocallyConnectedMatrixMultiplyKernel::run(const Window &window, cl::CommandQueue &queue)
125 {
126 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
127 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
128
129 Window slice = window.first_slice_window_2D();
130
131 Window matrix_b_window;
132 matrix_b_window.use_tensor_dimensions(_input1->info()->tensor_shape());
133 Window slice_matrix_b = matrix_b_window.first_slice_window_3D();
134
135 do
136 {
137 unsigned int idx = 0;
138 add_2D_tensor_argument(idx, _input0, slice);
139 add_3D_tensor_argument(idx, _input1, slice_matrix_b);
140 add_2D_tensor_argument(idx, _output, slice);
141 enqueue(queue, *this, slice, lws_hint());
142 }
143 while(window.slide_window_slice_2D(slice));
144 }
145 } // namespace arm_compute
146