blob: 3ef6a27675c5ca3199bcd41af52aed6c7addc5a3 [file] [log] [blame]
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +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 <complex>
25
26#include "arm_compute/runtime/CL/functions/CLStackLayer.h"
27
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Error.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/utils/misc/ShapeCalculator.h"
34#include "arm_compute/runtime/CL/CLScheduler.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010035#include "src/core/CL/kernels/CLStackLayerKernel.h"
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000036
Manuel Bottini8481d832019-12-10 15:28:40 +000037namespace arm_compute
38{
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000039CLStackLayer::CLStackLayer() // NOLINT
40 : _input(),
41 _stack_kernels(),
42 _num_inputs(0)
43{
44}
45
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010046CLStackLayer::~CLStackLayer() = default;
47
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000048void CLStackLayer::configure(const std::vector<ICLTensor *> &input, int axis, ICLTensor *output)
49{
Manuel Bottini2b84be52020-04-08 10:15:51 +010050 configure(CLKernelLibrary::get().get_compile_context(), input, axis, output);
51}
52
53void CLStackLayer::configure(const CLCompileContext &compile_context, const std::vector<ICLTensor *> &input, int axis, ICLTensor *output)
54{
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010055 _num_inputs = input.size();
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010056 _stack_kernels.reserve(_num_inputs);
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000057
58 // Wrap around negative values
59 const unsigned int axis_u = wrap_around(axis, static_cast<int>(input[0]->info()->num_dimensions() + 1));
60
61 for(unsigned int i = 0; i < _num_inputs; i++)
62 {
Georgios Pinitas40f51a62020-11-21 03:04:18 +000063 _stack_kernels.emplace_back(std::make_unique<CLStackLayerKernel>());
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010064 _stack_kernels.back()->configure(compile_context, input[i], axis_u, i, _num_inputs, output);
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000065 }
66}
67
68Status CLStackLayer::validate(const std::vector<ITensorInfo *> &input, int axis, const ITensorInfo *output)
69{
70 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000071 ARM_COMPUTE_RETURN_ERROR_ON(input.empty());
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000072
73 // Wrap around negative values
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000074 const size_t rank = input[0]->num_dimensions();
75 const unsigned int axis_u = wrap_around(axis, static_cast<int>(rank + 1));
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000076
77 const unsigned int num_inputs = input.size();
78
79 for(unsigned int i = 0; i < num_inputs; i++)
80 {
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000081 // All the tensors must have the same rank
82 ARM_COMPUTE_RETURN_ERROR_ON(input[i]->num_dimensions() != rank);
83 // Validate Kernel
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000084 ARM_COMPUTE_RETURN_ON_ERROR(CLStackLayerKernel::validate(input[i], axis_u, i, num_inputs, output));
85 }
86
87 return Status{};
88}
89
90void CLStackLayer::run()
91{
92 for(unsigned i = 0; i < _num_inputs; i++)
93 {
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010094 CLScheduler::get().enqueue(*_stack_kernels[i], false);
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +000095 }
96}
Matthew Bentham92046462020-03-07 22:15:55 +000097} // namespace arm_compute