blob: 46229540b481ed0a975c17c5e6bb21ab0a727c6f [file] [log] [blame]
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +00001/*
Adnan AlSinan704c22f2023-10-24 11:05:56 +01002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +00003 *
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 */
Adnan AlSinan704c22f2023-10-24 11:05:56 +010024#ifndef ACL_ARM_COMPUTE_RUNTIME_CL_FUNCTIONS_CLREVERSE_H
25#define ACL_ARM_COMPUTE_RUNTIME_CL_FUNCTIONS_CLREVERSE_H
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000026
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010027#include "arm_compute/core/Error.h"
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000028#include "arm_compute/runtime/CL/ICLSimpleFunction.h"
29
30namespace arm_compute
31{
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010032class CLCompileContext;
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000033class ICLTensor;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010034class ITensorInfo;
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000035
36/** Basic function to run @ref CLReverseKernel */
37class CLReverse : public ICLSimpleFunction
38{
39public:
40 /** Initialize the function
41 *
Teresa Charlin62687422021-04-28 10:58:49 +010042 * Valid data layouts:
43 * - All
44 *
45 * Valid data type configurations:
46 * |src0 |src1 |dst |
47 * |:--------------|:--------------|:--------------|
Adnan AlSinan704c22f2023-10-24 11:05:56 +010048 * |All |U32, S32 |All |
Teresa Charlin62687422021-04-28 10:58:49 +010049 *
Adnan AlSinan704c22f2023-10-24 11:05:56 +010050 * @param[in] input Input tensor. Data types supported: All.
51 * @param[out] output Output tensor. Data type supported: Same as @p input
52 * @param[in] axis Axis tensor. Contains the indices of the dimensions to reverse. Data type supported: U32/S32
53 * @param[in] use_inverted_axis Reverse ACL axis indices convention, if true, (inverted)axis = (tensor_rank - 1) - axis
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000054 */
Adnan AlSinan704c22f2023-10-24 11:05:56 +010055 void configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *axis, bool use_inverted_axis);
Manuel Bottini2b84be52020-04-08 10:15:51 +010056 /** Initialize the function
57 *
Adnan AlSinan704c22f2023-10-24 11:05:56 +010058 * @param[in] compile_context The compile context to be used.
59 * @param[in] input Input tensor. Data types supported: All.
60 * @param[out] output Output tensor. Data type supported: Same as @p input
61 * @param[in] axis Axis tensor. Contains the indices of the dimensions to reverse. Data type supported: U32/S32
62 * @param[in] use_inverted_axis Reverse ACL axis indices convention, if true, (inverted)axis = (tensor_rank - 1) - axis
Manuel Bottini2b84be52020-04-08 10:15:51 +010063 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010064 void configure(const CLCompileContext &compile_context,
65 const ICLTensor *input,
66 ICLTensor *output,
Adnan AlSinan704c22f2023-10-24 11:05:56 +010067 const ICLTensor *axis,
68 bool use_inverted_axis);
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000069 /** Static function to check if given info will lead to a valid configuration of @ref CLReverseKernel
70 *
Adnan AlSinan704c22f2023-10-24 11:05:56 +010071 * @param[in] input Input tensor info. Data types supported: All.
72 * @param[in] output Output tensor info. Data type supported: Same as @p input
73 * @param[in] axis Axis tensor info. Contains the indices of the dimensions to reverse. Data type supported: U32/S32
74 * @param[in] use_inverted_axis Reverse ACL axis indices convention, if true, (inverted)axis = (tensor_rank - 1) - axis
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000075 *
76 * @return a status
77 */
Adnan AlSinan704c22f2023-10-24 11:05:56 +010078 static Status
79 validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis, bool use_inverted_axis);
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000080};
81} // namespace arm_compute
Adnan AlSinan704c22f2023-10-24 11:05:56 +010082#endif // ACL_ARM_COMPUTE_RUNTIME_CL_FUNCTIONS_CLREVERSE_H