blob: d39335b6e564560cb5440c4aac6a0bd322c05937 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 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/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)
Chunosovd6afedc2017-11-06 22:09:45 +070038 : _memory_group(std::move(memory_manager)), _max_kernel(), _shift_exp_sum_kernel(), _max_shift_exp_sum_kernel(), _norm_kernel(), _max(), _sum(), _tmp(), _run_legacy_path(false)
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{
Chunosovf450caa2017-11-08 16:09:35 +070044 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QASYMM8, DataType::QS16, DataType::F16, DataType::F32);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
46 // Create intermediate tensors shapes
Chunosovf450caa2017-11-08 16:09:35 +070047 DataType tmp_data_type = is_data_type_quantized_asymmetric(input->info()->data_type()) ? DataType::S32 : input->info()->data_type();
Georgios Pinitas30902ed2017-11-14 15:32:57 +000048 TensorInfo tensor_info_tmp(input->info()->clone()->set_data_type(tmp_data_type).reset_padding());
Chunosovf450caa2017-11-08 16:09:35 +070049 _tmp.allocator()->init(tensor_info_tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050
Chunosovf450caa2017-11-08 16:09:35 +070051 TensorShape max_sum_shape = input->info()->tensor_shape();
52 max_sum_shape.set(0, 1);
Georgios Pinitas30902ed2017-11-14 15:32:57 +000053 _max.allocator()->init(input->info()->clone()->set_tensor_shape(max_sum_shape).reset_padding());
54 _sum.allocator()->init(input->info()->clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type).reset_padding());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055
Chunosovd6afedc2017-11-06 22:09:45 +070056 // Set GPU target to kernels
57 _max_shift_exp_sum_kernel.set_target(CLScheduler::get().target());
58
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010059 // Manage intermediate buffers
60 _memory_group.manage(&_tmp);
61 _memory_group.manage(&_max);
62 _memory_group.manage(&_sum);
63
Chunosovd6afedc2017-11-06 22:09:45 +070064 // Configure kernels
65 // TODO (COMPMID-661): Remove legacy path once the new one is properly validated
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +000066 _run_legacy_path = is_data_type_quantized_asymmetric(input->info()->data_type());
Chunosovd6afedc2017-11-06 22:09:45 +070067 if(_run_legacy_path)
68 {
69 _max_kernel.configure(input, &_max);
70 _shift_exp_sum_kernel.configure(input, &_max, &_tmp, &_sum, beta);
71 }
72 else
73 {
74 _max_shift_exp_sum_kernel.configure(input, &_max, &_tmp, &_sum, beta);
75 }
Chunosovf450caa2017-11-08 16:09:35 +070076 _norm_kernel.configure(&_tmp, &_sum, output, beta);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077
78 // Allocate intermediate buffers
79 _tmp.allocator()->allocate();
80 _max.allocator()->allocate();
81 _sum.allocator()->allocate();
82}
83
Georgios Pinitas30902ed2017-11-14 15:32:57 +000084Error CLSoftmaxLayer::validate(const ITensorInfo *input, const ITensorInfo *output)
85{
86 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
87
88 // Create intermediate tensor info
89 DataType tmp_data_type = is_data_type_quantized_asymmetric(input->data_type()) ? DataType::S32 : input->data_type();
90 TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type));
91
92 TensorShape max_sum_shape = input->tensor_shape();
93 max_sum_shape.set(0, 1);
94 TensorInfo tensor_info_max(input->clone()->set_tensor_shape(max_sum_shape));
95 TensorInfo tensor_info_sum(input->clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type).set_quantization_info(QuantizationInfo()));
96
97 bool run_legacy_path = is_data_type_quantized_asymmetric(input->data_type());
98 if(run_legacy_path)
99 {
100 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DMaxKernel::validate(input, &tensor_info_max));
101 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DShiftExpSumKernel::validate(input, &tensor_info_max, &tensor_info_tmp, &tensor_info_sum));
102 }
103 else
104 {
105 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DMaxShiftExpSumKernel::validate(input, &tensor_info_max, &tensor_info_tmp, &tensor_info_sum));
106 }
107 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DNormKernel::validate(&tensor_info_tmp, &tensor_info_sum, output));
108
109 return Error{};
110}
111
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112void CLSoftmaxLayer::run()
113{
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100114 _memory_group.acquire();
115
Chunosovd6afedc2017-11-06 22:09:45 +0700116 // Force to use the new fused kernel
117 if(_run_legacy_path)
118 {
119 CLScheduler::get().enqueue(_max_kernel, false);
120 CLScheduler::get().enqueue(_shift_exp_sum_kernel, false);
121 }
122 else
123 {
124 CLScheduler::get().enqueue(_max_shift_exp_sum_kernel, false);
125 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126 CLScheduler::get().enqueue(_norm_kernel);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100127
128 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129}