blob: 7f4cfe3edc8bb75c9a65c7895f1aa89863df2e8d [file] [log] [blame]
Manuel Bottini7b9998d2019-10-21 17:59:07 +01001/*
2 * Copyright (c) 2019 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_CLARGMINMAXLAYERKERNEL_H
25#define ARM_COMPUTE_CLARGMINMAXLAYERKERNEL_H
26
27#include "arm_compute/core/CL/ICLKernel.h"
28#include "arm_compute/core/Types.h"
29
30namespace arm_compute
31{
32class ICLTensor;
33
34/** Interface for the reduction operation kernel
35 *
36 * @note The default data type for an uninitialized output tensor is
37 * signed 32-bit integer (S32). It is the user's responsibility to check
38 * that the results do not overflow because the indices are computed
39 * in unsigned 32-bit (U32).
40 */
41class CLArgMinMaxLayerKernel : public ICLKernel
42{
43public:
44 /** Default constructor */
45 CLArgMinMaxLayerKernel();
46 /** Prevent instances of this class from being copied (As this class contains pointers) */
47 CLArgMinMaxLayerKernel(const CLArgMinMaxLayerKernel &) = delete;
48 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 CLArgMinMaxLayerKernel &operator=(const CLArgMinMaxLayerKernel &) = delete;
50 /** Allow instances of this class to be moved */
51 CLArgMinMaxLayerKernel(CLArgMinMaxLayerKernel &&) = default;
52 /** Allow instances of this class to be moved */
53 CLArgMinMaxLayerKernel &operator=(CLArgMinMaxLayerKernel &&) = default;
54 /** Default destructor */
55 ~CLArgMinMaxLayerKernel() = default;
56
57 /** Set the input and output tensors.
58 *
59 * @param[in] input Source tensor. Data types supported: S32/F16/F32.
60 * @param[in] prev_output Destination tensor of the previous iterations of @ref CLArgMinMaxLayerKernel. Data types supported: U32/S32
61 * Has to be nullptr for the first iteration
62 * @param[out] output Destination tensor. Data types supported: U32/S32
63 * Output will have the same number of dimensions as input.
64 * @param[in] axis Axis along which to reduce. Supported reduction axis : 0,1,2,3
65 * @param[in] op Reduction operation to perform. Only ArgMin and ArgMax are supported.
66 */
67 void configure(const ICLTensor *input, const ICLTensor *prev_output, ICLTensor *output, unsigned int axis, ReductionOperation op);
68
69 /** Static function to check if given info will lead to a valid configuration of @ref CLArgMinMaxLayerKernel.
70 *
71 * @param[in] input Source tensor info. Data types supported: S32/F16/F32.
72 * @param[in] prev_output Destination tensor info of the previous iterations. Data types supported: U32/S32
73 * Has to be nullptr for the first iteration
74 * @param[in] output Destination tensor info. Data types supported: U32/S32
75 * Output will have the same number of dimensions as input.
76 * @param[in] axis Axis along which to reduce. Supported reduction axis : 0,1,2,3
77 * @param[in] op Reduction operation to perform. Only ArgMin and ArgMax are supported.
78 *
79 * @return a status
80 */
81 static Status validate(const ITensorInfo *input, const ITensorInfo *prev_output, const ITensorInfo *output, unsigned int axis, ReductionOperation op);
82
83 // Inherited methods overridden:
84 void run(const Window &window, cl::CommandQueue &queue) override;
85
86private:
87 const ICLTensor *_input;
88 const ICLTensor *_prev_output;
89 ICLTensor *_output;
90 unsigned int _reduction_axis;
91 ReductionOperation _op;
92};
93} // namespace arm_compute
94#endif /* ARM_COMPUTE_CLARGMINMAXLAYERKERNEL_H */