blob: 8e9698cd50729d6aba58bac1b830cd2878c1a40c [file] [log] [blame]
Michalis Spyroue9362622018-11-23 17:41:37 +00001/*
Michele Di Giorgioc9c89052021-01-26 10:20:17 +00002 * Copyright (c) 2018-2021 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 */
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000024#include "src/core/gpu/cl/kernels/ClElementwiseUnaryKernel.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000027#include "arm_compute/core/CL/ICLTensor.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010028#include "src/core/CL/CLValidate.h"
29#include "src/core/helpers/WindowHelpers.h"
30#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000031#include "support/StringSupport.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000032
Michalis Spyrouf738fe62020-07-15 18:10:17 +010033namespace arm_compute
34{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000035namespace opencl
36{
37namespace kernels
38{
Michalis Spyroue9362622018-11-23 17:41:37 +000039namespace
40{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000041Status validate_arguments(const ITensorInfo &src, const ITensorInfo &dst, const ElementWiseUnary op)
Michalis Spyroue9362622018-11-23 17:41:37 +000042{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000043 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&src);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000044 if(op == ElementWiseUnary::LOGICAL_NOT)
45 {
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000046 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::U8);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000047 }
48 else
49 {
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::F16, DataType::F32);
Sang-Hoon Park75eea332020-11-13 13:44:13 +000051 }
Michalis Spyroue9362622018-11-23 17:41:37 +000052
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000053 // Validate in case of configured dst
54 if(dst.total_size() > 0)
Michalis Spyroue9362622018-11-23 17:41:37 +000055 {
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000056 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&dst);
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &dst);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&src, &dst);
Michalis Spyroue9362622018-11-23 17:41:37 +000059 }
60
61 return Status{};
62}
63} // namespace
64
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000065void ClElementWiseUnaryKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst, const ElementWiseUnary &op)
Michalis Spyroue9362622018-11-23 17:41:37 +000066{
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000067 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Manuel Bottini4c6bd512020-04-08 10:15:51 +010068
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000069 auto padding_info = get_padding_info({ src, dst });
Sheri Zhang11d73272020-10-28 14:01:55 +000070
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000071 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*src, *dst, op));
Michalis Spyroue9362622018-11-23 17:41:37 +000072
73 const std::string kernel_name = "elementwise_unary";
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000074 const int vec_size_x = 16 / dst->element_size();
75 const int dst_width_x = dst->tensor_shape().x();
76 const bool multi_access_x = (dst_width_x / vec_size_x > 0);
Michalis Spyroue9362622018-11-23 17:41:37 +000077
Michalis Spyroue9362622018-11-23 17:41:37 +000078 // Set kernel build options
79 CLBuildOptions build_opts;
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000080 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Michalis Spyroue9362622018-11-23 17:41:37 +000081 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
Michele Di Giorgioc9c89052021-01-26 10:20:17 +000082 build_opts.add_option_if(multi_access_x, "-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(dst_width_x - vec_size_x, 0)));
Michalis Spyroue9362622018-11-23 17:41:37 +000083 switch(op)
84 {
85 case ElementWiseUnary::RSQRT:
giuros01f24411f2019-05-16 11:47:13 +010086 build_opts.add_option("-DOPERATION=rsqrt_op");
Michalis Spyroue9362622018-11-23 17:41:37 +000087 break;
88 case ElementWiseUnary::EXP:
giuros01f24411f2019-05-16 11:47:13 +010089 build_opts.add_option("-DOPERATION=exp_op");
Michalis Spyroue9362622018-11-23 17:41:37 +000090 break;
Usama Arifeb312ef2019-05-13 17:45:54 +010091 case ElementWiseUnary::NEG:
giuros01f24411f2019-05-16 11:47:13 +010092 build_opts.add_option("-DOPERATION=neg_op");
Usama Arifeb312ef2019-05-13 17:45:54 +010093 break;
Michalis Spyrou0af44182019-05-17 14:04:47 +010094 case ElementWiseUnary::SIN:
giuros01f24411f2019-05-16 11:47:13 +010095 build_opts.add_option("-DOPERATION=sin_op");
96 break;
97 case ElementWiseUnary::ABS:
98 build_opts.add_option("-DOPERATION=fabs_op");
Michalis Spyrou0af44182019-05-17 14:04:47 +010099 break;
Usama Arifac33d7e2019-05-20 14:21:40 +0100100 case ElementWiseUnary::LOG:
101 build_opts.add_option("-DOPERATION=natural_log_op");
102 break;
Usama Arif6a4d5422019-05-24 14:53:59 +0100103 case ElementWiseUnary::ROUND:
104 build_opts.add_option("-DOPERATION=round_op");
105 break;
Sang-Hoon Park75eea332020-11-13 13:44:13 +0000106 case ElementWiseUnary::LOGICAL_NOT:
107 build_opts.add_option("-DOPERATION=logical_not_op");
108 break;
Michalis Spyroue9362622018-11-23 17:41:37 +0000109 default:
110 ARM_COMPUTE_ERROR("Not implemented");
111 }
112
113 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100114 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Sheri Zhang11d73272020-10-28 14:01:55 +0000115
116 // Configure kernel window
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000117 Window win = calculate_max_window(*dst);
Sheri Zhang11d73272020-10-28 14:01:55 +0000118 if(multi_access_x)
119 {
120 win.set(Window::DimX,
121 Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
122 }
123 ICLKernel::configure_internal(win);
124
125 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michalis Spyroue9362622018-11-23 17:41:37 +0000126}
127
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000128Status ClElementWiseUnaryKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const ElementWiseUnary &op)
Michalis Spyroue9362622018-11-23 17:41:37 +0000129{
130 ARM_COMPUTE_UNUSED(op);
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000131 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
132 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*src, *dst, op));
Michalis Spyroue9362622018-11-23 17:41:37 +0000133
134 return Status{};
135}
136
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000137void ClElementWiseUnaryKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Michalis Spyroue9362622018-11-23 17:41:37 +0000138{
139 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
140 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
141
Michalis Spyrou58307942020-01-17 16:36:46 +0000142 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
143 Window slice = collapsed.first_slice_window_3D();
Michalis Spyroue9362622018-11-23 17:41:37 +0000144
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100145 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
146 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100147
Michalis Spyroue9362622018-11-23 17:41:37 +0000148 do
149 {
150 unsigned int idx = 0;
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100151 add_3D_tensor_argument(idx, src, slice);
152 add_3D_tensor_argument(idx, dst, slice);
Michalis Spyrou58307942020-01-17 16:36:46 +0000153 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue9362622018-11-23 17:41:37 +0000154 }
Michalis Spyrou58307942020-01-17 16:36:46 +0000155 while(collapsed.slide_window_slice_3D(slice));
Usama Arifeb312ef2019-05-13 17:45:54 +0100156}
Michele Di Giorgioc9c89052021-01-26 10:20:17 +0000157} // namespace kernels
158} // namespace opencl
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100159} // namespace arm_compute