blob: 7512115a3f7d5fb04db3a6e315af51ffe7619ee7 [file] [log] [blame]
Michalis Spyroubcf8a962018-10-12 10:51:31 +01001/*
Teresa Charlin62687422021-04-28 10:58:49 +01002 * Copyright (c) 2018-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NEON_REDUCE_MEAN_H
25#define ARM_COMPUTE_NEON_REDUCE_MEAN_H
Michalis Spyroubcf8a962018-10-12 10:51:31 +010026
27#include "arm_compute/runtime/IFunction.h"
28
Michalis Spyroubcf8a962018-10-12 10:51:31 +010029#include "arm_compute/core/Types.h"
30#include "arm_compute/runtime/MemoryGroup.h"
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010031#include "arm_compute/runtime/NEON/functions/NEDequantizationLayer.h"
32#include "arm_compute/runtime/NEON/functions/NEQuantizationLayer.h"
Michalis Spyroubcf8a962018-10-12 10:51:31 +010033#include "arm_compute/runtime/NEON/functions/NEReductionOperation.h"
34#include "arm_compute/runtime/NEON/functions/NEReshapeLayer.h"
Georgios Pinitas26014cf2019-09-09 19:00:57 +010035#include "arm_compute/runtime/Tensor.h"
Michalis Spyroubcf8a962018-10-12 10:51:31 +010036
37namespace arm_compute
38{
Michalis Spyroubcf8a962018-10-12 10:51:31 +010039/** Basic function to perform reduce operation */
40class NEReduceMean : public IFunction
41{
42public:
43 /** Constructor */
44 NEReduceMean(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Michalis Spyrouebcebf12020-10-21 00:04:14 +010045 /** Prevent instances of this class from being copied (As this class contains pointers) */
46 NEReduceMean(const NEReduceMean &) = delete;
47 /** Prevent instances of this class from being copied (As this class contains pointers) */
48 NEReduceMean &operator=(const NEReduceMean &) = delete;
49 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
50 NEReduceMean(NEReduceMean &&) = delete;
51 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
52 NEReduceMean &operator=(NEReduceMean &&) = delete;
53 /** Default destructor */
54 ~NEReduceMean();
Michalis Spyroubcf8a962018-10-12 10:51:31 +010055 /** Configure kernel
56 *
Teresa Charlin62687422021-04-28 10:58:49 +010057 * Valid data layouts:
58 * - All
59 *
60 * Valid data type configurations:
61 * |src |dst |
62 * |:--------------|:--------------|
63 * |QASYMM8 |QASYMM8 |
64 * |QASYMM8_SIGNED |QASYMM8_SIGNED |
65 * |F16 |F16 |
66 * |F32 |F32 |
67 *
Michalis Spyroubcf8a962018-10-12 10:51:31 +010068 * @note Supported tensor rank: up to 4
69 *
Luca Foschianiee939fb2020-01-28 10:38:07 +000070 * @param[in] input Source tensor. Data type supported: QASYMM8_SIGNED/QASYMM8/F16/F32
Michalis Spyroubcf8a962018-10-12 10:51:31 +010071 * @param[in] reduction_axis Reduction axis vector.
72 * @param[in] keep_dims If positive, retains reduced dimensions with length 1.
73 * @param[out] output Destination tensor. Data type supported: Same as @p input
74 */
75 void configure(ITensor *input, const Coordinates &reduction_axis, bool keep_dims, ITensor *output);
76
77 /** Static function to check if given info will lead to a valid configuration of @ref NEReduceMean
78 *
Luca Foschianiee939fb2020-01-28 10:38:07 +000079 * @param[in] input Source tensor. Data type supported: QASYMM8_SIGNED/QASYMM8/F16/F32
Michalis Spyroubcf8a962018-10-12 10:51:31 +010080 * @param[in] reduction_axis Reduction axis vector.
81 * @param[in] keep_dims If positive, retains reduced dimensions with length 1.
82 * @param[in] output Destination tensor. Data type supported: Same as @p input
83 *
84 * @return A status
85 */
86 static Status validate(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output);
87
88 // Inherited methods overridden:
89 void run() override;
90
91private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010092 MemoryGroup _memory_group;
93 std::vector<NEReductionOperation> _reduction_kernels;
94 std::vector<Tensor> _reduced_outs;
95 NEReshapeLayer _reshape;
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010096 NEDequantizationLayer _dequant;
97 NEQuantizationLayer _requant;
Pablo Tello93975152019-11-08 13:47:53 +000098 int _reduction_ops;
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010099 bool _keep_dims;
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100100 bool _do_requant;
101 Tensor _input_no_quant;
102 Tensor _output_no_quant;
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100103};
104} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000105#endif /* ARM_COMPUTE_NEON_REDUCE_MEAN_H */