blob: 7356c5a5cd260f97e2e0161dcb09db429821d477 [file] [log] [blame]
Michalis Spyroue9362622018-11-23 17:41:37 +00001/*
Michalis Spyrou58307942020-01-17 16:36:46 +00002 * 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"
27#include "arm_compute/core/CL/CLValidate.h"
28#include "arm_compute/core/CL/ICLTensor.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000029#include "support/StringSupport.h"
Michalis Spyroue9362622018-11-23 17:41:37 +000030
31using namespace arm_compute;
32
33namespace
34{
35Status validate_arguments(const ITensorInfo &input, const ITensorInfo &output)
36{
37 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&input);
38 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&input, 1, DataType::F16, DataType::F32);
39
40 // Validate in case of configured output
41 if(output.total_size() > 0)
42 {
43 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&output);
44 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&output, 1, DataType::F16, DataType::F32);
Michalis Spyrou80943252019-01-10 17:19:50 +000045 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&input, &output);
46 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&input, &output);
Michalis Spyroue9362622018-11-23 17:41:37 +000047 }
48
49 return Status{};
50}
51} // namespace
52
53void CLElementWiseUnaryLayerKernel::configure(const ICLTensor *input, ICLTensor *output, const ElementWiseUnary &op)
54{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010055 configure(CLKernelLibrary::get().get_compile_context(), input, output, op);
56}
57
58void CLElementWiseUnaryLayerKernel::configure(CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const ElementWiseUnary &op)
59{
Michalis Spyroue9362622018-11-23 17:41:37 +000060 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
61 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*input->info(), *output->info()));
62
63 // Configure kernel window
64 _input = input;
65 _output = output;
66
67 const std::string kernel_name = "elementwise_unary";
68 const int vec_size_x = 16 / output->info()->element_size();
69 const int output_width_x = output->info()->tensor_shape().x();
70 const bool multi_access_x = (output_width_x / vec_size_x > 0);
71
72 Window win = calculate_max_window(*output->info());
73 if(multi_access_x)
74 {
75 win.set(Window::DimX,
76 Window::Dimension(win.x().start(), ceil_to_multiple(win.x().end(), vec_size_x), vec_size_x));
77 }
78 ICLKernel::configure_internal(win);
79
80 // Set kernel build options
81 CLBuildOptions build_opts;
82 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
83 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
84 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)));
85 switch(op)
86 {
87 case ElementWiseUnary::RSQRT:
giuros01f24411f2019-05-16 11:47:13 +010088 build_opts.add_option("-DOPERATION=rsqrt_op");
Michalis Spyroue9362622018-11-23 17:41:37 +000089 break;
90 case ElementWiseUnary::EXP:
giuros01f24411f2019-05-16 11:47:13 +010091 build_opts.add_option("-DOPERATION=exp_op");
Michalis Spyroue9362622018-11-23 17:41:37 +000092 break;
Usama Arifeb312ef2019-05-13 17:45:54 +010093 case ElementWiseUnary::NEG:
giuros01f24411f2019-05-16 11:47:13 +010094 build_opts.add_option("-DOPERATION=neg_op");
Usama Arifeb312ef2019-05-13 17:45:54 +010095 break;
Michalis Spyrou0af44182019-05-17 14:04:47 +010096 case ElementWiseUnary::SIN:
giuros01f24411f2019-05-16 11:47:13 +010097 build_opts.add_option("-DOPERATION=sin_op");
98 break;
99 case ElementWiseUnary::ABS:
100 build_opts.add_option("-DOPERATION=fabs_op");
Michalis Spyrou0af44182019-05-17 14:04:47 +0100101 break;
Usama Arifac33d7e2019-05-20 14:21:40 +0100102 case ElementWiseUnary::LOG:
103 build_opts.add_option("-DOPERATION=natural_log_op");
104 break;
Usama Arif6a4d5422019-05-24 14:53:59 +0100105 case ElementWiseUnary::ROUND:
106 build_opts.add_option("-DOPERATION=round_op");
107 break;
Michalis Spyroue9362622018-11-23 17:41:37 +0000108 default:
109 ARM_COMPUTE_ERROR("Not implemented");
110 }
111
112 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100113 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michalis Spyroue9362622018-11-23 17:41:37 +0000114}
115
116Status CLElementWiseUnaryLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ElementWiseUnary &op)
117{
118 ARM_COMPUTE_UNUSED(op);
119 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
120 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*input, *output));
121
122 return Status{};
123}
124
125void CLElementWiseUnaryLayerKernel::run(const Window &window, cl::CommandQueue &queue)
126{
127 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
128 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
129
Michalis Spyrou58307942020-01-17 16:36:46 +0000130 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
131 Window slice = collapsed.first_slice_window_3D();
Michalis Spyroue9362622018-11-23 17:41:37 +0000132
133 do
134 {
135 unsigned int idx = 0;
Michalis Spyrou58307942020-01-17 16:36:46 +0000136 add_3D_tensor_argument(idx, _input, slice);
137 add_3D_tensor_argument(idx, _output, slice);
138 enqueue(queue, *this, slice, lws_hint());
Michalis Spyroue9362622018-11-23 17:41:37 +0000139 }
Michalis Spyrou58307942020-01-17 16:36:46 +0000140 while(collapsed.slide_window_slice_3D(slice));
Usama Arifeb312ef2019-05-13 17:45:54 +0100141}