blob: 1e72c4f74d9a42c682d1d48c0d8e99df4dcee904 [file] [log] [blame]
Georgios Pinitasd9769582017-08-03 10:19:40 +01001/*
Sang-Hoon Park2697fd82019-10-15 16:49:24 +01002 * Copyright (c) 2017-2019 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 */
24#ifndef __ARM_COMPUTE_NEREDUCTIONOPERATION_H__
25#define __ARM_COMPUTE_NEREDUCTIONOPERATION_H__
26
27#include "arm_compute/runtime/IFunction.h"
28
29#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
30#include "arm_compute/core/NEON/kernels/NEReductionOperationKernel.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010031#include "arm_compute/core/NEON/kernels/NEReshapeLayerKernel.h"
Georgios Pinitasd9769582017-08-03 10:19:40 +010032#include "arm_compute/core/Types.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010033#include "arm_compute/runtime/Tensor.h"
Georgios Pinitasd9769582017-08-03 10:19:40 +010034
35namespace arm_compute
36{
37class ITensor;
38
39/** Basic function to simulate a reduction operation. This function calls the following NEON kernels:
40 *
41 * -# @ref NEFillBorderKernel
42 * -# @ref NEReductionOperationKernel
43 *
44 */
45class NEReductionOperation : public IFunction
46{
47public:
48 /** Default constructor */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010049 NEReductionOperation(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Georgios Pinitasd9769582017-08-03 10:19:40 +010050 /** Set the input and output tensors.
51 *
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010052 * @param[in] input Source tensor. Data type supported: QASYMM8/F16/F32. Data layouts supported: NCHW. (Written to only for border_size != 0)
53 * @param[out] output Destination tensor. Data types and data layouts supported: same as @p input.
54 * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0
55 * @param[in] op Reduction operation to perform.
56 * @param[in] keep_dims (Optional) Whether to keep the reduced dimension after the operation. Defaults to true.
Georgios Pinitasd9769582017-08-03 10:19:40 +010057 */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010058 void configure(ITensor *input, ITensor *output, unsigned int axis, ReductionOperation op, bool keep_dims = true);
Georgios Pinitasd9769582017-08-03 10:19:40 +010059
John Richardson73d4aef2018-05-08 14:34:33 +010060 /** Static function to check if given info will lead to a valid configuration of @ref NEReductionOperation.
61 *
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010062 * @param[in] input Source tensor info. Data type supported: QASYMM8/F16/F32. Data layouts supported: NCHW. (Written to only for border_size != 0)
63 * @param[in] output Destination tensor info. Data types and data layouts supported: same as @p input.
64 * @param[in] axis Dimension along which to reduce. Supported reduction axis : 0
65 * @param[in] op Reduction operation to perform.
66 * @param[in] keep_dims (Optional) Whether to keep the reduced dimension after the operation. Defaults to true.
John Richardson73d4aef2018-05-08 14:34:33 +010067 *
68 * @return a status
69 */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010070 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 +010071
Georgios Pinitasd9769582017-08-03 10:19:40 +010072 // Inherited methods overridden:
73 void run() override;
74
75private:
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010076 MemoryGroup _memory_group;
Georgios Pinitasd9769582017-08-03 10:19:40 +010077 NEReductionOperationKernel _reduction_kernel;
78 NEFillBorderKernel _fill_border_kernel;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010079 NEReshapeLayerKernel _reshape_kernel;
80 Tensor _output_internal;
Georgios Pinitasd9769582017-08-03 10:19:40 +010081 size_t _window_split;
Michalis Spyroubcf8a962018-10-12 10:51:31 +010082 int _reduction_axis;
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010083 bool _is_reshape_required;
Georgios Pinitasd9769582017-08-03 10:19:40 +010084};
Michalis Spyroubcf8a962018-10-12 10:51:31 +010085} // namespace arm_compute
Georgios Pinitasd9769582017-08-03 10:19:40 +010086#endif /* __ARM_COMPUTE_NEREDUCTIONOPERATION_H__ */