blob: ddd83e78243beee612283ef916f20064be05a5ee [file] [log] [blame]
Pablo Tello54303692018-11-22 16:14:36 +00001/*
ramelg016d891572021-09-29 10:05:09 +01002 * Copyright (c) 2018-2021 Arm Limited.
Pablo Tello54303692018-11-22 16:14:36 +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/CL/functions/CLUnstack.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/utils/misc/ShapeCalculator.h"
31
ramelg016d891572021-09-29 10:05:09 +010032#include "src/common/utils/Log.h"
33
Pablo Tello54303692018-11-22 16:14:36 +000034namespace arm_compute
35{
36namespace
37{
38inline unsigned int wrap_axis(int axis, const ITensorInfo *const tensor)
39{
40 return wrap_around(axis, static_cast<int>(tensor->num_dimensions()));
41}
42
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010043inline void setup_slice_coordinates_and_mask(Coordinates &slice_start,
44 int32_t &slice_end_mask,
45 const unsigned int input_num_dimensions)
Pablo Tello54303692018-11-22 16:14:36 +000046{
47 // Setups up coordinates to slice the input tensor: start coordinates to all 0s and the unstacking axis of both Start/End to slice just one 2d tensor at a time.
48 Coordinates slice_end;
49 slice_start.set_num_dimensions(input_num_dimensions);
50 slice_end.set_num_dimensions(input_num_dimensions);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010051 for (size_t k = 0; k < input_num_dimensions; ++k)
Pablo Tello54303692018-11-22 16:14:36 +000052 {
53 slice_start.set(k, 0);
54 slice_end.set(k, -1);
55 }
56 slice_end_mask = arm_compute::helpers::tensor_transform::construct_slice_end_mask(slice_end);
57}
Pablo Tello54303692018-11-22 16:14:36 +000058} // namespace
59
60CLUnstack::CLUnstack() // NOLINT
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 : _num_slices(0), _strided_slice_vector()
Pablo Tello54303692018-11-22 16:14:36 +000062{
63}
64
65void CLUnstack::configure(const ICLTensor *input, const std::vector<ICLTensor *> &output_vector, int axis)
66{
Manuel Bottini2b84be52020-04-08 10:15:51 +010067 configure(CLKernelLibrary::get().get_compile_context(), input, output_vector, axis);
68}
69
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010070void CLUnstack::configure(const CLCompileContext &compile_context,
71 const ICLTensor *input,
72 const std::vector<ICLTensor *> &output_vector,
73 int axis)
Manuel Bottini2b84be52020-04-08 10:15:51 +010074{
ramelg016d891572021-09-29 10:05:09 +010075 ARM_COMPUTE_LOG_PARAMS(input, output_vector, axis);
Georgios Pinitas985b5d52018-12-24 11:24:40 +000076 std::vector<ITensorInfo *> outputs_vector_info(output_vector.size());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010077 std::transform(output_vector.begin(), output_vector.end(), outputs_vector_info.begin(),
78 [](ICLTensor *t)
79 {
80 ARM_COMPUTE_ERROR_ON_NULLPTR(t);
81 return t->info();
82 });
Georgios Pinitas985b5d52018-12-24 11:24:40 +000083
Pablo Tello54303692018-11-22 16:14:36 +000084 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
Georgios Pinitas985b5d52018-12-24 11:24:40 +000085 ARM_COMPUTE_ERROR_THROW_ON(CLUnstack::validate(input->info(), outputs_vector_info, axis));
86
Pablo Tello54303692018-11-22 16:14:36 +000087 // Wrap around negative values
88 const unsigned int axis_u = wrap_axis(axis, input->info());
Georgios Pinitas985b5d52018-12-24 11:24:40 +000089 _num_slices = std::min(outputs_vector_info.size(), input->info()->dimension(axis_u));
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010090 _strided_slice_vector.resize(_num_slices);
Georgios Pinitas985b5d52018-12-24 11:24:40 +000091
Pablo Tello54303692018-11-22 16:14:36 +000092 Coordinates slice_start;
93 int32_t slice_end_mask;
94 setup_slice_coordinates_and_mask(slice_start, slice_end_mask, input->info()->tensor_shape().num_dimensions());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010095 for (unsigned int slice = 0; slice < _num_slices; ++slice)
Pablo Tello54303692018-11-22 16:14:36 +000096 {
97 // Adjusts start and end coordinates to take a 2D slice at a time
98 slice_start.set(axis_u, slice);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 _strided_slice_vector[slice].configure(compile_context, input, output_vector[slice], slice_start, Coordinates(),
100 BiStrides(), 0, slice_end_mask, (1 << axis_u));
Pablo Tello54303692018-11-22 16:14:36 +0000101 }
102}
103
104Status CLUnstack::validate(const ITensorInfo *input, const std::vector<ITensorInfo *> &output_vector, int axis)
105{
106 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input);
107 ARM_COMPUTE_RETURN_ERROR_ON(output_vector.empty());
108 ARM_COMPUTE_RETURN_ERROR_ON(axis < (-static_cast<int>(input->tensor_shape().num_dimensions())));
109 ARM_COMPUTE_RETURN_ERROR_ON(axis >= static_cast<int>(input->tensor_shape().num_dimensions()));
110 const unsigned int num_slices = std::min(output_vector.size(), input->dimension(wrap_axis(axis, input)));
111 ARM_COMPUTE_RETURN_ERROR_ON(num_slices > input->dimension(wrap_axis(axis, input)));
112 ARM_COMPUTE_RETURN_ERROR_ON(num_slices > output_vector.size());
113 Coordinates slice_start;
114 int32_t slice_end_mask;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115 for (size_t k = 0; k < num_slices; ++k)
Pablo Tello54303692018-11-22 16:14:36 +0000116 {
117 slice_start.set(wrap_axis(axis, input), k);
118 setup_slice_coordinates_and_mask(slice_start, slice_end_mask, input->tensor_shape().num_dimensions());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100119 ARM_COMPUTE_RETURN_ON_ERROR(CLStridedSlice::validate(input, output_vector[k], slice_start, Coordinates(),
120 BiStrides(), 0, slice_end_mask,
121 (1 << wrap_axis(axis, input))));
Pablo Tello54303692018-11-22 16:14:36 +0000122 }
123 return Status{};
124}
125
126void CLUnstack::run()
127{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100128 for (unsigned i = 0; i < _num_slices; ++i)
Pablo Tello54303692018-11-22 16:14:36 +0000129 {
130 _strided_slice_vector[i].run();
131 }
132}
133
134} // namespace arm_compute