blob: 44d819942e2336ca374a66f4fa036d0108cb42a7 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
giuros01edc21e42018-11-16 14:45:31 +00002 * Copyright (c) 2016-2019 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
Isabella Gottardi6a914402019-01-30 15:45:42 +000025#include "arm_compute/core/Helpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Isabella Gottardi6a914402019-01-30 15:45:42 +000027#include "arm_compute/core/Utils.h"
Jaroslaw Rzepecki0a878ae2017-11-22 17:16:39 +000028#include "support/ToolchainSupport.h"
29
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include <algorithm>
31#include <cmath>
32#include <cstdint>
33#include <fstream>
34#include <map>
35#include <string>
36
37using namespace arm_compute;
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +000038#ifndef DOXYGEN_SKIP_THIS
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039std::string arm_compute::build_information()
40{
41 static const std::string information =
42#include "arm_compute_version.embed"
43 ;
44 return information;
45}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +000046#endif /* DOXYGEN_SKIP_THIS */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047std::string arm_compute::read_file(const std::string &filename, bool binary)
48{
49 std::string out;
50 std::ifstream fs;
51
Michalis Spyrou323ce0f2018-11-30 16:30:43 +000052#ifndef ARM_COMPUTE_EXCEPTIONS_DISABLED
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 try
54 {
Michalis Spyrou323ce0f2018-11-30 16:30:43 +000055#endif /* ARM_COMPUTE_EXCEPTIONS_DISABLED */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
57 std::ios_base::openmode mode = std::ios::in;
58
59 if(binary)
60 {
61 mode |= std::ios::binary;
62 }
63
64 fs.open(filename, mode);
65
66 // Go to the end of the file
67 fs.seekg(0, std::ios::end);
68 // Reserve the memory required to store the file's content
69 out.reserve(fs.tellg());
70 // Go back to the beginning of the file
71 fs.seekg(0, std::ios::beg);
72 // Copy the content of the file
73 out.assign(std::istreambuf_iterator<char>(fs), std::istreambuf_iterator<char>());
Michalis Spyrou323ce0f2018-11-30 16:30:43 +000074#ifndef ARM_COMPUTE_EXCEPTIONS_DISABLED
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075 }
76 catch(const std::ifstream::failure &e)
77 {
78 ARM_COMPUTE_ERROR("Accessing %s: %s", filename.c_str(), e.what());
79 }
Michalis Spyrou323ce0f2018-11-30 16:30:43 +000080#endif /* ARM_COMPUTE_EXCEPTIONS_DISABLED */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
82 return out;
83}
84
85const std::string &arm_compute::string_from_format(Format format)
86{
87 static std::map<Format, const std::string> formats_map =
88 {
89 { Format::UNKNOWN, "UNKNOWN" },
90 { Format::U8, "U8" },
91 { Format::S16, "S16" },
92 { Format::U16, "U16" },
93 { Format::S32, "S32" },
94 { Format::U32, "U32" },
95 { Format::F16, "F16" },
96 { Format::F32, "F32" },
97 { Format::UV88, "UV88" },
98 { Format::RGB888, "RGB888" },
99 { Format::RGBA8888, "RGBA8888" },
100 { Format::YUV444, "YUV444" },
101 { Format::YUYV422, "YUYV422" },
102 { Format::NV12, "NV12" },
103 { Format::NV21, "NV21" },
104 { Format::IYUV, "IYUV" },
105 { Format::UYVY422, "UYVY422" }
106 };
107
108 return formats_map[format];
109}
110
111const std::string &arm_compute::string_from_channel(Channel channel)
112{
113 static std::map<Channel, const std::string> channels_map =
114 {
115 { Channel::UNKNOWN, "UNKNOWN" },
116 { Channel::R, "R" },
117 { Channel::G, "G" },
118 { Channel::B, "B" },
119 { Channel::A, "A" },
120 { Channel::Y, "Y" },
121 { Channel::U, "U" },
122 { Channel::V, "V" },
123 { Channel::C0, "C0" },
124 { Channel::C1, "C1" },
125 { Channel::C2, "C2" },
126 { Channel::C3, "C3" }
127 };
128
129 return channels_map[channel];
130}
131
Michele Di Giorgiobf3c6622018-03-08 11:52:27 +0000132const std::string &arm_compute::string_from_data_layout(DataLayout dl)
133{
134 static std::map<DataLayout, const std::string> dl_map =
135 {
136 { DataLayout::UNKNOWN, "UNKNOWN" },
137 { DataLayout::NCHW, "NCHW" },
138 { DataLayout::NHWC, "NHWC" },
139 };
140
141 return dl_map[dl];
142}
143
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144const std::string &arm_compute::string_from_data_type(DataType dt)
145{
146 static std::map<DataType, const std::string> dt_map =
147 {
148 { DataType::UNKNOWN, "UNKNOWN" },
149 { DataType::S8, "S8" },
150 { DataType::U8, "U8" },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 { DataType::S16, "S16" },
152 { DataType::U16, "U16" },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153 { DataType::S32, "S32" },
154 { DataType::U32, "U32" },
155 { DataType::S64, "S64" },
156 { DataType::U64, "U64" },
157 { DataType::F16, "F16" },
158 { DataType::F32, "F32" },
159 { DataType::F64, "F64" },
160 { DataType::SIZET, "SIZET" },
Isabella Gottardi01a214a2018-04-09 16:00:52 +0100161 { DataType::QASYMM8, "QASYMM8" },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162 };
163
164 return dt_map[dt];
165}
166
167const std::string &arm_compute::string_from_activation_func(ActivationLayerInfo::ActivationFunction act)
168{
169 static std::map<ActivationLayerInfo::ActivationFunction, const std::string> act_map =
170 {
171 { ActivationLayerInfo::ActivationFunction::ABS, "ABS" },
172 { ActivationLayerInfo::ActivationFunction::LINEAR, "LINEAR" },
173 { ActivationLayerInfo::ActivationFunction::LOGISTIC, "LOGISTIC" },
174 { ActivationLayerInfo::ActivationFunction::RELU, "RELU" },
175 { ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, "BRELU" },
Georgios Pinitas64ebe5b2017-09-01 17:44:24 +0100176 { ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, "LU_BRELU" },
Georgios Pinitas579c0492017-07-12 16:12:12 +0100177 { ActivationLayerInfo::ActivationFunction::LEAKY_RELU, "LRELU" },
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 { ActivationLayerInfo::ActivationFunction::SOFT_RELU, "SRELU" },
179 { ActivationLayerInfo::ActivationFunction::SQRT, "SQRT" },
180 { ActivationLayerInfo::ActivationFunction::SQUARE, "SQUARE" },
181 { ActivationLayerInfo::ActivationFunction::TANH, "TANH" },
182 };
183
184 return act_map[act];
185}
186
187const std::string &arm_compute::string_from_matrix_pattern(MatrixPattern pattern)
188{
189 static std::map<MatrixPattern, const std::string> pattern_map =
190 {
191 { MatrixPattern::BOX, "BOX" },
192 { MatrixPattern::CROSS, "CROSS" },
193 { MatrixPattern::DISK, "DISK" },
194 { MatrixPattern::OTHER, "OTHER" },
195 };
196
197 return pattern_map[pattern];
198}
199
200const std::string &arm_compute::string_from_non_linear_filter_function(NonLinearFilterFunction function)
201{
202 static std::map<NonLinearFilterFunction, const std::string> func_map =
203 {
204 { NonLinearFilterFunction::MAX, "MAX" },
205 { NonLinearFilterFunction::MEDIAN, "MEDIAN" },
206 { NonLinearFilterFunction::MIN, "MIN" },
207 };
208
209 return func_map[function];
210}
211
212const std::string &arm_compute::string_from_interpolation_policy(InterpolationPolicy policy)
213{
214 static std::map<InterpolationPolicy, const std::string> interpolation_policy_map =
215 {
216 { InterpolationPolicy::AREA, "AREA" },
217 { InterpolationPolicy::BILINEAR, "BILINEAR" },
218 { InterpolationPolicy::NEAREST_NEIGHBOR, "NEAREST_NEIGHBOUR" },
219 };
220
221 return interpolation_policy_map[policy];
222}
223
224const std::string &arm_compute::string_from_border_mode(BorderMode border_mode)
225{
226 static std::map<BorderMode, const std::string> border_mode_map =
227 {
228 { BorderMode::UNDEFINED, "UNDEFINED" },
229 { BorderMode::CONSTANT, "CONSTANT" },
230 { BorderMode::REPLICATE, "REPLICATE" },
231 };
232
233 return border_mode_map[border_mode];
234}
235
236const std::string &arm_compute::string_from_norm_type(NormType type)
237{
238 static std::map<NormType, const std::string> norm_type_map =
239 {
240 { NormType::IN_MAP_1D, "IN_MAP_1D" },
241 { NormType::IN_MAP_2D, "IN_MAP_2D" },
242 { NormType::CROSS_MAP, "CROSS_MAP" },
243 };
244
245 return norm_type_map[type];
246}
247
Georgios Pinitascdf51452017-08-31 14:21:36 +0100248const std::string &arm_compute::string_from_pooling_type(PoolingType type)
249{
250 static std::map<PoolingType, const std::string> pool_type_map =
251 {
252 { PoolingType::MAX, "MAX" },
253 { PoolingType::AVG, "AVG" },
254 { PoolingType::L2, "L2" },
255 };
256
257 return pool_type_map[type];
258}
259
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100260const std::string &arm_compute::string_from_gemmlowp_output_stage(GEMMLowpOutputStageType output_stage)
261{
262 static std::map<GEMMLowpOutputStageType, const std::string> output_stage_map =
263 {
264 { GEMMLowpOutputStageType::NONE, "" },
265 { GEMMLowpOutputStageType::QUANTIZE_DOWN, "quantize_down" },
266 { GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT, "quantize_down_fixedpoint" },
267 { GEMMLowpOutputStageType::QUANTIZE_DOWN_FLOAT, "quantize_down_float" }
268 };
269
270 return output_stage_map[output_stage];
271}
272
Giuseppe Rossinid7647d42018-07-17 18:13:13 +0100273std::string arm_compute::string_from_pixel_value(const PixelValue &value, const DataType data_type)
274{
275 std::stringstream ss;
276 std::string converted_string;
277
278 switch(data_type)
279 {
280 case DataType::U8:
281 case DataType::QASYMM8:
282 // Needs conversion to 32 bit, otherwise interpreted as ASCII values
283 ss << uint32_t(value.get<uint8_t>());
284 converted_string = ss.str();
285 break;
286 case DataType::S8:
287 // Needs conversion to 32 bit, otherwise interpreted as ASCII values
288 ss << int32_t(value.get<int8_t>());
289 converted_string = ss.str();
290 break;
291 case DataType::U16:
292 ss << value.get<uint16_t>();
293 converted_string = ss.str();
294 break;
295 case DataType::S16:
296 ss << value.get<int16_t>();
297 converted_string = ss.str();
298 break;
299 case DataType::U32:
300 ss << value.get<uint32_t>();
301 converted_string = ss.str();
302 break;
303 case DataType::S32:
304 ss << value.get<int32_t>();
305 converted_string = ss.str();
306 break;
307 case DataType::F32:
308 converted_string = float_to_string_with_full_precision(value.get<float>());
309 break;
310 case DataType::F16:
311 static_assert(sizeof(half) == 2, "Half must be 16 bit");
312 ss << value.get<half>();
313 converted_string = ss.str();
314 break;
315 default:
316 ARM_COMPUTE_ERROR("Not handled");
317 }
318
319 return converted_string;
320}
321
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100322std::string arm_compute::lower_string(const std::string &val)
323{
324 std::string res = val;
325 std::transform(res.begin(), res.end(), res.begin(), ::tolower);
326 return res;
327}
328
Isabella Gottardi6a914402019-01-30 15:45:42 +0000329PadStrideInfo arm_compute::calculate_same_pad(TensorShape input_shape, TensorShape weights_shape, PadStrideInfo conv_info, DataLayout data_layout)
Georgios Pinitas4074c992018-01-30 18:13:46 +0000330{
Isabella Gottardi6a914402019-01-30 15:45:42 +0000331 const unsigned int width_idx = arm_compute::get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
332 const unsigned int height_idx = arm_compute::get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
333 const auto &strides = conv_info.stride();
334 const int out_width = std::ceil(float(input_shape[width_idx]) / float(strides.first));
335 const int out_height = std::ceil(float(input_shape[height_idx]) / float(strides.second));
336 const int pad_width = ((out_width - 1) * strides.first + weights_shape[width_idx] - input_shape[width_idx]);
337 const int pad_height = ((out_height - 1) * strides.second + weights_shape[height_idx] - input_shape[height_idx]);
338 const int same_pad_left = pad_width / 2;
339 const int same_pad_top = pad_height / 2;
340 const int same_pad_right = pad_width - same_pad_left;
341 const int same_pad_bottom = pad_height - same_pad_top;
Georgios Pinitas4074c992018-01-30 18:13:46 +0000342
343 return PadStrideInfo(strides.first, strides.second, same_pad_left, same_pad_right, same_pad_top, same_pad_bottom, DimensionRoundingType::CEIL);
344}
345
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100346const std::pair<unsigned int, unsigned int> arm_compute::deconvolution_output_dimensions(
347 unsigned int in_width, unsigned int in_height, unsigned int kernel_width, unsigned int kernel_height, unsigned int padx, unsigned int pady,
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100348 unsigned int stride_x, unsigned int stride_y)
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100349{
350 ARM_COMPUTE_ERROR_ON(in_width < 1 || in_height < 1);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100351 ARM_COMPUTE_ERROR_ON(((in_width - 1) * stride_x + kernel_width) < 2 * padx);
352 ARM_COMPUTE_ERROR_ON(((in_height - 1) * stride_y + kernel_height) < 2 * pady);
353 const int w = stride_x * (in_width - 1) + kernel_width - 2 * padx;
354 const int h = stride_y * (in_height - 1) + kernel_height - 2 * pady;
355
Pablo Tellof5f34bb2017-08-22 13:34:13 +0100356 return std::make_pair<unsigned int, unsigned int>(w, h);
357}
358
Gian Marco Iodice4e288692017-06-27 11:41:59 +0100359const std::pair<unsigned int, unsigned int> arm_compute::scaled_dimensions(unsigned int width, unsigned int height,
360 unsigned int kernel_width, unsigned int kernel_height,
Alex Gilday7da29b62018-03-23 14:16:00 +0000361 const PadStrideInfo &pad_stride_info,
362 const Size2D &dilation)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100363{
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +0100364 const unsigned int pad_left = pad_stride_info.pad_left();
365 const unsigned int pad_top = pad_stride_info.pad_top();
366 const unsigned int pad_right = pad_stride_info.pad_right();
367 const unsigned int pad_bottom = pad_stride_info.pad_bottom();
368 const unsigned int stride_x = pad_stride_info.stride().first;
369 const unsigned int stride_y = pad_stride_info.stride().second;
370 unsigned int w = 0;
371 unsigned int h = 0;
Gian Marco Iodice4e288692017-06-27 11:41:59 +0100372 switch(pad_stride_info.round())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100373 {
374 case DimensionRoundingType::FLOOR:
Alex Gilday7da29b62018-03-23 14:16:00 +0000375 w = static_cast<unsigned int>(std::floor((static_cast<float>(width + pad_left + pad_right - (dilation.x() * (kernel_width - 1) + 1)) / stride_x) + 1));
376 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 +0100377 break;
378 case DimensionRoundingType::CEIL:
Alex Gilday7da29b62018-03-23 14:16:00 +0000379 w = static_cast<unsigned int>(std::ceil((static_cast<float>(width + pad_left + pad_right - (dilation.x() * (kernel_width - 1) + 1)) / stride_x) + 1));
380 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 +0100381 break;
382 default:
383 ARM_COMPUTE_ERROR("Unsupported rounding type");
384 }
385
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100386 return std::make_pair(w, h);
387}
388
giuros01edc21e42018-11-16 14:45:31 +0000389#ifdef ARM_COMPUTE_ASSERTS_ENABLED
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100390void 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)
391{
392 switch(dt)
393 {
Georgios Pinitas55186712018-01-08 17:37:12 +0000394 case DataType::QASYMM8:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100395 case DataType::U8:
396 print_consecutive_elements_impl<uint8_t>(s, ptr, n, stream_width, element_delim);
397 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100398 case DataType::S8:
399 print_consecutive_elements_impl<int8_t>(s, reinterpret_cast<const int8_t *>(ptr), n, stream_width, element_delim);
400 break;
401 case DataType::U16:
402 print_consecutive_elements_impl<uint16_t>(s, reinterpret_cast<const uint16_t *>(ptr), n, stream_width, element_delim);
403 break;
404 case DataType::S16:
405 print_consecutive_elements_impl<int16_t>(s, reinterpret_cast<const int16_t *>(ptr), n, stream_width, element_delim);
406 break;
407 case DataType::U32:
408 print_consecutive_elements_impl<uint32_t>(s, reinterpret_cast<const uint32_t *>(ptr), n, stream_width, element_delim);
409 break;
410 case DataType::S32:
411 print_consecutive_elements_impl<int32_t>(s, reinterpret_cast<const int32_t *>(ptr), n, stream_width, element_delim);
412 break;
413 case DataType::F32:
414 print_consecutive_elements_impl<float>(s, reinterpret_cast<const float *>(ptr), n, stream_width, element_delim);
415 break;
416 case DataType::F16:
Anthony Barbier7068f992017-10-26 15:23:08 +0100417 print_consecutive_elements_impl<half>(s, reinterpret_cast<const half *>(ptr), n, stream_width, element_delim);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100418 break;
419 default:
420 ARM_COMPUTE_ERROR("Undefined element size for given data type");
421 }
422}
423
424int arm_compute::max_consecutive_elements_display_width(std::ostream &s, DataType dt, const uint8_t *ptr, unsigned int n)
425{
426 switch(dt)
427 {
Georgios Pinitas55186712018-01-08 17:37:12 +0000428 case DataType::QASYMM8:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100429 case DataType::U8:
430 return max_consecutive_elements_display_width_impl<uint8_t>(s, ptr, n);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100431 case DataType::S8:
432 return max_consecutive_elements_display_width_impl<int8_t>(s, reinterpret_cast<const int8_t *>(ptr), n);
433 case DataType::U16:
434 return max_consecutive_elements_display_width_impl<uint16_t>(s, reinterpret_cast<const uint16_t *>(ptr), n);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100435 case DataType::S16:
436 return max_consecutive_elements_display_width_impl<int16_t>(s, reinterpret_cast<const int16_t *>(ptr), n);
437 case DataType::U32:
438 return max_consecutive_elements_display_width_impl<uint32_t>(s, reinterpret_cast<const uint32_t *>(ptr), n);
439 case DataType::S32:
440 return max_consecutive_elements_display_width_impl<int32_t>(s, reinterpret_cast<const int32_t *>(ptr), n);
441 case DataType::F32:
442 return max_consecutive_elements_display_width_impl<float>(s, reinterpret_cast<const float *>(ptr), n);
443 case DataType::F16:
Anthony Barbier7068f992017-10-26 15:23:08 +0100444 return max_consecutive_elements_display_width_impl<half>(s, reinterpret_cast<const half *>(ptr), n);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100445 default:
446 ARM_COMPUTE_ERROR("Undefined element size for given data type");
447 }
Georgios Pinitas3faea252017-10-30 14:13:50 +0000448 return 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100449}
giuros01edc21e42018-11-16 14:45:31 +0000450#endif /* ARM_COMPUTE_ASSERTS_ENABLED */