blob: b30d73902537ced5df25b64844e0face7a5207e9 [file] [log] [blame]
Michalis Spyrou7930db42018-11-22 17:36:28 +00001/*
Pablo Marquez Tello9b392d72023-06-27 15:49:50 +01002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Michalis Spyrou7930db42018-11-22 17:36:28 +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
25#include "arm_compute/runtime/CL/functions/CLArgMinMaxLayer.h"
26
Michalis Spyrou7930db42018-11-22 17:36:28 +000027#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/Validate.h"
Manuel Bottini7b9998d2019-10-21 17:59:07 +010031#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/CL/CLValidate.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010033#include "src/core/CL/kernels/CLArgMinMaxLayerKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/helpers/AutoConfiguration.h"
35#include "src/runtime/Utils.h"
Michalis Spyrou7930db42018-11-22 17:36:28 +000036
ramelg016d891572021-09-29 10:05:09 +010037#include "src/common/utils/Log.h"
38
Michalis Spyrou7930db42018-11-22 17:36:28 +000039namespace arm_compute
40{
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010041CLArgMinMaxLayer::CLArgMinMaxLayer(std::shared_ptr<IMemoryManager> memory_manager)
Pablo Marquez Tello9b392d72023-06-27 15:49:50 +010042 : _memory_group(std::move(memory_manager)), _not_reshaped_output(), _arg_min_max_kernel(), _reshape(), _reduction_axis()
Michalis Spyrou7930db42018-11-22 17:36:28 +000043{
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010044}
45
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010046CLArgMinMaxLayer::~CLArgMinMaxLayer() = default;
47
Michalis Spyrou7930db42018-11-22 17:36:28 +000048Status CLArgMinMaxLayer::validate(const ITensorInfo *input, int axis, const ITensorInfo *output, const ReductionOperation &op)
49{
Manuel Bottini7b9998d2019-10-21 17:59:07 +010050 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sheri Zhangc5b6d882020-06-26 14:46:59 +010051 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
52 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::S32, DataType::F16, DataType::F32);
Manuel Bottini7b9998d2019-10-21 17:59:07 +010053 ARM_COMPUTE_RETURN_ERROR_ON_MSG(op != ReductionOperation::ARG_IDX_MAX && op != ReductionOperation::ARG_IDX_MIN, "Invalid reduction operation");
54 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis >= static_cast<int>(TensorShape::num_max_dimensions), "Reduction axis greater than max number of dimensions");
55 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis > 3, "Unsupported reduction axis");
Manuel Bottini7b9998d2019-10-21 17:59:07 +010056
57 DataType output_data_type = DataType::S32;
58 TensorInfo not_reshaped_output;
59 const auto input_num_channles = input->num_channels();
60 const auto input_qinfo = input->quantization_info();
61
62 if(output->total_size() != 0)
63 {
64 output_data_type = output->data_type();
65 const TensorInfo expected_output_shape = output->clone()->set_tensor_shape(arm_compute::misc::shape_calculator::compute_reduced_shape(input->tensor_shape(), axis, false));
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&expected_output_shape, output);
67 }
68
69 auto shape_before_reshape = input->tensor_shape();
70 shape_before_reshape.set(axis, 1);
71 auto initialize_tensorinfo = [](TensorInfo & ti, TensorShape shape, DataType data_type, int num_channels, QuantizationInfo qinfo)
72 {
73 ti.set_data_type(data_type).set_tensor_shape(shape).set_num_channels(num_channels).set_quantization_info(qinfo);
74 };
75
76 initialize_tensorinfo(not_reshaped_output, shape_before_reshape, output_data_type, input_num_channles, input_qinfo);
77
Pablo Marquez Tello9b392d72023-06-27 15:49:50 +010078 ARM_COMPUTE_RETURN_ON_ERROR(CLArgMinMaxLayerKernel::validate(input, &not_reshaped_output, axis, op));
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010079 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayer::validate(&not_reshaped_output, output));
Manuel Bottini7b9998d2019-10-21 17:59:07 +010080 return Status{};
81}
82
83void CLArgMinMaxLayer::configure(const ICLTensor *input, int axis, ICLTensor *output, const ReductionOperation &op)
84{
Manuel Bottini2b84be52020-04-08 10:15:51 +010085 configure(CLKernelLibrary::get().get_compile_context(), input, axis, output, op);
86}
87
88void CLArgMinMaxLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input, int axis, ICLTensor *output, const ReductionOperation &op)
89{
Manuel Bottini7b9998d2019-10-21 17:59:07 +010090 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
ramelg016d891572021-09-29 10:05:09 +010091 ARM_COMPUTE_LOG_PARAMS(input, axis, output, op);
92
Manuel Bottini7b9998d2019-10-21 17:59:07 +010093 _reduction_axis = axis;
94
95 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_reduced_shape(input->info()->tensor_shape(), axis, false);
96 DataType output_data_type = (output->info()->data_type() == DataType::UNKNOWN) ? DataType::S32 : output->info()->data_type();
97 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape).set_data_type(output_data_type).reset_padding().set_is_resizable(true));
98
Pablo Marquez Tello8dfb8822023-07-13 15:45:23 +010099 TensorShape not_reshaped_output_shape{ input->info()->tensor_shape() };
100 not_reshaped_output_shape.set(axis, 1);
101 auto_init_if_empty(*_not_reshaped_output.info(), input->info()->clone()->set_tensor_shape(not_reshaped_output_shape).set_data_type(output_data_type).reset_padding().set_is_resizable(true));
102
Pablo Marquez Tello9b392d72023-06-27 15:49:50 +0100103 _arg_min_max_kernel = std::make_unique<CLArgMinMaxLayerKernel>();
104 _arg_min_max_kernel->configure(compile_context, input, &_not_reshaped_output, axis, op);
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100105
106 _memory_group.manage(&_not_reshaped_output);
Pablo Marquez Tello8dfb8822023-07-13 15:45:23 +0100107
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100108 _reshape.configure(compile_context, &_not_reshaped_output, output);
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100109 _not_reshaped_output.allocator()->allocate();
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100110}
111
112void CLArgMinMaxLayer::run()
113{
Manuel Bottini7b9998d2019-10-21 17:59:07 +0100114 MemoryGroupResourceScope scope_mg(_memory_group);
115
Pablo Marquez Tello9b392d72023-06-27 15:49:50 +0100116 CLScheduler::get().enqueue(*_arg_min_max_kernel, false);
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100117 _reshape.run();
Michalis Spyrou7930db42018-11-22 17:36:28 +0000118}
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100119} // namespace arm_compute