blob: d601dfc20d38f4c302aa75a66c0e30cc8b3bae57 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +00002 * Copyright (c) 2016-2019 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/CLActivationLayerKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010028#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/IAccessWindow.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/Window.h"
35
Michel Iwaniec00633802017-10-12 14:14:15 +010036#include "arm_compute/core/CL/CLHelpers.h"
37#include "arm_compute/core/Types.h"
Georgios Pinitas00394ae2017-06-22 18:13:55 +010038#include "support/ToolchainSupport.h"
39
40#include <cmath>
41
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042using namespace arm_compute;
43
Giorgio Arena2995f5b2017-11-29 17:33:59 +000044namespace
45{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000046Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Giorgio Arena2995f5b2017-11-29 17:33:59 +000047{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010048 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010049 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::QASYMM8, DataType::F16, DataType::F32);
Michele Di Giorgioa1f7e332018-01-22 17:26:36 +000050 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input->data_type() == DataType::QASYMM8) && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU)
51 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::BOUNDED_RELU)
Michele Di Giorgiod304e802018-07-06 10:17:33 +010052 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::RELU)
53 && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LOGISTIC),
54 "For QASYMM8 only logistic, relu, lower bounded relu and lower-upper bounded relu are supported");
Giorgio Arena2995f5b2017-11-29 17:33:59 +000055
56 // Checks performed when output is configured
57 if((output != nullptr) && (output->total_size() != 0))
58 {
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
60 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Giorgio Arena2995f5b2017-11-29 17:33:59 +000061 }
62
Georgios Pinitas631c41a2017-12-06 11:53:03 +000063 return Status{};
Giorgio Arena2995f5b2017-11-29 17:33:59 +000064}
65
Georgios Pinitas631c41a2017-12-06 11:53:03 +000066std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Giorgio Arena2995f5b2017-11-29 17:33:59 +000067{
68 if(output != nullptr)
69 {
70 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
71 // Output auto inizialitation if not yet initialized
Pablo Palmiera2b89ca2017-10-05 15:01:34 +010072 auto_init_if_empty(*output, *input);
Giorgio Arena2995f5b2017-11-29 17:33:59 +000073 }
74
75 const unsigned int num_elems_processed_per_iteration = 16 / input->element_size();
76
77 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
78 bool window_changed = false;
79
80 if(output != nullptr)
81 {
82 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
83 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
84 window_changed = update_window_and_padding(win, input_access, output_access);
85 output_access.set_valid_region(win, input->valid_region());
86 }
87 else
88 {
89 window_changed = update_window_and_padding(win,
90 AccessWindowHorizontal(input, 0, num_elems_processed_per_iteration));
91 }
92
Georgios Pinitas631c41a2017-12-06 11:53:03 +000093 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena2995f5b2017-11-29 17:33:59 +000094 return std::make_pair(err, win);
95}
96} // namespace
97
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010098CLActivationLayerKernel::CLActivationLayerKernel()
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +000099 : _input(nullptr), _output(nullptr), _run_in_place(false)
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100100{
101}
102
103void CLActivationLayerKernel::configure(ICLTensor *input, ICLTensor *output, ActivationLayerInfo act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104{
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000105 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000107 _run_in_place = (output == nullptr) || (output == input);
108
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100109 if(output != nullptr)
110 {
111 // Output auto inizialitation if not yet initialized
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000112 auto_init_if_empty(*output->info(),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000113 *input->info()->clone());
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100114 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000116 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (output != nullptr) ? output->info() : nullptr, act_info));
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000117
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100118 const unsigned int num_elems_processed_per_iteration = 16 / input->info()->element_size();
Georgios Pinitas388d3ec2017-11-02 12:17:56 +0000119 const DataType dt = input->info()->data_type();
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100120 float a_const = act_info.a();
121 float b_const = act_info.b();
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000122 int a_const_int = 0;
123 int b_const_int = 0;
124
125 // Create quantized version of constants a, b if needed
126 if(is_data_type_quantized(dt))
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100127 {
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +0100128 a_const_int = input->info()->quantization_info().quantize(a_const, RoundingPolicy::TO_NEAREST_UP);
129 b_const_int = input->info()->quantization_info().quantize(b_const, RoundingPolicy::TO_NEAREST_UP);
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100130 }
131
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000132 const bool is_logistic_activation_quantized = is_data_type_quantized_asymmetric(dt) && act_info.activation() == ActivationLayerInfo::ActivationFunction::LOGISTIC;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133 // Set build options
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000134 CLBuildOptions build_opts;
135 build_opts.add_option_if(!is_logistic_activation_quantized, "-DACT=" + lower_string(string_from_activation_func(act_info.activation())));
136 build_opts.add_option(("-DDATA_TYPE=" + get_cl_type_from_data_type(dt)));
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000137 build_opts.add_option(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
Michel Iwaniec00633802017-10-12 14:14:15 +0100138
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000139 if(is_data_type_quantized(dt))
Michel Iwaniec00633802017-10-12 14:14:15 +0100140 {
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000141 build_opts.add_option(("-DA_VAL=" + support::cpp11::to_string(a_const_int)));
142 build_opts.add_option(("-DB_VAL=" + support::cpp11::to_string(b_const_int)));
Michel Iwaniec00633802017-10-12 14:14:15 +0100143
Michele Di Giorgiod304e802018-07-06 10:17:33 +0100144 const int o1 = input->info()->quantization_info().offset;
145 const float s1 = input->info()->quantization_info().scale;
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000146 // Quantized value of 0 corresponds to the offset o1
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000147 build_opts.add_option(("-DCONST_0=" + support::cpp11::to_string(o1)));
148 build_opts.add_option(("-DS1_VAL=" + float_to_string_with_full_precision(s1)));
149 build_opts.add_option(("-DO1_VAL=" + support::cpp11::to_string(o1)));
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000150
Giorgio Arenaa0d11832018-01-17 16:13:46 +0000151 // Set scale and offset of the input and output if they have different quantization info
152 if(is_data_type_quantized_asymmetric(dt) && output != nullptr)
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000153 {
Giorgio Arenaa0d11832018-01-17 16:13:46 +0000154 const float s2 = output->info()->quantization_info().scale;
Giorgio Arenaa0d11832018-01-17 16:13:46 +0000155 const int o2 = output->info()->quantization_info().offset;
156
157 if(o1 != o2 || s1 != s2)
158 {
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000159 build_opts.add_option(("-DS2_VAL=" + float_to_string_with_full_precision(s2)));
160 build_opts.add_option(("-DO2_VAL=" + support::cpp11::to_string(o2)));
Giorgio Arenaa0d11832018-01-17 16:13:46 +0000161 }
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000162 }
Michel Iwaniec00633802017-10-12 14:14:15 +0100163 }
164 else
165 {
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000166 build_opts.add_option(("-DA_VAL=" + float_to_string_with_full_precision(a_const)));
167 build_opts.add_option(("-DB_VAL=" + float_to_string_with_full_precision(b_const)));
Michel Iwaniec00633802017-10-12 14:14:15 +0100168 }
169
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000170 build_opts.add_option_if(_run_in_place, "-DIN_PLACE");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100171
172 // Create kernel
Michele Di Giorgioe5bf4c52019-02-14 17:47:33 +0000173 std::string kernel_name = std::string("activation_layer");
174 if(is_data_type_quantized_asymmetric(dt))
175 {
176 kernel_name += is_logistic_activation_quantized ? std::string("_logistic_qa8") : std::string("_qa8");
177 }
178 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100179
180 // Make sure _kernel is initialized before calling the parent's configure
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100181 _input = input;
182 _output = output;
183
184 // Configure kernel window
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000185 auto win_config = validate_and_configure_window(input->info(), (_run_in_place) ? nullptr : output->info());
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000186 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100187 ICLKernel::configure_internal(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000188
189 // Set config_id for enabling LWS tuning
190 _config_id = "activation_layer_";
191 _config_id += lower_string(string_from_data_type(dt));
192 _config_id += "_";
193 _config_id += support::cpp11::to_string(input->info()->dimension(0));
194 _config_id += "_";
195 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100196}
197
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000198Status CLActivationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000199{
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000200 const bool run_in_place = (output == nullptr) || (output == input);
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000201 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, act_info));
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000202 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), (run_in_place) ? nullptr : output->clone().get()).first);
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000203
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000204 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000205}
206
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100207void CLActivationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
208{
209 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
210 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
211
Anthony Barbierbe35b0e2017-07-11 18:13:08 +0100212 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
213 Window slice = collapsed.first_slice_window_3D();
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100214
215 do
216 {
217 unsigned int idx = 0;
218 add_3D_tensor_argument(idx, _input, slice);
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +0000219 if(!_run_in_place)
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100220 {
221 add_3D_tensor_argument(idx, _output, slice);
222 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100223 enqueue(queue, *this, slice, lws_hint());
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100224 }
Anthony Barbierbe35b0e2017-07-11 18:13:08 +0100225 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100226}