Jenkins | 514be65 | 2019-02-28 12:25:18 +0000 | [diff] [blame] | 1 | /* |
Jenkins | 36ccc90 | 2020-02-21 11:10:48 +0000 | [diff] [blame] | 2 | * Copyright (c) 2018-2020 ARM Limited. |
Jenkins | 514be65 | 2019-02-28 12:25:18 +0000 | [diff] [blame] | 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 <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" |
| 35 | |
Jenkins | 36ccc90 | 2020-02-21 11:10:48 +0000 | [diff] [blame] | 36 | namespace arm_compute |
| 37 | { |
Jenkins | 514be65 | 2019-02-28 12:25:18 +0000 | [diff] [blame] | 38 | CLStackLayer::CLStackLayer() // NOLINT |
| 39 | : _input(), |
| 40 | _stack_kernels(), |
| 41 | _num_inputs(0) |
| 42 | { |
| 43 | } |
| 44 | |
| 45 | void CLStackLayer::configure(const std::vector<ICLTensor *> &input, int axis, ICLTensor *output) |
| 46 | { |
Jenkins | 6a7771e | 2020-05-28 11:28:36 +0100 | [diff] [blame^] | 47 | configure(CLKernelLibrary::get().get_compile_context(), input, axis, output); |
| 48 | } |
| 49 | |
| 50 | void CLStackLayer::configure(const CLCompileContext &compile_context, const std::vector<ICLTensor *> &input, int axis, ICLTensor *output) |
| 51 | { |
Jenkins | 4ba87db | 2019-05-23 17:11:51 +0100 | [diff] [blame] | 52 | _num_inputs = input.size(); |
| 53 | _stack_kernels.resize(_num_inputs); |
Jenkins | 514be65 | 2019-02-28 12:25:18 +0000 | [diff] [blame] | 54 | |
| 55 | // Wrap around negative values |
| 56 | const unsigned int axis_u = wrap_around(axis, static_cast<int>(input[0]->info()->num_dimensions() + 1)); |
| 57 | |
| 58 | for(unsigned int i = 0; i < _num_inputs; i++) |
| 59 | { |
Jenkins | 6a7771e | 2020-05-28 11:28:36 +0100 | [diff] [blame^] | 60 | _stack_kernels[i].configure(compile_context, input[i], axis_u, i, _num_inputs, output); |
Jenkins | 514be65 | 2019-02-28 12:25:18 +0000 | [diff] [blame] | 61 | } |
| 62 | } |
| 63 | |
| 64 | Status CLStackLayer::validate(const std::vector<ITensorInfo *> &input, int axis, const ITensorInfo *output) |
| 65 | { |
| 66 | ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output); |
| 67 | ARM_COMPUTE_RETURN_ERROR_ON(input.empty()); |
| 68 | |
| 69 | // Wrap around negative values |
| 70 | const size_t rank = input[0]->num_dimensions(); |
| 71 | const unsigned int axis_u = wrap_around(axis, static_cast<int>(rank + 1)); |
| 72 | |
| 73 | const unsigned int num_inputs = input.size(); |
| 74 | |
| 75 | for(unsigned int i = 0; i < num_inputs; i++) |
| 76 | { |
| 77 | // All the tensors must have the same rank |
| 78 | ARM_COMPUTE_RETURN_ERROR_ON(input[i]->num_dimensions() != rank); |
| 79 | // Validate Kernel |
| 80 | ARM_COMPUTE_RETURN_ON_ERROR(CLStackLayerKernel::validate(input[i], axis_u, i, num_inputs, output)); |
| 81 | } |
| 82 | |
| 83 | return Status{}; |
| 84 | } |
| 85 | |
| 86 | void CLStackLayer::run() |
| 87 | { |
| 88 | for(unsigned i = 0; i < _num_inputs; i++) |
| 89 | { |
| 90 | CLScheduler::get().enqueue(_stack_kernels[i], false); |
| 91 | } |
| 92 | } |
Jenkins | 6a7771e | 2020-05-28 11:28:36 +0100 | [diff] [blame^] | 93 | } // namespace arm_compute |