blob: ba10134a0014b909a8f5ff6fda3aeb0855b2b4a5 [file] [log] [blame]
Michalis Spyrou7e9391b2018-10-05 14:49:28 +01001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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_CL_REDUCE_MEAN_H__
25#define __ARM_COMPUTE_CL_REDUCE_MEAN_H__
26
27#include "arm_compute/runtime/CL/ICLSimpleFunction.h"
giuros01164a2722018-11-20 18:34:46 +000028#include "arm_compute/runtime/CL/functions/CLElementwiseOperations.h"
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010029#include "arm_compute/runtime/CL/functions/CLReductionOperation.h"
30#include "arm_compute/runtime/CL/functions/CLReshapeLayer.h"
31#include "arm_compute/runtime/IMemoryManager.h"
32
33namespace arm_compute
34{
35// Forward Declarations
36class ICLTensor;
37
38/** Basic function to perform reduce operation */
39class CLReduceMean : public IFunction
40{
41public:
42 /** Default constructor */
43 CLReduceMean(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
44 /** Configure kernel
45 *
46 * @note Supported tensor rank: up to 4
47 *
48 * @param[in] input Source tensor. Data type supported: QASYMM8/F16/F32
49 * @param[in] reduction_axis Reduction axis vector.
50 * @param[in] keep_dims If positive, retains reduced dimensions with length 1.
51 * @param[out] output Destination tensor. Data type supported: Same as @p input
52 */
53 void configure(ICLTensor *input, const Coordinates &reduction_axis, bool keep_dims, ICLTensor *output);
54
55 /** Static function to check if given info will lead to a valid configuration of @ref CLReduceMean
56 *
57 * @param[in] input Source tensor. Data type supported: QASYMM8/F16/F32
58 * @param[in] reduction_axis Reduction axis vector.
59 * @param[in] keep_dims If positive, retains reduced dimensions with length 1.
60 * @param[in] output Destination tensor. Data type supported: Same as @p input
61 *
62 * @return A status
63 */
64 static Status validate(const ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims, const ITensorInfo *output);
65
66 // Inherited methods overridden:
67 void run() override;
68
69private:
70 CLMemoryGroup _memory_group;
71 std::unique_ptr<CLReductionOperation[]> _reduction_kernels{ nullptr };
72 std::unique_ptr<CLTensor[]> _reduced_outs{ nullptr };
73 CLReshapeLayer _reshape;
74 unsigned int _reduction_ops;
75 bool _keep_dims;
76};
77} // namespace arm_compute
78#endif /* __ARM_COMPUTE_CL_REDUCE_MEAN_H__ */