blob: 2f88ffca2ad4a3ab3acfdba4ff67318023ca4d7a [file] [log] [blame]
Isabella Gottardiee7c15d2018-12-17 16:15:34 +00001/*
Gunes Bayir0b72aa42023-10-07 23:52:48 +01002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Isabella Gottardiee7c15d2018-12-17 16:15:34 +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 "arm_compute/runtime/NEON/functions/NEStackLayer.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/utils/misc/ShapeCalculator.h"
32#include "arm_compute/runtime/NEON/NEScheduler.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
ramelg01cbbb0382021-09-17 17:36:57 +010034#include "src/common/utils/Log.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010035#include "src/core/NEON/kernels/NEStackLayerKernel.h"
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000036
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000037namespace arm_compute
38{
Michalis Spyrouebcebf12020-10-21 00:04:14 +010039NEStackLayer::~NEStackLayer() = default;
40
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000041NEStackLayer::NEStackLayer() // NOLINT
Gunes Bayir0b72aa42023-10-07 23:52:48 +010042 : _stack_kernel(std::make_unique<NEStackLayerKernel>()), _is_prepared(false)
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000043{
44}
45
46void NEStackLayer::configure(const std::vector<ITensor *> &input, int axis, ITensor *output)
47{
ramelg01cbbb0382021-09-17 17:36:57 +010048 ARM_COMPUTE_LOG_PARAMS(input, axis, output);
49
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000050 // Wrap around negative values
51 const unsigned int axis_u = wrap_around(axis, static_cast<int>(input[0]->info()->num_dimensions() + 1));
52
Gunes Bayir0b72aa42023-10-07 23:52:48 +010053 _stack_kernel->configure(input, axis_u, output);
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000054}
55
56Status NEStackLayer::validate(const std::vector<ITensorInfo *> &input, int axis, const ITensorInfo *output)
57{
58 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
59 ARM_COMPUTE_RETURN_ERROR_ON(input.empty());
60
61 // Wrap around negative values
62 const size_t rank = input[0]->num_dimensions();
63 const unsigned int axis_u = wrap_around(axis, static_cast<int>(rank + 1));
64
Gunes Bayir0b72aa42023-10-07 23:52:48 +010065 // Validate Kernel
66 ARM_COMPUTE_RETURN_ON_ERROR(NEStackLayerKernel::validate(input, axis_u, output));
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000067
68 return Status{};
69}
70
71void NEStackLayer::run()
72{
Gunes Bayir0b72aa42023-10-07 23:52:48 +010073 if (!_is_prepared)
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000074 {
Gunes Bayir0b72aa42023-10-07 23:52:48 +010075 _stack_kernel->prepare();
76 _is_prepared = true;
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000077 }
Gunes Bayir0b72aa42023-10-07 23:52:48 +010078
79 NEScheduler::get().schedule(_stack_kernel.get(), _stack_kernel->get_split_dimension());
Isabella Gottardiee7c15d2018-12-17 16:15:34 +000080}
Matthew Bentham92046462020-03-07 22:15:55 +000081} // namespace arm_compute