blob: eecc94f23c235510724d84239230893f4fb8a0dd [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 ARM Limited.
3 *
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"
28#include "arm_compute/core/CL/ICLTensor.h"
Georgios Pinitas00394ae2017-06-22 18:13:55 +010029#include "arm_compute/core/FixedPoint.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#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"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36
Michel Iwaniec00633802017-10-12 14:14:15 +010037#include "arm_compute/core/CL/CLHelpers.h"
38#include "arm_compute/core/Types.h"
Georgios Pinitas00394ae2017-06-22 18:13:55 +010039#include "support/ToolchainSupport.h"
40
41#include <cmath>
42
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043using namespace arm_compute;
44
Giorgio Arena2995f5b2017-11-29 17:33:59 +000045namespace
46{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000047Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Giorgio Arena2995f5b2017-11-29 17:33:59 +000048{
49 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::QASYMM8, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
50 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input->data_type() == DataType::QASYMM8) && (act_info.activation() != ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU),
51 "For QASYMM8 only lower/upper bounded relu is supported");
52
53 // Checks performed when output is configured
54 if((output != nullptr) && (output->total_size() != 0))
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
59 }
60
Georgios Pinitas631c41a2017-12-06 11:53:03 +000061 return Status{};
Giorgio Arena2995f5b2017-11-29 17:33:59 +000062}
63
Georgios Pinitas631c41a2017-12-06 11:53:03 +000064std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Giorgio Arena2995f5b2017-11-29 17:33:59 +000065{
66 if(output != nullptr)
67 {
68 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
69 // Output auto inizialitation if not yet initialized
Pablo Palmiera2b89ca2017-10-05 15:01:34 +010070 auto_init_if_empty(*output, *input);
Giorgio Arena2995f5b2017-11-29 17:33:59 +000071 }
72
73 const unsigned int num_elems_processed_per_iteration = 16 / input->element_size();
74
75 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
76 bool window_changed = false;
77
78 if(output != nullptr)
79 {
80 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
81 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
82 window_changed = update_window_and_padding(win, input_access, output_access);
83 output_access.set_valid_region(win, input->valid_region());
84 }
85 else
86 {
87 window_changed = update_window_and_padding(win,
88 AccessWindowHorizontal(input, 0, num_elems_processed_per_iteration));
89 }
90
Georgios Pinitas631c41a2017-12-06 11:53:03 +000091 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Giorgio Arena2995f5b2017-11-29 17:33:59 +000092 return std::make_pair(err, win);
93}
94} // namespace
95
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +010096CLActivationLayerKernel::CLActivationLayerKernel()
97 : _input(nullptr), _output(nullptr)
98{
99}
100
101void CLActivationLayerKernel::configure(ICLTensor *input, ICLTensor *output, ActivationLayerInfo act_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102{
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000103 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100105 if(output != nullptr)
106 {
107 // Output auto inizialitation if not yet initialized
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000108 auto_init_if_empty(*output->info(),
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000109 *input->info()->clone());
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100110 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111
Giorgio Arenaf6a43c52017-12-01 12:16:25 +0000112 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), (output != nullptr) ? output->info() : nullptr, act_info));
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000113
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100114 const unsigned int num_elems_processed_per_iteration = 16 / input->info()->element_size();
Georgios Pinitas388d3ec2017-11-02 12:17:56 +0000115 const DataType dt = input->info()->data_type();
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100116 const int fixed_point_position = input->info()->fixed_point_position();
117 float a_const = act_info.a();
118 float b_const = act_info.b();
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000119 int a_const_int = 0;
120 int b_const_int = 0;
121
122 // Create quantized version of constants a, b if needed
123 if(is_data_type_quantized(dt))
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100124 {
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000125 if(is_data_type_fixed_point(dt))
126 {
127 a_const_int = static_cast<int>(lround(a_const * (1 << fixed_point_position)));
128 b_const_int = static_cast<int>(lround(b_const * (1 << fixed_point_position)));
129 }
130 else
131 {
Jaroslaw Rzepecki0a878ae2017-11-22 17:16:39 +0000132 a_const_int = input->info()->quantization_info().quantize(a_const, RoundingPolicy::TO_NEAREST_UP);
133 b_const_int = input->info()->quantization_info().quantize(b_const, RoundingPolicy::TO_NEAREST_UP);
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000134 }
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100135 }
136
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137 // Set build options
138 std::set<std::string> build_opts;
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100139 build_opts.emplace(("-DACT=" + lower_string(string_from_activation_func(act_info.activation()))));
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000140 build_opts.emplace(("-DDATA_TYPE=" + get_cl_type_from_data_type(dt)));
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100141 build_opts.emplace(("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration)));
Michel Iwaniec00633802017-10-12 14:14:15 +0100142
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000143 if(is_data_type_quantized(dt))
Michel Iwaniec00633802017-10-12 14:14:15 +0100144 {
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000145 build_opts.emplace(("-DA_VAL=" + support::cpp11::to_string(a_const_int)));
146 build_opts.emplace(("-DB_VAL=" + support::cpp11::to_string(b_const_int)));
Michel Iwaniec00633802017-10-12 14:14:15 +0100147
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000148 // Set scale and offset of the input and output
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000149 if(is_data_type_quantized_asymmetric(dt))
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000150 {
151 float s1 = input->info()->quantization_info().scale;
152 int o1 = input->info()->quantization_info().offset;
153 // If output is nullptr, assume same quantization scale/offset as input
154 float s2 = output != nullptr ? output->info()->quantization_info().scale : s1;
155 int o2 = output != nullptr ? output->info()->quantization_info().offset : o1;
156 build_opts.emplace(("-DS1_VAL=" + float_to_string_with_full_precision(s1)));
157 build_opts.emplace(("-DS2_VAL=" + float_to_string_with_full_precision(s2)));
158 build_opts.emplace(("-DO1_VAL=" + support::cpp11::to_string(o1)));
159 build_opts.emplace(("-DO2_VAL=" + support::cpp11::to_string(o2)));
160 }
Michel Iwaniec00633802017-10-12 14:14:15 +0100161 }
162 else
163 {
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000164 build_opts.emplace(("-DA_VAL=" + float_to_string_with_full_precision(a_const)));
165 build_opts.emplace(("-DB_VAL=" + float_to_string_with_full_precision(b_const)));
Michel Iwaniec00633802017-10-12 14:14:15 +0100166 }
167
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100168 build_opts.emplace(output == nullptr ? "-DIN_PLACE" : "");
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000169 if(is_data_type_fixed_point(dt))
Georgios Pinitas00394ae2017-06-22 18:13:55 +0100170 {
171 build_opts.emplace(("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(fixed_point_position)));
172 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100173
174 // Create kernel
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000175 std::string kernel_name = is_data_type_quantized_asymmetric(dt) ? std::string("activation_layer_qa8") : std::string("activation_layer");
Georgios Pinitas05078ec2017-11-02 13:06:59 +0000176 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100177
178 // Make sure _kernel is initialized before calling the parent's configure
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100179 _input = input;
180 _output = output;
181
182 // Configure kernel window
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000183 auto win_config = validate_and_configure_window(input->info(), (output == nullptr) ? nullptr : output->info());
184 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
185 ICLKernel::configure(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000186
187 // Set config_id for enabling LWS tuning
188 _config_id = "activation_layer_";
189 _config_id += lower_string(string_from_data_type(dt));
190 _config_id += "_";
191 _config_id += support::cpp11::to_string(input->info()->dimension(0));
192 _config_id += "_";
193 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100194}
195
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000196Status CLActivationLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ActivationLayerInfo &act_info)
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000197{
Giorgio Arena2995f5b2017-11-29 17:33:59 +0000198 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, act_info));
199 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), (output == nullptr) ? nullptr : output->clone().get()).first);
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000200
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000201 return Status{};
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000202}
203
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100204void CLActivationLayerKernel::run(const Window &window, cl::CommandQueue &queue)
205{
206 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
207 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
208
Anthony Barbierbe35b0e2017-07-11 18:13:08 +0100209 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
210 Window slice = collapsed.first_slice_window_3D();
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100211
212 do
213 {
214 unsigned int idx = 0;
215 add_3D_tensor_argument(idx, _input, slice);
216 if(_output != nullptr)
217 {
218 add_3D_tensor_argument(idx, _output, slice);
219 }
Gian Marcod7779da2017-11-22 14:46:28 +0000220 enqueue(queue, *this, slice, _lws_hint);
Gian Marco Iodiceb30dcc52017-06-20 09:07:21 +0100221 }
Anthony Barbierbe35b0e2017-07-11 18:13:08 +0100222 while(collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223}