blob: 0c3d9414e1fc93bcb8cc9688e2c5b76395f1b8e1 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
24#ifndef __ARM_COMPUTE_TENSORSHAPE_H__
25#define __ARM_COMPUTE_TENSORSHAPE_H__
26
27#include "arm_compute/core/Dimensions.h"
28#include "arm_compute/core/Error.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000029#include "arm_compute/core/utils/misc/Utility.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31#include <algorithm>
32#include <array>
33#include <functional>
34#include <numeric>
35
36namespace arm_compute
37{
38/** Shape of a tensor */
39class TensorShape : public Dimensions<size_t>
40{
41public:
42 /** Constructor to initialize the tensor shape.
43 *
44 * @param[in] dims Values to initialize the dimensions.
45 */
46 template <typename... Ts>
47 TensorShape(Ts... dims)
48 : Dimensions{ dims... }
49 {
50 // Initialize unspecified dimensions to 1
51 if(_num_dimensions > 0)
52 {
53 std::fill(_id.begin() + _num_dimensions, _id.end(), 1);
54 }
55
56 // Correct number dimensions to ignore trailing dimensions of size 1
57 apply_dimension_correction();
58 }
59 /** Allow instances of this class to be copy constructed */
60 TensorShape(const TensorShape &) = default;
61 /** Allow instances of this class to be copied */
62 TensorShape &operator=(const TensorShape &) = default;
63 /** Allow instances of this class to be move constructed */
64 TensorShape(TensorShape &&) = default;
65 /** Allow instances of this class to be moved */
66 TensorShape &operator=(TensorShape &&) = default;
67 /** Default destructor */
68 ~TensorShape() = default;
69
70 /** Accessor to set the value of one of the dimensions.
71 *
Giorgio Arena563494c2018-04-30 17:29:41 +010072 * @param[in] dimension Dimension for which the value is set.
73 * @param[in] value Value to be set for the dimension.
74 * @param[in] apply_dim_correction Flag to state whether apply dimension correction after setting one dimension. E.g. when permuting NCHW -> NHWC, 1x1x2 would become 2x1x1, but _num_dimensions should be 3 rather than 1.
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000075 *
76 * @return *this.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077 */
Giorgio Arena563494c2018-04-30 17:29:41 +010078 TensorShape &set(size_t dimension, size_t value, bool apply_dim_correction = true)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079 {
Moritz Pflanzer0745a982017-07-05 16:34:28 +010080 // Clear entire shape if one dimension is zero
81 if(value == 0)
82 {
83 _num_dimensions = 0;
84 std::fill(_id.begin(), _id.end(), 0);
Moritz Pflanzer0745a982017-07-05 16:34:28 +010085 }
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000086 else
87 {
88 // Make sure all empty dimensions are filled with 1
89 std::fill(_id.begin() + _num_dimensions, _id.end(), 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000091 // Set the specified dimension and increase the number of dimensions if
92 // necessary
93 Dimensions::set(dimension, value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000095 // Correct number dimensions to ignore trailing dimensions of size 1
Giorgio Arena563494c2018-04-30 17:29:41 +010096 if(apply_dim_correction)
97 {
98 apply_dimension_correction();
99 }
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000100 }
101 return *this;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102 }
103
Gian Marco Iodice42ab8992017-08-04 10:54:55 +0100104 /** Accessor to remove the dimension n from the tensor shape.
105 *
106 * @note The upper dimensions of the tensor shape will be shifted down by 1
107 *
108 * @param[in] n Dimension to remove
109 */
110 void remove_dimension(size_t n)
111 {
112 ARM_COMPUTE_ERROR_ON(_num_dimensions < 1);
113 ARM_COMPUTE_ERROR_ON(n >= _num_dimensions);
114
115 std::copy(_id.begin() + n + 1, _id.end(), _id.begin() + n);
116
117 // Reduce number of dimensions
118 _num_dimensions--;
119
120 // Make sure all empty dimensions are filled with 1
121 std::fill(_id.begin() + _num_dimensions, _id.end(), 1);
122
123 // Correct number dimensions to ignore trailing dimensions of size 1
124 apply_dimension_correction();
125 }
126
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100127 /** Collapse the first n dimensions.
128 *
Gian Marco Iodiceab182122017-10-09 15:05:40 +0100129 * @param[in] n Number of dimensions to collapse into @p first
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130 * @param[in] first Dimensions into which the following @p n are collapsed.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 */
132 void collapse(size_t n, size_t first = 0)
133 {
134 Dimensions::collapse(n, first);
135
136 // Make sure all empty dimensions are filled with 1
137 std::fill(_id.begin() + _num_dimensions, _id.end(), 1);
138 }
139
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000140 /** Return a copy with collapsed dimensions starting from a given point.
141 *
142 * @param[in] start Starting point of collapsing dimensions.
143 *
144 * @return A copy with collapse dimensions starting from start.
145 */
146 TensorShape collapsed_from(size_t start) const
147 {
148 TensorShape copy(*this);
149 copy.collapse(num_dimensions(), start);
150 return copy;
151 }
152
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153 /** Collapses all dimensions to a single linear total size.
154 *
155 * @return The total tensor size in terms of elements.
156 */
157 size_t total_size() const
158 {
159 return std::accumulate(_id.begin(), _id.end(), 1, std::multiplies<size_t>());
160 }
161 /** Collapses given dimension and above.
162 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163 * @param[in] dimension Size of the wanted dimension
164 *
165 * @return The linear size of the collapsed dimensions
166 */
167 size_t total_size_upper(size_t dimension) const
168 {
Moritz Pflanzer484e7b32017-08-09 11:43:18 +0100169 ARM_COMPUTE_ERROR_ON(dimension >= TensorShape::num_max_dimensions);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100170 return std::accumulate(_id.begin() + dimension, _id.end(), 1, std::multiplies<size_t>());
171 }
172
Moritz Pflanzer484e7b32017-08-09 11:43:18 +0100173 /** Compute size of dimensions lower than the given one.
174 *
175 * @param[in] dimension Upper boundary.
176 *
177 * @return The linear size of the collapsed dimensions.
178 */
179 size_t total_size_lower(size_t dimension) const
180 {
181 ARM_COMPUTE_ERROR_ON(dimension > TensorShape::num_max_dimensions);
182 return std::accumulate(_id.begin(), _id.begin() + dimension, 1, std::multiplies<size_t>());
183 }
184
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000185 /** If shapes are broadcast compatible, return the broadcasted shape.
186 *
187 * Two tensor shapes are broadcast compatible if for each dimension, they're equal or one of them is 1.
188 *
189 * If two shapes are compatible, each dimension in the broadcasted shape is the max of the original dimensions.
190 *
191 * @param[in] shapes Tensor shapes.
192 *
193 * @return The broadcasted shape or an empty shape if the shapes are not broadcast compatible.
194 */
195 template <typename... Shapes>
196 static TensorShape broadcast_shape(const Shapes &... shapes)
197 {
198 TensorShape bc_shape;
199
200 auto broadcast = [&bc_shape](const TensorShape & other)
201 {
202 if(bc_shape.num_dimensions() == 0)
203 {
204 bc_shape = other;
205 }
206 else if(other.num_dimensions() != 0)
207 {
208 for(size_t d = 0; d < TensorShape::num_max_dimensions; ++d)
209 {
210 const size_t dim_min = std::min(bc_shape[d], other[d]);
211 const size_t dim_max = std::max(bc_shape[d], other[d]);
212
213 if((dim_min != 1) && (dim_min != dim_max))
214 {
215 bc_shape = TensorShape{ 0U };
216 break;
217 }
218
219 bc_shape.set(d, dim_max);
220 }
221 }
222 };
223
224 utility::for_each(broadcast, shapes...);
225
226 return bc_shape;
227 }
228
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100229private:
230 /** Remove trailing dimensions of size 1 from the reported number of dimensions. */
231 void apply_dimension_correction()
232 {
Anthony Barbiera3b4ce22017-10-09 11:04:30 +0100233 for(int i = static_cast<int>(_num_dimensions) - 1; i > 0; --i)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100234 {
235 if(_id[i] == 1)
236 {
237 --_num_dimensions;
238 }
239 else
240 {
241 break;
242 }
243 }
244 }
245};
246}
247#endif /*__ARM_COMPUTE_TENSORSHAPE_H__*/