blob: aafccb00e33fe96dfafae49f82b28278926c8bbd [file] [log] [blame]
Georgios Pinitasd9769582017-08-03 10:19:40 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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"
28
Georgios Pinitasd9769582017-08-03 10:19:40 +010029#include "arm_compute/core/NEON/kernels/NEReductionOperationKernel.h"
Michalis Spyroubcd23522020-05-21 15:02:36 +010030#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010031#include "arm_compute/runtime/Tensor.h"
Georgios Pinitasd9769582017-08-03 10:19:40 +010032
33namespace arm_compute
34{
35class ITensor;
36
37/** Basic function to simulate a reduction operation. This function calls the following NEON kernels:
38 *
Sheri Zhang4d91dc62020-09-23 11:22:50 +010039 * -# @ref NEReshapeLayer
Georgios Pinitasd9769582017-08-03 10:19:40 +010040 * -# @ref NEReductionOperationKernel
41 *
42 */
43class NEReductionOperation : public IFunction
44{
45public:
46 /** Default constructor */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010047 NEReductionOperation(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitasd9769582017-08-03 10:19:40 +010048 /** Set the input and output tensors.
49 *
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010050 * @param[in, out] input Source tensor. Data type supported: QASYMM8_SIGNED/QASYMM8/F16/F32/S32. Data layouts supported: NCHW. (Written to only for border_size != 0)
51 * @param[out] output Destination tensor. Data types and data layouts supported: same as @p input.
52 * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0
53 * @param[in] op Reduction operation to perform.
54 * @param[in] keep_dims (Optional) Whether to keep the reduced dimension after the operation. Defaults to true.
Georgios Pinitasd9769582017-08-03 10:19:40 +010055 */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010056 void configure(ITensor *input, ITensor *output, unsigned int axis, ReductionOperation op, bool keep_dims = true);
Georgios Pinitasd9769582017-08-03 10:19:40 +010057
John Richardson73d4aef2018-05-08 14:34:33 +010058 /** Static function to check if given info will lead to a valid configuration of @ref NEReductionOperation.
59 *
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010060 * @param[in] input Source tensor info. Data type supported: QASYMM8_SIGNED/QASYMM8/F16/F32/S32. Data layouts supported: NCHW.
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010061 * @param[in] output Destination tensor info. Data types and data layouts supported: same as @p input.
62 * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0
63 * @param[in] op Reduction operation to perform.
64 * @param[in] keep_dims (Optional) Whether to keep the reduced dimension after the operation. Defaults to true.
John Richardson73d4aef2018-05-08 14:34:33 +010065 *
66 * @return a status
67 */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010068 static Status validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, ReductionOperation op, bool keep_dims = true);
John Richardson73d4aef2018-05-08 14:34:33 +010069
Georgios Pinitasd9769582017-08-03 10:19:40 +010070 // Inherited methods overridden:
71 void run() override;
72
73private:
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010074 MemoryGroup _memory_group;
Georgios Pinitasd9769582017-08-03 10:19:40 +010075 NEReductionOperationKernel _reduction_kernel;
Michalis Spyroubcd23522020-05-21 15:02:36 +010076 NEReshapeLayer _reshape;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010077 Tensor _output_internal;
Georgios Pinitasd9769582017-08-03 10:19:40 +010078 size_t _window_split;
Michalis Spyroubcf8a962018-10-12 10:51:31 +010079 int _reduction_axis;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010080 bool _is_reshape_required;
Georgios Pinitasd9769582017-08-03 10:19:40 +010081};
Michalis Spyroubcf8a962018-10-12 10:51:31 +010082} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000083#endif /* ARM_COMPUTE_NEREDUCTIONOPERATION_H */