blob: 47194488194c38a092e8e8d4c1dfa821e0abb63d [file] [log] [blame]
Sheri Zhang7e20e292021-02-02 11:49:34 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Sheri Zhang7e20e292021-02-02 11:49:34 +00003 *
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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClCopyKernel.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000032#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Sheri Zhang7e20e292021-02-02 11:49:34 +000033#include "arm_compute/core/Validate.h"
34#include "src/core/CL/CLValidate.h"
35#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/WindowHelpers.h"
37#include "support/Cast.h"
38#include "support/StringSupport.h"
39
40namespace arm_compute
41{
42namespace opencl
43{
44namespace kernels
45{
46namespace
47{
48Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst, Window *dst_window = nullptr)
49{
50 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
51
52 // Validate dst if initialized
53 if(dst->total_size() != 0)
54 {
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(src, dst);
57 if(dst_window == nullptr)
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(src->tensor_shape(), dst->tensor_shape());
60 }
61 else
62 {
63 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(src->tensor_shape(), dst_window->shape());
64 }
65 }
66
67 return Status{};
68}
69
70} // namespace
71
Giorgio Arena4a95bba2021-06-28 11:00:27 +010072ClCopyKernel::ClCopyKernel()
73{
74 _type = CLKernelType::ELEMENTWISE;
75}
76
Sheri Zhang7e20e292021-02-02 11:49:34 +000077void ClCopyKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst, Window *dst_window)
78{
79 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
80 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst, dst_window));
81
82 auto padding_info = get_padding_info({ src, dst });
83
84 // Create kernel
85 CLBuildOptions build_opts;
86 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
87
88 // Output auto inizialitation if not yet initialized
89 auto_init_if_empty(*dst, *src);
90
91 // Configure window
92 const unsigned int vec_size_x = adjust_vec_size(16 / src->element_size(), src->dimension(0));
93
94 const Window win_config = calculate_max_window(*src, Steps(vec_size_x));
95
96 if(dst_window != nullptr)
97 {
98 _has_dst_window = true;
99 _dst_window = Window(*dst_window);
100 const int width_x = dst_window->num_iterations(0);
101 const int vec_size_x_leftover = width_x % vec_size_x;
102 const bool multi_access_x = width_x >= static_cast<int32_t>(vec_size_x);
103
104 if(multi_access_x)
105 {
106 _dst_window.set(Window::DimX, Window::Dimension(dst_window->x().start(), ceil_to_multiple(dst_window->x().end(), vec_size_x), vec_size_x));
107 }
108
109 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftover));
110 }
111 else
112 {
113 const int width_x = src->tensor_shape().x();
114 const int vec_size_x_leftover = width_x % vec_size_x;
115
116 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftover));
117 }
118
119 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
120
121 // Build kernel
122 _kernel = create_kernel(compile_context, "copy_tensor", build_opts.options());
123
124 // Validate and set the window
125 ICLKernel::configure_internal(win_config);
126
127 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
128}
129
130Status ClCopyKernel::validate(const arm_compute::ITensorInfo *src, const arm_compute::ITensorInfo *dst, Window *dst_window)
131{
132 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, dst_window));
133
134 return Status{};
135}
136
137void ClCopyKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
138{
139 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
140 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
141
142 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
143 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
144
145 Window slice;
146
147 if(_has_dst_window)
148 {
149 slice = window.first_slice_window_3D();
150 Window out_slice = _dst_window.first_slice_window_3D();
151 do
152 {
153 unsigned int idx = 0;
154 add_3D_tensor_argument(idx, src, slice);
155 add_3D_tensor_argument(idx, dst, out_slice);
156 enqueue(queue, *this, slice, lws_hint());
157 }
158 while(window.slide_window_slice_3D(slice) && _dst_window.slide_window_slice_3D(out_slice));
159 }
160 else
161 {
162 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
163 slice = collapsed.first_slice_window_3D();
164 do
165 {
166 unsigned int idx = 0;
167 add_3D_tensor_argument(idx, src, slice);
168 add_3D_tensor_argument(idx, dst, slice);
169 enqueue(queue, *this, slice, lws_hint());
170 }
171 while(collapsed.slide_window_slice_3D(slice));
172 }
173}
174} // namespace kernels
175} // namespace opencl
176} // namespace arm_compute