blob: d6ab941b80ce0cd8706c78be15f4949cd1ed8c4e [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Giorgio Arena4402cb92018-02-15 13:37:40 +00002 * Copyright (c) 2017-2018 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/runtime/CL/functions/CLSoftmaxLayer.h"
25
Chunosovd6afedc2017-11-06 22:09:45 +070026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/ICLKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/CL/kernels/CLSoftmaxLayerKernel.h"
29#include "arm_compute/core/Helpers.h"
Chunosovd6afedc2017-11-06 22:09:45 +070030#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Utils.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010032#include "arm_compute/runtime/CL/CLMemoryGroup.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/runtime/CL/CLScheduler.h"
34
35using namespace arm_compute;
36
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010037CLSoftmaxLayer::CLSoftmaxLayer(std::shared_ptr<IMemoryManager> memory_manager)
Giorgio Arena4402cb92018-02-15 13:37:40 +000038 : _memory_group(std::move(memory_manager)), _max_shift_exp_sum_kernel(), _norm_kernel(), _max(), _sum(), _tmp()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039{
40}
41
Pablo Palmier48a60f92017-10-18 11:03:08 +010042void CLSoftmaxLayer::configure(const ICLTensor *input, ICLTensor *output, float beta)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043{
Georgios Pinitasee8be2d2017-11-22 12:53:45 +000044 // Perform validation step
45 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
46 ARM_COMPUTE_ERROR_THROW_ON(CLSoftmaxLayer::validate(input->info(), output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047
48 // Create intermediate tensors shapes
Georgios Pinitasee8be2d2017-11-22 12:53:45 +000049 const TensorInfo input_info = input->info()->clone()->reset_padding().set_is_resizable(true);
50 DataType tmp_data_type = is_data_type_quantized_asymmetric(input->info()->data_type()) ? DataType::S32 : input->info()->data_type();
51 TensorInfo tensor_info_tmp(input_info.clone()->set_data_type(tmp_data_type));
Chunosovf450caa2017-11-08 16:09:35 +070052 _tmp.allocator()->init(tensor_info_tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053
Chunosovf450caa2017-11-08 16:09:35 +070054 TensorShape max_sum_shape = input->info()->tensor_shape();
55 max_sum_shape.set(0, 1);
Georgios Pinitasee8be2d2017-11-22 12:53:45 +000056 _max.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape));
57 _sum.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058
Chunosovd6afedc2017-11-06 22:09:45 +070059 // Set GPU target to kernels
60 _max_shift_exp_sum_kernel.set_target(CLScheduler::get().target());
61
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010062 // Manage intermediate buffers
63 _memory_group.manage(&_tmp);
64 _memory_group.manage(&_max);
65 _memory_group.manage(&_sum);
66
Chunosovd6afedc2017-11-06 22:09:45 +070067 // Configure kernels
Giorgio Arena4402cb92018-02-15 13:37:40 +000068 _max_shift_exp_sum_kernel.configure(input, &_max, &_tmp, &_sum, beta);
Chunosovf450caa2017-11-08 16:09:35 +070069 _norm_kernel.configure(&_tmp, &_sum, output, beta);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070
71 // Allocate intermediate buffers
72 _tmp.allocator()->allocate();
73 _max.allocator()->allocate();
74 _sum.allocator()->allocate();
75}
76
Georgios Pinitas631c41a2017-12-06 11:53:03 +000077Status CLSoftmaxLayer::validate(const ITensorInfo *input, const ITensorInfo *output)
Georgios Pinitas30902ed2017-11-14 15:32:57 +000078{
Georgios Pinitasee8be2d2017-11-22 12:53:45 +000079 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas30902ed2017-11-14 15:32:57 +000080
81 // Create intermediate tensor info
82 DataType tmp_data_type = is_data_type_quantized_asymmetric(input->data_type()) ? DataType::S32 : input->data_type();
Michele Di Giorgio5cb37732018-06-08 18:07:08 +010083 TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type).set_is_resizable(true));
Georgios Pinitas30902ed2017-11-14 15:32:57 +000084
85 TensorShape max_sum_shape = input->tensor_shape();
86 max_sum_shape.set(0, 1);
Michele Di Giorgio5cb37732018-06-08 18:07:08 +010087 TensorInfo tensor_info_max(input->clone()->set_tensor_shape(max_sum_shape).set_is_resizable(true));
88 TensorInfo tensor_info_sum(input->clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type).set_quantization_info(QuantizationInfo()).set_is_resizable(true));
Georgios Pinitas30902ed2017-11-14 15:32:57 +000089
Giorgio Arena4402cb92018-02-15 13:37:40 +000090 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DMaxShiftExpSumKernel::validate(input, &tensor_info_max, &tensor_info_tmp, &tensor_info_sum));
Georgios Pinitas30902ed2017-11-14 15:32:57 +000091 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DNormKernel::validate(&tensor_info_tmp, &tensor_info_sum, output));
92
Georgios Pinitas631c41a2017-12-06 11:53:03 +000093 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +000094}
95
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096void CLSoftmaxLayer::run()
97{
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010098 _memory_group.acquire();
99
Giorgio Arena4402cb92018-02-15 13:37:40 +0000100 CLScheduler::get().enqueue(_max_shift_exp_sum_kernel, false);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 CLScheduler::get().enqueue(_norm_kernel);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100102
103 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104}