blob: bff0db07a0356863cb5b25e02314e1a176729b12 [file] [log] [blame]
Michalis Spyroue9362622018-11-23 17:41:37 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 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 */
24#include "arm_compute/core/CL/kernels/CLElementWiseUnaryLayerKernel.h"
25
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{
Michalis Spyroue9362622018-11-23 17:41:37 +000035namespace
36{
37Status validate_arguments(const ITensorInfo &input, const ITensorInfo &output)
38{
39 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&input);
40 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&input, 1, DataType::F16, DataType::F32);
41
42 // Validate in case of configured output
43 if(output.total_size() > 0)
44 {
45 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&output);
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&output, 1, DataType::F16, DataType::F32);
Michalis Spyrou80943252019-01-10 17:19:50 +000047 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&input, &output);
48 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&input, &output);
Michalis Spyroue9362622018-11-23 17:41:37 +000049 }
50
51 return Status{};
52}
53} // namespace
54
Michalis Spyrouf738fe62020-07-15 18:10:17 +010055void CLElementWiseUnaryLayerKernel::configure(const ITensorInfo *input, ITensorInfo *output, const ElementWiseUnary &op)
Michalis Spyroue9362622018-11-23 17:41:37 +000056{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010057 configure(CLKernelLibrary::get().get_compile_context(), input, output, op);
58}
59
Michalis Spyrouf738fe62020-07-15 18:10:17 +010060void CLElementWiseUnaryLayerKernel::configure(const CLCompileContext &compile_context, const ITensorInfo *input, ITensorInfo *output, const ElementWiseUnary &op)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010061{
Michalis Spyroue9362622018-11-23 17:41:37 +000062 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhang11d73272020-10-28 14:01:55 +000063
64 auto padding_info = get_padding_info({ input, output });
65
Michalis Spyrouf738fe62020-07-15 18:10:17 +010066 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*input, *output));
Michalis Spyroue9362622018-11-23 17:41:37 +000067
68 const std::string kernel_name = "elementwise_unary";
Michalis Spyrouf738fe62020-07-15 18:10:17 +010069 const int vec_size_x = 16 / output->element_size();
70 const int output_width_x = output->tensor_shape().x();
Michalis Spyroue9362622018-11-23 17:41:37 +000071 const bool multi_access_x = (output_width_x / vec_size_x > 0);
72
Michalis Spyroue9362622018-11-23 17:41:37 +000073 // Set kernel build options
74 CLBuildOptions build_opts;
Michalis Spyrouf738fe62020-07-15 18:10:17 +010075 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->data_type()));
Michalis Spyroue9362622018-11-23 17:41:37 +000076 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
77 build_opts.add_option_if(multi_access_x, "-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(output_width_x - vec_size_x, 0)));
78 switch(op)
79 {
80 case ElementWiseUnary::RSQRT:
giuros01f24411f2019-05-16 11:47:13 +010081 build_opts.add_option("-DOPERATION=rsqrt_op");
Michalis Spyroue9362622018-11-23 17:41:37 +000082 break;
83 case ElementWiseUnary::EXP:
giuros01f24411f2019-05-16 11:47:13 +010084 build_opts.add_option("-DOPERATION=exp_op");
Michalis Spyroue9362622018-11-23 17:41:37 +000085 break;
Usama Arifeb312ef2019-05-13 17:45:54 +010086 case ElementWiseUnary::NEG:
giuros01f24411f2019-05-16 11:47:13 +010087 build_opts.add_option("-DOPERATION=neg_op");
Usama Arifeb312ef2019-05-13 17:45:54 +010088 break;
Michalis Spyrou0af44182019-05-17 14:04:47 +010089 case ElementWiseUnary::SIN:
giuros01f24411f2019-05-16 11:47:13 +010090 build_opts.add_option("-DOPERATION=sin_op");
91 break;
92 case ElementWiseUnary::ABS:
93 build_opts.add_option("-DOPERATION=fabs_op");
Michalis Spyrou0af44182019-05-17 14:04:47 +010094 break;
Usama Arifac33d7e2019-05-20 14:21:40 +010095 case ElementWiseUnary::LOG:
96 build_opts.add_option("-DOPERATION=natural_log_op");
97 break;
Usama Arif6a4d5422019-05-24 14:53:59 +010098 case ElementWiseUnary::ROUND:
99 build_opts.add_option("-DOPERATION=round_op");
100 break;
Michalis Spyroue9362622018-11-23 17:41:37 +0000101 default:
102 ARM_COMPUTE_ERROR("Not implemented");
103 }
104
105 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100106 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Sheri Zhang11d73272020-10-28 14:01:55 +0000107
108 // Configure kernel window
109 Window win = calculate_max_window(*output);
110 if(multi_access_x)
111 {
112 win.set(Window::DimX,
113 Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
114 }
115 ICLKernel::configure_internal(win);
116
117 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michalis Spyroue9362622018-11-23 17:41:37 +0000118}
119
120Status CLElementWiseUnaryLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ElementWiseUnary &op)
121{
122 ARM_COMPUTE_UNUSED(op);
123 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
124 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*input, *output));
125
126 return Status{};
127}
128
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100129void CLElementWiseUnaryLayerKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Michalis Spyroue9362622018-11-23 17:41:37 +0000130{
131 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
132 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
133
Michalis Spyrou58307942020-01-17 16:36:46 +0000134 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
135 Window slice = collapsed.first_slice_window_3D();
Michalis Spyroue9362622018-11-23 17:41:37 +0000136
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100137 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
138 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100139
Michalis Spyroue9362622018-11-23 17:41:37 +0000140 do
141 {
142 unsigned int idx = 0;
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100143 add_3D_tensor_argument(idx, src, slice);
144 add_3D_tensor_argument(idx, dst, slice);
Michalis Spyrou58307942020-01-17 16:36:46 +0000145 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue9362622018-11-23 17:41:37 +0000146 }
Michalis Spyrou58307942020-01-17 16:36:46 +0000147 while(collapsed.slide_window_slice_3D(slice));
Usama Arifeb312ef2019-05-13 17:45:54 +0100148}
Michalis Spyrouf738fe62020-07-15 18:10:17 +0100149} // namespace arm_compute