blob: ab05fbf5e46cadbd59d58d6692cc7e5b51c59e85 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +00002 * Copyright (c) 2017-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_IACCESS_WINDOW_H__
25#define __ARM_COMPUTE_IACCESS_WINDOW_H__
26
27#include "arm_compute/core/Coordinates.h"
28#include "arm_compute/core/TensorShape.h"
29#include "arm_compute/core/Types.h"
30
31#include <array>
32
33namespace arm_compute
34{
35class Window;
36class ITensorInfo;
37
38/** Decrease @p required in steps of @p step until it's less than @p available.
39 *
40 * @param[in] required Number of required bytes.
41 * @param[in] available Number of available bytes.
42 * @param[in] step Step size used to decrease required bytes.
43 *
44 * @return Largest value smaller than @p available that is a multiple of @p step
45 *
46 **/
47inline int adjust_down(int required, int available, int step)
48{
49 ARM_COMPUTE_ERROR_ON(step <= 0);
50
51 return required - step * ((required - available + step - 1) / step);
52}
53
54/** Increase @p required in steps of @p step until it's greater than @p available.
55 *
56 * @param[in] required Number of required bytes.
57 * @param[in] available Number of available bytes.
58 * @param[in] step Step size used to increase required bytes.
59 *
60 * @return Largest value smaller than @p available that is a multiple of @p step
61 *
62 **/
63inline int adjust_up(int required, int available, int step)
64{
65 ARM_COMPUTE_ERROR_ON(step <= 0);
66
67 return required + step * ((available - required + step - 1) / step);
68}
69
70/** Interface describing methods to update access window and padding based on kernel parameters. */
71class IAccessWindow
72{
73public:
Alex Gildayc357c472018-03-21 13:54:09 +000074 /** Default virtual destructor */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075 virtual ~IAccessWindow() = default;
76 /** Shrink the window if padding is not large enough.
77 *
78 * @param[in] window Window used by the kernel.
79 *
80 * @return True if the window has been changed.
Alex Gildayc357c472018-03-21 13:54:09 +000081 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082 */
83 virtual bool update_window_if_needed(Window &window) const = 0;
84 /** Increase the padding to be large enough for the window.
85 *
86 * @param[in] window Window used by the kernel.
87 *
88 * @return True if the padding has been changed.
89 */
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000090 virtual bool update_padding_if_needed(const Window &window) = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091 /** Compute the valid region based on access pattern and valid region of the inputs.
92 *
93 * @note This method assumes that there is no border.
94 *
95 * @param[in] window Execution window of the kernel.
96 * @param[in] input_valid_region Combined valid region of all inputs.
97 * @param[in] border_undefined Undefined borders are excluded from the valid region.
98 * @param[in] border_size Size of the border around the XY-plane of the tensor.
Alex Gildayc357c472018-03-21 13:54:09 +000099 *
100 * @return a valid region.
101 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102 */
103 virtual ValidRegion compute_valid_region(const Window &window, ValidRegion input_valid_region, bool border_undefined, BorderSize border_size) const = 0;
104};
105
106/** Implementation of a rectangular access pattern. */
107class AccessWindowRectangle : public IAccessWindow
108{
109public:
110 /** Constructor for a rectangular access pattern.
111 *
112 * @note Width and height have to be non-negative.
113 *
114 * @param[in,out] info Tensor info of the accessed kernel.
115 * @param[in] x Offset of the access in X direction.
116 * @param[in] y Offset of the access in Y direction.
117 * @param[in] width Number of elements that are accessed in X direction.
118 * @param[in] height Number of elements that are accessed in Y direction.
119 */
120 AccessWindowRectangle(ITensorInfo *info, int x, int y, int width, int height)
121 : AccessWindowRectangle(info, x, y, width, height, 1.f, 1.f)
122 {
123 }
124
125 /** Constructor for a rectangular access pattern.
126 *
127 * @note Width, height and scale have to be non-negative.
128 *
129 * @param[in,out] info Tensor info of the accessed kernel.
130 * @param[in] x Offset of the access in X direction.
131 * @param[in] y Offset of the access in Y direction.
132 * @param[in] width Number of elements that are accessed in X direction.
133 * @param[in] height Number of elements that are accessed in Y direction.
134 * @param[in] scale_x Ratio along the X direction between the window used by the execute_window_loop and the rectangular access pattern defined
135 * @param[in] scale_y Ratio along the Y direction between the window used by the execute_window_loop and the rectangular access pattern defined
136 */
137 AccessWindowRectangle(ITensorInfo *info, int x, int y, int width, int height, float scale_x, float scale_y)
138 : _info(info), _x(x), _y(y), _width(width), _height(height), _scale_x(scale_x), _scale_y(scale_y)
139 {
140 ARM_COMPUTE_ERROR_ON(width < 0);
141 ARM_COMPUTE_ERROR_ON(height < 0);
142 ARM_COMPUTE_ERROR_ON(scale_x < 0);
143 ARM_COMPUTE_ERROR_ON(scale_y < 0);
144 }
145
Alex Gildayc357c472018-03-21 13:54:09 +0000146 /** Prevent instances of this class from being copied (As this class contains pointers) */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147 AccessWindowRectangle(const AccessWindowRectangle &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +0000148 /** Allow instances of this class to be move constructed */
149 AccessWindowRectangle(AccessWindowRectangle &&) = default;
150 /** Prevent instances of this class from being copied (As this class contains pointers) */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 AccessWindowRectangle &operator=(const AccessWindowRectangle &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +0000152 /** Allow instances of this class to be moved */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153 AccessWindowRectangle &operator=(AccessWindowRectangle &&) = default;
Alex Gildayc357c472018-03-21 13:54:09 +0000154 /** Default destructor */
155 ~AccessWindowRectangle() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100156
157 /** Set the valid region based on access pattern, valid region of the inputs and border mode.
158 *
159 * @param[in] window Execution window of the kernel.
160 * @param[in] input_valid_region Combined valid region of all inputs.
161 * @param[in] border_undefined (Optional) Undefined borders are excluded from the valid region.
162 * @param[in] border_size (Optional) Size of the border around the XY-plane of the tensor.
163 */
164 void set_valid_region(const Window &window, const ValidRegion &input_valid_region, bool border_undefined = false, const BorderSize &border_size = BorderSize(0));
165
166 /** Compute the valid region based on access pattern, valid region of the inputs and border mode.
167 *
168 * @note This method assumes that there is no border.
169 *
170 * @param[in] window Execution window of the kernel.
171 * @param[in] input_valid_region Combined valid region of all inputs.
Alex Gildayc357c472018-03-21 13:54:09 +0000172 *
173 * @return a valid region.
174 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175 */
176 ValidRegion compute_valid_region(const Window &window, const ValidRegion &input_valid_region) const;
177
178 // Inherited methods overridden:
179
Alex Gildayc357c472018-03-21 13:54:09 +0000180 /** Compute the valid region based on access pattern and valid region of the inputs.
181 *
182 * @note This method assumes that all elements written by the kernel are valid.
183 *
184 * @param[in] window Execution window of the kernel.
185 * @param[in] input_valid_region Combined valid region of all inputs.
186 * @param[in] border_undefined Undefined borders are excluded from the valid region.
187 * @param[in] border_size Size of the border around the XY-plane of the tensor.
188 *
189 * @return a valid region.
190 *
191 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100192 ValidRegion compute_valid_region(const Window &window, ValidRegion input_valid_region, bool border_undefined, BorderSize border_size) const override;
193
194 bool update_window_if_needed(Window &window) const override;
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000195 bool update_padding_if_needed(const Window &window) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100196
197protected:
198 ITensorInfo *_info;
199 int _x;
200 int _y;
201 int _width;
202 int _height;
203 float _scale_x;
204 float _scale_y;
205};
206
207/** Implementation of a column access pattern. */
208class AccessWindowVertical : public AccessWindowRectangle
209{
210public:
211 /** Constructor for a column access pattern.
212 *
213 * @note Height has to be non-negative.
214 *
215 * @param[in,out] info Tensor info of the accessed kernel.
216 * @param[in] y Offset of the access in Y direction.
217 * @param[in] height Number of elements that are accessed in Y direction.
218 * @param[in] scale_y Ratio along the Y direction between the window used by the execute_window_loop and the rectangular access pattern defined
219 */
220 AccessWindowVertical(ITensorInfo *info, int y, int height, float scale_y = 1.f)
221 : AccessWindowRectangle(info, 0, y, 1, height, 1.f, scale_y)
222 {
223 ARM_COMPUTE_ERROR_ON(height < 0);
224 ARM_COMPUTE_ERROR_ON(scale_y < 0);
225 }
226};
227
228/** Implementation of a row access pattern. */
229class AccessWindowHorizontal : public AccessWindowRectangle
230{
231public:
232 /** Constructor for a row access pattern.
233 *
234 * @note Width has to be non-negative.
235 *
236 * @param[in,out] info Tensor info of the accessed kernel.
237 * @param[in] x Offset of the access in X direction.
238 * @param[in] width Number of elements that are accessed in X direction.
239 * @param[in] scale_x Ratio along the X direction between the window used by the execute_window_loop and the rectangular access pattern defined
240 */
241 AccessWindowHorizontal(ITensorInfo *info, int x, int width, float scale_x = 1.f)
242 : AccessWindowRectangle(info, x, 0, width, 1, scale_x, 1.f)
243 {
244 ARM_COMPUTE_ERROR_ON(width < 0);
245 ARM_COMPUTE_ERROR_ON(scale_x < 0);
246 }
247};
248} // namespace arm_compute
249#endif /*__ARM_COMPUTE_IACCESS_WINDOW_H__*/