blob: fdd8edfe87e6f5e5038b69eff775de7dacd8e236 [file] [log] [blame]
Michalis Spyroubcf8a962018-10-12 10:51:31 +01001/*
Michalis Spyroubcfd09a2019-05-01 13:03:59 +01002 * Copyright (c) 2018-2019 ARM Limited.
Michalis Spyroubcf8a962018-10-12 10:51:31 +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_NEON_REDUCE_MEAN_H__
25#define __ARM_COMPUTE_NEON_REDUCE_MEAN_H__
26
27#include "arm_compute/runtime/IFunction.h"
28
29#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/runtime/MemoryGroup.h"
32#include "arm_compute/runtime/NEON/functions/NEReductionOperation.h"
33#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
34
35namespace arm_compute
36{
37class ITensor;
38
39/** Basic function to perform reduce operation */
40class NEReduceMean : public IFunction
41{
42public:
43 /** Constructor */
44 NEReduceMean(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
45 /** Configure kernel
46 *
47 * @note Supported tensor rank: up to 4
48 *
49 * @param[in] input Source tensor. Data type supported: QASYMM8/F16/F32
50 * @param[in] reduction_axis Reduction axis vector.
51 * @param[in] keep_dims If positive, retains reduced dimensions with length 1.
52 * @param[out] output Destination tensor. Data type supported: Same as @p input
53 */
54 void configure(ITensor *input, const Coordinates &reduction_axis, bool keep_dims, ITensor *output);
55
56 /** Static function to check if given info will lead to a valid configuration of @ref NEReduceMean
57 *
58 * @param[in] input Source tensor. Data type supported: QASYMM8/F16/F32
59 * @param[in] reduction_axis Reduction axis vector.
60 * @param[in] keep_dims If positive, retains reduced dimensions with length 1.
61 * @param[in] output Destination tensor. Data type supported: Same as @p input
62 *
63 * @return A status
64 */
65 static Status validate(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output);
66
67 // Inherited methods overridden:
68 void run() override;
69
70private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010071 MemoryGroup _memory_group;
72 std::vector<NEReductionOperation> _reduction_kernels;
73 std::vector<Tensor> _reduced_outs;
74 NEReshapeLayer _reshape;
75 unsigned int _reduction_ops;
76 bool _keep_dims;
Michalis Spyroubcf8a962018-10-12 10:51:31 +010077};
78} // namespace arm_compute
79#endif /* __ARM_COMPUTE_NEON_REDUCE_MEAN_H__ */