blob: 744a3a40c70c3f35ada7556aff2c265ff5d2a558 [file] [log] [blame]
Michalis Spyroue9362622018-11-23 17:41:37 +00001/*
Ramy Elgammal14d7b532023-01-30 04:56:47 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Michalis Spyroue9362622018-11-23 17:41:37 +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/ClElementwiseUnaryKernel.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000025
Matthew Bentham314d3e22023-06-23 10:53:52 +000026#include "arm_compute/core/Utils.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000027#include "arm_compute/core/CL/CLHelpers.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000028#include "arm_compute/core/CL/ICLTensor.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000029#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
30#include "arm_compute/core/utils/StringUtils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/WindowHelpers.h"
33#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000034#include "support/StringSupport.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000035
Michalis Spyrouf738fe62020-07-15 18:10:17 +010036namespace arm_compute
37{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000038namespace opencl
39{
40namespace kernels
41{
Michalis Spyroue9362622018-11-23 17:41:37 +000042namespace
43{
Ramy Elgammal14d7b532023-01-30 04:56:47 +000044constexpr unsigned int vector_size_byte_opencl = 16;
45
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000046Status validate_arguments(const ITensorInfo &src, const ITensorInfo &dst, const ElementWiseUnary op)
Michalis Spyroue9362622018-11-23 17:41:37 +000047{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000048 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&src);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000049 if(op == ElementWiseUnary::LOGICAL_NOT)
50 {
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000051 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::U8);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000052 }
Suhail Munshiee220302021-05-06 12:43:07 +010053 else if(op == ElementWiseUnary::NEG)
54 {
55 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::F16, DataType::F32, DataType::S32);
56 }
Ramy Elgammal14d7b532023-01-30 04:56:47 +000057 else if(op == ElementWiseUnary::RSQRT) // Allow quantized types for only RSQRT.
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::F16, DataType::F32, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
60 }
Sang-Hoon Park75eea332020-11-13 13:44:13 +000061 else
62 {
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000063 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::F16, DataType::F32);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000064 }
Michalis Spyroue9362622018-11-23 17:41:37 +000065
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000066 // Validate in case of configured dst
67 if(dst.total_size() > 0)
Michalis Spyroue9362622018-11-23 17:41:37 +000068 {
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000069 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&dst);
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &dst);
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&src, &dst);
Michalis Spyroue9362622018-11-23 17:41:37 +000072 }
73
74 return Status{};
75}
76} // namespace
77
Giorgio Arena4a95bba2021-06-28 11:00:27 +010078ClElementWiseUnaryKernel::ClElementWiseUnaryKernel()
79{
80 _type = CLKernelType::ELEMENTWISE;
81}
82
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000083void ClElementWiseUnaryKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst, const ElementWiseUnary &op)
Michalis Spyroue9362622018-11-23 17:41:37 +000084{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000085 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Manuel Bottini4c6bd512020-04-08 10:15:51 +010086
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000087 auto padding_info = get_padding_info({ src, dst });
Sheri Zhang11d73272020-10-28 14:01:55 +000088
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000089 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*src, *dst, op));
Ramy Elgammal14d7b532023-01-30 04:56:47 +000090 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(vector_size_byte_opencl / dst->element_size(), dst->dimension(0));
Michalis Spyroue9362622018-11-23 17:41:37 +000091
Ramy Elgammal14d7b532023-01-30 04:56:47 +000092 std::string kernel_name = "elementwise_unary";
93 const int vec_size_x = num_elems_processed_per_iteration;
94 const int dst_width_x = dst->dimension(0);
95 if(is_data_type_quantized(src->data_type()))
96 {
97 kernel_name += "_quantized";
98 }
Michalis Spyroue9362622018-11-23 17:41:37 +000099 // Set kernel build options
100 CLBuildOptions build_opts;
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000101 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Ramy Elgammal14d7b532023-01-30 04:56:47 +0000102 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
103 build_opts.add_option("-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(dst_width_x - vec_size_x, 0)));
104 if(is_data_type_quantized(src->data_type()))
105 {
106 const UniformQuantizationInfo iqinfo = src->quantization_info().uniform();
107 const UniformQuantizationInfo oqinfo = dst->quantization_info().uniform();
108 build_opts.add_option("-DOFFSET_IN=" + support::cpp11::to_string(iqinfo.offset));
109 build_opts.add_option("-DOFFSET_OUT=" + support::cpp11::to_string(oqinfo.offset));
110 build_opts.add_option("-DSCALE_IN=" + float_to_string_with_full_precision(iqinfo.scale));
111 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oqinfo.scale));
112 }
Michalis Spyroue9362622018-11-23 17:41:37 +0000113 switch(op)
114 {
115 case ElementWiseUnary::RSQRT:
giuros01f24411f2019-05-16 11:47:13 +0100116 build_opts.add_option("-DOPERATION=rsqrt_op");
Michalis Spyroue9362622018-11-23 17:41:37 +0000117 break;
118 case ElementWiseUnary::EXP:
giuros01f24411f2019-05-16 11:47:13 +0100119 build_opts.add_option("-DOPERATION=exp_op");
Michalis Spyroue9362622018-11-23 17:41:37 +0000120 break;
Usama Arifeb312ef2019-05-13 17:45:54 +0100121 case ElementWiseUnary::NEG:
giuros01f24411f2019-05-16 11:47:13 +0100122 build_opts.add_option("-DOPERATION=neg_op");
Usama Arifeb312ef2019-05-13 17:45:54 +0100123 break;
Michalis Spyrou0af44182019-05-17 14:04:47 +0100124 case ElementWiseUnary::SIN:
giuros01f24411f2019-05-16 11:47:13 +0100125 build_opts.add_option("-DOPERATION=sin_op");
126 break;
127 case ElementWiseUnary::ABS:
128 build_opts.add_option("-DOPERATION=fabs_op");
Michalis Spyrou0af44182019-05-17 14:04:47 +0100129 break;
Usama Arifac33d7e2019-05-20 14:21:40 +0100130 case ElementWiseUnary::LOG:
131 build_opts.add_option("-DOPERATION=natural_log_op");
132 break;
Usama Arif6a4d5422019-05-24 14:53:59 +0100133 case ElementWiseUnary::ROUND:
134 build_opts.add_option("-DOPERATION=round_op");
135 break;
Sang-Hoon Park75eea332020-11-13 13:44:13 +0000136 case ElementWiseUnary::LOGICAL_NOT:
137 build_opts.add_option("-DOPERATION=logical_not_op");
138 break;
Michalis Spyroue9362622018-11-23 17:41:37 +0000139 default:
140 ARM_COMPUTE_ERROR("Not implemented");
141 }
142
143 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100144 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Sheri Zhang11d73272020-10-28 14:01:55 +0000145
146 // Configure kernel window
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000147 Window win = calculate_max_window(*dst);
Ramy Elgammal14d7b532023-01-30 04:56:47 +0000148 win.set(Window::DimX, Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
149
Sheri Zhang11d73272020-10-28 14:01:55 +0000150 ICLKernel::configure_internal(win);
151
152 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michalis Spyroue9362622018-11-23 17:41:37 +0000153}
154
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000155Status ClElementWiseUnaryKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const ElementWiseUnary &op)
Michalis Spyroue9362622018-11-23 17:41:37 +0000156{
157 ARM_COMPUTE_UNUSED(op);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000158 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
159 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*src, *dst, op));
Michalis Spyroue9362622018-11-23 17:41:37 +0000160
161 return Status{};
162}
163
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000164void ClElementWiseUnaryKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Michalis Spyroue9362622018-11-23 17:41:37 +0000165{
166 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
167 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
168
Michalis Spyrou58307942020-01-17 16:36:46 +0000169 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
170 Window slice = collapsed.first_slice_window_3D();
Michalis Spyroue9362622018-11-23 17:41:37 +0000171
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100172 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
173 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100174
Michalis Spyroue9362622018-11-23 17:41:37 +0000175 do
176 {
177 unsigned int idx = 0;
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100178 add_3D_tensor_argument(idx, src, slice);
179 add_3D_tensor_argument(idx, dst, slice);
Michalis Spyrou58307942020-01-17 16:36:46 +0000180 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue9362622018-11-23 17:41:37 +0000181 }
Michalis Spyrou58307942020-01-17 16:36:46 +0000182 while(collapsed.slide_window_slice_3D(slice));
Usama Arifeb312ef2019-05-13 17:45:54 +0100183}
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000184} // namespace kernels
185} // namespace opencl
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100186} // namespace arm_compute