blob: f5391a6d0edac0fc0e6e4fc0e4b25657606e67fe [file] [log] [blame]
Georgios Pinitasd9769582017-08-03 10:19:40 +01001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2017-2021 Arm Limited.
Georgios Pinitasd9769582017-08-03 10:19:40 +01003 *
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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEREDUCTIONOPERATION_H
25#define ARM_COMPUTE_NEREDUCTIONOPERATION_H
Georgios Pinitasd9769582017-08-03 10:19:40 +010026
27#include "arm_compute/runtime/IFunction.h"
Michalis Spyroubcd23522020-05-21 15:02:36 +010028#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010029#include "arm_compute/runtime/Tensor.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
Michalis Spyrouebcebf12020-10-21 00:04:14 +010031#include <memory>
Georgios Pinitasd9769582017-08-03 10:19:40 +010032
33namespace arm_compute
34{
35class ITensor;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010036class NEReductionOperationKernel;
Georgios Pinitasd9769582017-08-03 10:19:40 +010037
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000038/** Basic function to simulate a reduction operation. This function calls the following kernels:
Georgios Pinitasd9769582017-08-03 10:19:40 +010039 *
Sheri Zhang4d91dc62020-09-23 11:22:50 +010040 * -# @ref NEReshapeLayer
Georgios Pinitasd9769582017-08-03 10:19:40 +010041 * -# @ref NEReductionOperationKernel
42 *
43 */
44class NEReductionOperation : public IFunction
45{
46public:
47 /** Default constructor */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010048 NEReductionOperation(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Michalis Spyrouebcebf12020-10-21 00:04:14 +010049 /** Prevent instances of this class from being copied (As this class contains pointers) */
50 NEReductionOperation(const NEReductionOperation &) = delete;
51 /** Default move constructor */
52 NEReductionOperation(NEReductionOperation &&) = default;
53 /** Prevent instances of this class from being copied (As this class contains pointers) */
54 NEReductionOperation &operator=(const NEReductionOperation &) = delete;
55 /** Default move assignment operator */
56 NEReductionOperation &operator=(NEReductionOperation &&) = default;
57 /** Default destructor */
58 ~NEReductionOperation();
Georgios Pinitasd9769582017-08-03 10:19:40 +010059 /** Set the input and output tensors.
60 *
Teresa Charlin62687422021-04-28 10:58:49 +010061 * Valid data layouts:
62 * - All
63 *
64 * Valid data type configurations:
65 * |src |dst |
66 * |:--------------|:--------------|
67 * |QASYMM8 |QASYMM8 |
68 * |QASYMM8_SIGNED |QASYMM8_SIGNED |
69 * |F16 |F16 |
70 * |F32 |F32 |
71 * |S32 |S32 |
72 *
73 * @param[in, out] input Source tensor. Data type supported: QASYMM8_SIGNED/QASYMM8/F16/F32/S32. (Written to only for border_size != 0)
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010074 * @param[out] output Destination tensor. Data types and data layouts supported: same as @p input.
75 * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0
76 * @param[in] op Reduction operation to perform.
77 * @param[in] keep_dims (Optional) Whether to keep the reduced dimension after the operation. Defaults to true.
Georgios Pinitasd9769582017-08-03 10:19:40 +010078 */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010079 void configure(ITensor *input, ITensor *output, unsigned int axis, ReductionOperation op, bool keep_dims = true);
Georgios Pinitasd9769582017-08-03 10:19:40 +010080
John Richardson73d4aef2018-05-08 14:34:33 +010081 /** Static function to check if given info will lead to a valid configuration of @ref NEReductionOperation.
82 *
Teresa Charlin62687422021-04-28 10:58:49 +010083 * @param[in] input Source tensor info. Data type supported: QASYMM8_SIGNED/QASYMM8/F16/F32/S32.
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010084 * @param[in] output Destination tensor info. Data types and data layouts supported: same as @p input.
85 * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0
86 * @param[in] op Reduction operation to perform.
87 * @param[in] keep_dims (Optional) Whether to keep the reduced dimension after the operation. Defaults to true.
John Richardson73d4aef2018-05-08 14:34:33 +010088 *
89 * @return a status
90 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010091 static Status validate(const ITensorInfo *input,
92 const ITensorInfo *output,
93 unsigned int axis,
94 ReductionOperation op,
95 bool keep_dims = true);
John Richardson73d4aef2018-05-08 14:34:33 +010096
Georgios Pinitasd9769582017-08-03 10:19:40 +010097 // Inherited methods overridden:
98 void run() override;
99
100private:
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100101 MemoryGroup _memory_group;
102 std::unique_ptr<NEReductionOperationKernel> _reduction_kernel;
103 NEReshapeLayer _reshape;
104 Tensor _output_internal;
105 size_t _window_split;
106 int _reduction_axis;
107 bool _is_reshape_required;
Georgios Pinitasd9769582017-08-03 10:19:40 +0100108};
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100109} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000110#endif /* ARM_COMPUTE_NEREDUCTIONOPERATION_H */