blob: b5663e63e433d61371d5f64db21b5b3d3012452c [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrou780db4e2017-11-23 09:49:51 +00002 * Copyright (c) 2016, 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 */
Jaroslaw Rzepecki0a878ae2017-11-22 17:16:39 +000024
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025#include "arm_compute/core/Utils.h"
26
27#include "arm_compute/core/FixedPoint.h"
28
Jaroslaw Rzepecki0a878ae2017-11-22 17:16:39 +000029#include "support/ToolchainSupport.h"
30
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include <algorithm>
32#include <cmath>
33#include <cstdint>
34#include <fstream>
35#include <map>
36#include <string>
37
38using namespace arm_compute;
39
40std::string arm_compute::build_information()
41{
42 static const std::string information =
43#include "arm_compute_version.embed"
44 ;
45 return information;
46}
47
48std::string arm_compute::read_file(const std::string &filename, bool binary)
49{
50 std::string out;
51 std::ifstream fs;
52
53 try
54 {
55 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
56 std::ios_base::openmode mode = std::ios::in;
57
58 if(binary)
59 {
60 mode |= std::ios::binary;
61 }
62
63 fs.open(filename, mode);
64
65 // Go to the end of the file
66 fs.seekg(0, std::ios::end);
67 // Reserve the memory required to store the file's content
68 out.reserve(fs.tellg());
69 // Go back to the beginning of the file
70 fs.seekg(0, std::ios::beg);
71 // Copy the content of the file
72 out.assign(std::istreambuf_iterator<char>(fs), std::istreambuf_iterator<char>());
73 }
74 catch(const std::ifstream::failure &e)
75 {
76 ARM_COMPUTE_ERROR("Accessing %s: %s", filename.c_str(), e.what());
77 }
78
79 return out;
80}
81
82const std::string &arm_compute::string_from_format(Format format)
83{
84 static std::map<Format, const std::string> formats_map =
85 {
86 { Format::UNKNOWN, "UNKNOWN" },
87 { Format::U8, "U8" },
88 { Format::S16, "S16" },
89 { Format::U16, "U16" },
90 { Format::S32, "S32" },
91 { Format::U32, "U32" },
92 { Format::F16, "F16" },
93 { Format::F32, "F32" },
94 { Format::UV88, "UV88" },
95 { Format::RGB888, "RGB888" },
96 { Format::RGBA8888, "RGBA8888" },
97 { Format::YUV444, "YUV444" },
98 { Format::YUYV422, "YUYV422" },
99 { Format::NV12, "NV12" },
100 { Format::NV21, "NV21" },
101 { Format::IYUV, "IYUV" },
102 { Format::UYVY422, "UYVY422" }
103 };
104
105 return formats_map[format];
106}
107
108const std::string &arm_compute::string_from_channel(Channel channel)
109{
110 static std::map<Channel, const std::string> channels_map =
111 {
112 { Channel::UNKNOWN, "UNKNOWN" },
113 { Channel::R, "R" },
114 { Channel::G, "G" },
115 { Channel::B, "B" },
116 { Channel::A, "A" },
117 { Channel::Y, "Y" },
118 { Channel::U, "U" },
119 { Channel::V, "V" },
120 { Channel::C0, "C0" },
121 { Channel::C1, "C1" },
122 { Channel::C2, "C2" },
123 { Channel::C3, "C3" }
124 };
125
126 return channels_map[channel];
127}
128
Michele Di Giorgiobf3c6622018-03-08 11:52:27 +0000129const std::string &arm_compute::string_from_data_layout(DataLayout dl)
130{
131 static std::map<DataLayout, const std::string> dl_map =
132 {
133 { DataLayout::UNKNOWN, "UNKNOWN" },
134 { DataLayout::NCHW, "NCHW" },
135 { DataLayout::NHWC, "NHWC" },
136 };
137
138 return dl_map[dl];
139}
140
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141const std::string &arm_compute::string_from_data_type(DataType dt)
142{
143 static std::map<DataType, const std::string> dt_map =
144 {
145 { DataType::UNKNOWN, "UNKNOWN" },
146 { DataType::S8, "S8" },
147 { DataType::U8, "U8" },
148 { DataType::QS8, "QS8" },
149 { DataType::S16, "S16" },
150 { DataType::U16, "U16" },
151 { DataType::QS16, "QS16" },
152 { DataType::S32, "S32" },
153 { DataType::U32, "U32" },
154 { DataType::S64, "S64" },
155 { DataType::U64, "U64" },
156 { DataType::F16, "F16" },
157 { DataType::F32, "F32" },
158 { DataType::F64, "F64" },
159 { DataType::SIZET, "SIZET" },
160 };
161
162 return dt_map[dt];
163}
164
165const std::string &arm_compute::string_from_activation_func(ActivationLayerInfo::ActivationFunction act)
166{
167 static std::map<ActivationLayerInfo::ActivationFunction, const std::string> act_map =
168 {
169 { ActivationLayerInfo::ActivationFunction::ABS, "ABS" },
170 { ActivationLayerInfo::ActivationFunction::LINEAR, "LINEAR" },
171 { ActivationLayerInfo::ActivationFunction::LOGISTIC, "LOGISTIC" },
172 { ActivationLayerInfo::ActivationFunction::RELU, "RELU" },
173 { ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, "BRELU" },
Georgios Pinitas64ebe5b2017-09-01 17:44:24 +0100174 { ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, "LU_BRELU" },
Georgios Pinitas579c0492017-07-12 16:12:12 +0100175 { ActivationLayerInfo::ActivationFunction::LEAKY_RELU, "LRELU" },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176 { ActivationLayerInfo::ActivationFunction::SOFT_RELU, "SRELU" },
177 { ActivationLayerInfo::ActivationFunction::SQRT, "SQRT" },
178 { ActivationLayerInfo::ActivationFunction::SQUARE, "SQUARE" },
179 { ActivationLayerInfo::ActivationFunction::TANH, "TANH" },
180 };
181
182 return act_map[act];
183}
184
185const std::string &arm_compute::string_from_matrix_pattern(MatrixPattern pattern)
186{
187 static std::map<MatrixPattern, const std::string> pattern_map =
188 {
189 { MatrixPattern::BOX, "BOX" },
190 { MatrixPattern::CROSS, "CROSS" },
191 { MatrixPattern::DISK, "DISK" },
192 { MatrixPattern::OTHER, "OTHER" },
193 };
194
195 return pattern_map[pattern];
196}
197
198const std::string &arm_compute::string_from_non_linear_filter_function(NonLinearFilterFunction function)
199{
200 static std::map<NonLinearFilterFunction, const std::string> func_map =
201 {
202 { NonLinearFilterFunction::MAX, "MAX" },
203 { NonLinearFilterFunction::MEDIAN, "MEDIAN" },
204 { NonLinearFilterFunction::MIN, "MIN" },
205 };
206
207 return func_map[function];
208}
209
210const std::string &arm_compute::string_from_interpolation_policy(InterpolationPolicy policy)
211{
212 static std::map<InterpolationPolicy, const std::string> interpolation_policy_map =
213 {
214 { InterpolationPolicy::AREA, "AREA" },
215 { InterpolationPolicy::BILINEAR, "BILINEAR" },
216 { InterpolationPolicy::NEAREST_NEIGHBOR, "NEAREST_NEIGHBOUR" },
217 };
218
219 return interpolation_policy_map[policy];
220}
221
222const std::string &arm_compute::string_from_border_mode(BorderMode border_mode)
223{
224 static std::map<BorderMode, const std::string> border_mode_map =
225 {
226 { BorderMode::UNDEFINED, "UNDEFINED" },
227 { BorderMode::CONSTANT, "CONSTANT" },
228 { BorderMode::REPLICATE, "REPLICATE" },
229 };
230
231 return border_mode_map[border_mode];
232}
233
234const std::string &arm_compute::string_from_norm_type(NormType type)
235{
236 static std::map<NormType, const std::string> norm_type_map =
237 {
238 { NormType::IN_MAP_1D, "IN_MAP_1D" },
239 { NormType::IN_MAP_2D, "IN_MAP_2D" },
240 { NormType::CROSS_MAP, "CROSS_MAP" },
241 };
242
243 return norm_type_map[type];
244}
245
Georgios Pinitascdf51452017-08-31 14:21:36 +0100246const std::string &arm_compute::string_from_pooling_type(PoolingType type)
247{
248 static std::map<PoolingType, const std::string> pool_type_map =
249 {
250 { PoolingType::MAX, "MAX" },
251 { PoolingType::AVG, "AVG" },
252 { PoolingType::L2, "L2" },
253 };
254
255 return pool_type_map[type];
256}
257
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100258std::string arm_compute::lower_string(const std::string &val)
259{
260 std::string res = val;
261 std::transform(res.begin(), res.end(), res.begin(), ::tolower);
262 return res;
263}
264
Georgios Pinitas4074c992018-01-30 18:13:46 +0000265PadStrideInfo arm_compute::calculate_same_pad(TensorShape input_shape, TensorShape weights_shape, PadStrideInfo conv_info)
266{
267 const auto &strides = conv_info.stride();
268 const int out_width = std::ceil(float(input_shape.x()) / float(strides.first));
269 const int out_height = std::ceil(float(input_shape.y()) / float(strides.second));
270 const int pad_width = ((out_width - 1) * strides.first + weights_shape.x() - input_shape.x());
271 const int pad_height = ((out_height - 1) * strides.second + weights_shape.y() - input_shape.y());
272 const int same_pad_left = pad_width / 2;
273 const int same_pad_top = pad_height / 2;
274 const int same_pad_right = pad_width - same_pad_left;
275 const int same_pad_bottom = pad_height - same_pad_top;
276
277 return PadStrideInfo(strides.first, strides.second, same_pad_left, same_pad_right, same_pad_top, same_pad_bottom, DimensionRoundingType::CEIL);
278}
279
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100280TensorShape arm_compute::deconvolution_output_shape(const std::pair<unsigned int, unsigned int> &out_dims, TensorShape input, TensorShape weights)
281{
282 TensorShape out_shape(input);
283 out_shape.set(0, out_dims.first);
284 out_shape.set(1, out_dims.second);
285 out_shape.set(2, weights[3]);
286 return out_shape;
287}
288
289const std::pair<unsigned int, unsigned int> arm_compute::deconvolution_output_dimensions(
290 unsigned int in_width, unsigned int in_height, unsigned int kernel_width, unsigned int kernel_height, unsigned int padx, unsigned int pady,
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000291 unsigned int inner_border_right, unsigned int inner_border_top, unsigned int stride_x, unsigned int stride_y)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100292{
293 ARM_COMPUTE_ERROR_ON(in_width < 1 || in_height < 1);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000294 ARM_COMPUTE_ERROR_ON(((in_width - 1) * stride_x + kernel_width + inner_border_right) < 2 * padx);
295 ARM_COMPUTE_ERROR_ON(((in_height - 1) * stride_y + kernel_height + inner_border_top) < 2 * pady);
296 const int padx_deconv = (kernel_width - padx - 1);
297 const int pady_deconv = (kernel_height - pady - 1);
298 ARM_COMPUTE_ERROR_ON(padx_deconv < 0);
299 ARM_COMPUTE_ERROR_ON(pady_deconv < 0);
300 const int w = stride_x * (in_width - 1) + kernel_width + inner_border_right - 2 * padx_deconv;
301 const int h = stride_y * (in_height - 1) + kernel_height + inner_border_top - 2 * pady_deconv;
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100302 return std::make_pair<unsigned int, unsigned int>(w, h);
303}
304
Gian Marco Iodice4e288692017-06-27 11:41:59 +0100305const std::pair<unsigned int, unsigned int> arm_compute::scaled_dimensions(unsigned int width, unsigned int height,
306 unsigned int kernel_width, unsigned int kernel_height,
Alex Gilday7da29b62018-03-23 14:16:00 +0000307 const PadStrideInfo &pad_stride_info,
308 const Size2D &dilation)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100309{
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +0100310 const unsigned int pad_left = pad_stride_info.pad_left();
311 const unsigned int pad_top = pad_stride_info.pad_top();
312 const unsigned int pad_right = pad_stride_info.pad_right();
313 const unsigned int pad_bottom = pad_stride_info.pad_bottom();
314 const unsigned int stride_x = pad_stride_info.stride().first;
315 const unsigned int stride_y = pad_stride_info.stride().second;
316 unsigned int w = 0;
317 unsigned int h = 0;
Gian Marco Iodice4e288692017-06-27 11:41:59 +0100318 switch(pad_stride_info.round())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100319 {
320 case DimensionRoundingType::FLOOR:
Alex Gilday7da29b62018-03-23 14:16:00 +0000321 w = static_cast<unsigned int>(std::floor((static_cast<float>(width + pad_left + pad_right - (dilation.x() * (kernel_width - 1) + 1)) / stride_x) + 1));
322 h = static_cast<unsigned int>(std::floor((static_cast<float>(height + pad_top + pad_bottom - (dilation.y() * (kernel_height - 1) + 1)) / stride_y) + 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100323 break;
324 case DimensionRoundingType::CEIL:
Alex Gilday7da29b62018-03-23 14:16:00 +0000325 w = static_cast<unsigned int>(std::ceil((static_cast<float>(width + pad_left + pad_right - (dilation.x() * (kernel_width - 1) + 1)) / stride_x) + 1));
326 h = static_cast<unsigned int>(std::ceil((static_cast<float>(height + pad_top + pad_bottom - (dilation.y() * (kernel_height - 1) + 1)) / stride_y) + 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100327 break;
328 default:
329 ARM_COMPUTE_ERROR("Unsupported rounding type");
330 }
331
332 // Make sure that border operations will start from inside the input and not the padded area
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +0100333 if(((w - 1) * stride_x) >= (width + pad_left))
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100334 {
335 --w;
336 }
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +0100337 if(((h - 1) * stride_y) >= (height + pad_top))
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100338 {
339 --h;
340 }
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +0100341 ARM_COMPUTE_ERROR_ON(((w - 1) * stride_x) >= (width + pad_left));
342 ARM_COMPUTE_ERROR_ON(((h - 1) * stride_y) >= (height + pad_top));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100343
344 return std::make_pair(w, h);
345}
346
347void arm_compute::print_consecutive_elements(std::ostream &s, DataType dt, const uint8_t *ptr, unsigned int n, int stream_width, const std::string &element_delim)
348{
349 switch(dt)
350 {
Georgios Pinitas55186712018-01-08 17:37:12 +0000351 case DataType::QASYMM8:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100352 case DataType::U8:
353 print_consecutive_elements_impl<uint8_t>(s, ptr, n, stream_width, element_delim);
354 break;
355 case DataType::QS8:
356 case DataType::S8:
357 print_consecutive_elements_impl<int8_t>(s, reinterpret_cast<const int8_t *>(ptr), n, stream_width, element_delim);
358 break;
359 case DataType::U16:
360 print_consecutive_elements_impl<uint16_t>(s, reinterpret_cast<const uint16_t *>(ptr), n, stream_width, element_delim);
361 break;
Georgios Pinitasccc65d42017-06-27 17:39:11 +0100362 case DataType::QS16:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100363 case DataType::S16:
364 print_consecutive_elements_impl<int16_t>(s, reinterpret_cast<const int16_t *>(ptr), n, stream_width, element_delim);
365 break;
366 case DataType::U32:
367 print_consecutive_elements_impl<uint32_t>(s, reinterpret_cast<const uint32_t *>(ptr), n, stream_width, element_delim);
368 break;
369 case DataType::S32:
370 print_consecutive_elements_impl<int32_t>(s, reinterpret_cast<const int32_t *>(ptr), n, stream_width, element_delim);
371 break;
372 case DataType::F32:
373 print_consecutive_elements_impl<float>(s, reinterpret_cast<const float *>(ptr), n, stream_width, element_delim);
374 break;
375 case DataType::F16:
Anthony Barbier7068f992017-10-26 15:23:08 +0100376 print_consecutive_elements_impl<half>(s, reinterpret_cast<const half *>(ptr), n, stream_width, element_delim);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100377 break;
378 default:
379 ARM_COMPUTE_ERROR("Undefined element size for given data type");
380 }
381}
382
383int arm_compute::max_consecutive_elements_display_width(std::ostream &s, DataType dt, const uint8_t *ptr, unsigned int n)
384{
385 switch(dt)
386 {
Georgios Pinitas55186712018-01-08 17:37:12 +0000387 case DataType::QASYMM8:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100388 case DataType::U8:
389 return max_consecutive_elements_display_width_impl<uint8_t>(s, ptr, n);
390 case DataType::QS8:
391 case DataType::S8:
392 return max_consecutive_elements_display_width_impl<int8_t>(s, reinterpret_cast<const int8_t *>(ptr), n);
393 case DataType::U16:
394 return max_consecutive_elements_display_width_impl<uint16_t>(s, reinterpret_cast<const uint16_t *>(ptr), n);
Georgios Pinitasccc65d42017-06-27 17:39:11 +0100395 case DataType::QS16:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100396 case DataType::S16:
397 return max_consecutive_elements_display_width_impl<int16_t>(s, reinterpret_cast<const int16_t *>(ptr), n);
398 case DataType::U32:
399 return max_consecutive_elements_display_width_impl<uint32_t>(s, reinterpret_cast<const uint32_t *>(ptr), n);
400 case DataType::S32:
401 return max_consecutive_elements_display_width_impl<int32_t>(s, reinterpret_cast<const int32_t *>(ptr), n);
402 case DataType::F32:
403 return max_consecutive_elements_display_width_impl<float>(s, reinterpret_cast<const float *>(ptr), n);
404 case DataType::F16:
Anthony Barbier7068f992017-10-26 15:23:08 +0100405 return max_consecutive_elements_display_width_impl<half>(s, reinterpret_cast<const half *>(ptr), n);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100406 default:
407 ARM_COMPUTE_ERROR("Undefined element size for given data type");
408 }
Georgios Pinitas3faea252017-10-30 14:13:50 +0000409 return 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100410}