blob: 214ffa512c345d9f8792998129e13b04598692d5 [file] [log] [blame]
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +00001/*
Sheri Zhanga47dcc22021-04-22 14:41:12 +01002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NE_SLICE_H
25#define ARM_COMPUTE_NE_SLICE_H
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +000026
Michalis Spyrou1732da82020-06-19 12:40:46 +010027#include "arm_compute/runtime/IFunction.h"
28#include "arm_compute/runtime/NEON/INEOperator.h"
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +000029
30namespace arm_compute
31{
32// Forward Declarations
33class ITensor;
34
Michalis Spyrou1732da82020-06-19 12:40:46 +010035namespace experimental
36{
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +000037/** Basic function to perform tensor slicing */
Michalis Spyrou1732da82020-06-19 12:40:46 +010038class NESlice : public INEOperator
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +000039{
40public:
41 /** Configure kernel
42 *
43 * @note Supported tensor rank: up to 4
44 * @note Start indices must be non-negative. 0 <= starts[i]
45 * @note End coordinates can be negative, which represents the number of elements before the end of that dimension.
46 * @note End indices are not inclusive unless negative.
47 *
Michalis Spyrou1732da82020-06-19 12:40:46 +010048 * @param[in] input Source tensor info. Data type supported: All
49 * @param[out] output Destination tensor info. Data type supported: Same as @p input
50 * @param[in] starts The starts of the dimensions of the input tensor to be sliced. The length must be of rank(input).
51 * @param[in] ends The ends of the dimensions of the input tensor to be sliced. The length must be of rank(input).
52 */
53 void configure(const ITensorInfo *input, ITensorInfo *output, const Coordinates &starts, const Coordinates &ends);
54
55 /** Static function to check if given info will lead to a valid configuration of @ref NESlice
56 *
57 * @note Supported tensor rank: up to 4
58 * @note Start indices must be non-negative. 0 <= starts[i]
59 * @note End coordinates can be negative, which represents the number of elements before the end of that dimension.
60 * @note End indices are not inclusive unless negative.
61 *
62 * @param[in] input Source tensor info. Data type supported: All
63 * @param[in] output Destination tensor info. Data type supported: Same as @p input
64 * @param[in] starts The starts of the dimensions of the input tensor to be sliced. The length must be of rank(input).
65 * @param[in] ends The ends of the dimensions of the input tensor to be sliced. The length must be of rank(input).
66 *
67 * @return A status
68 */
69 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const Coordinates &starts, const Coordinates &ends);
Michalis Spyrou1732da82020-06-19 12:40:46 +010070};
71} // namespace experimental
72
73/** Basic function to perform tensor slicing */
74class NESlice : public IFunction
75{
76public:
77 /** Default Constructor */
78 NESlice();
79 /** Default Destructor */
80 ~NESlice();
81 /** Prevent instances of this class from being copied (As this class contains pointers) */
82 NESlice(const NESlice &) = delete;
83 /** Default move constructor */
84 NESlice(NESlice &&);
85 /** Prevent instances of this class from being copied (As this class contains pointers) */
86 NESlice &operator=(const NESlice &) = delete;
87 /** Default move assignment operator */
88 NESlice &operator=(NESlice &&);
89
90 /** Configure kernel
91 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010092 * Valid data layouts:
93 * - All
94 *
95 * Valid data type configurations:
96 * |src |dst |
97 * |:------|:------|
98 * |All |All |
99 *
Michalis Spyrou1732da82020-06-19 12:40:46 +0100100 * @note Supported tensor rank: up to 4
101 * @note Start indices must be non-negative. 0 <= starts[i]
102 * @note End coordinates can be negative, which represents the number of elements before the end of that dimension.
103 * @note End indices are not inclusive unless negative.
104 *
Georgios Pinitas33843562019-12-10 13:33:18 +0000105 * @param[in] input Source tensor. Data type supported: All
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +0000106 * @param[out] output Destination tensor. Data type supported: Same as @p input
107 * @param[in] starts The starts of the dimensions of the input tensor to be sliced. The length must be of rank(input).
108 * @param[in] ends The ends of the dimensions of the input tensor to be sliced. The length must be of rank(input).
109 */
110 void configure(const ITensor *input, ITensor *output, const Coordinates &starts, const Coordinates &ends);
111
112 /** Static function to check if given info will lead to a valid configuration of @ref NESlice
113 *
114 * @note Supported tensor rank: up to 4
115 * @note Start indices must be non-negative. 0 <= starts[i]
116 * @note End coordinates can be negative, which represents the number of elements before the end of that dimension.
117 * @note End indices are not inclusive unless negative.
118 *
Georgios Pinitas33843562019-12-10 13:33:18 +0000119 * @param[in] input Source tensor info. Data type supported: All
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +0000120 * @param[in] output Destination tensor info. Data type supported: Same as @p input
121 * @param[in] starts The starts of the dimensions of the input tensor to be sliced. The length must be of rank(input).
122 * @param[in] ends The ends of the dimensions of the input tensor to be sliced. The length must be of rank(input).
123 *
124 * @return A status
125 */
126 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const Coordinates &starts, const Coordinates &ends);
Michalis Spyrou1732da82020-06-19 12:40:46 +0100127
128 // Inherited methods overridden:
129 void run() override;
130
131private:
132 struct Impl;
133 std::unique_ptr<Impl> _impl;
Georgios Pinitas6d9d6f42018-12-24 16:10:47 +0000134};
135} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000136#endif /* ARM_COMPUTE_NE_SLICE_H */