blob: 7380ad79098ed39f990fe5200c89b28491dba645 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-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 */
24#include "Utils.h"
25
Pablo Tellocf9c8432019-07-22 17:36:03 +010026#ifdef ARM_COMPUTE_CL
Pablo Tellodb8485a2019-09-24 11:03:47 +010027#include "arm_compute/core/CL/CLKernelLibrary.h"
Pablo Tellodb9116f2019-07-11 16:50:37 +010028#include "arm_compute/runtime/CL/CLScheduler.h"
Pablo Tellocf9c8432019-07-22 17:36:03 +010029#endif /* ARM_COMPUTE_CL */
Pablo Tellodb9116f2019-07-11 16:50:37 +010030
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include <cctype>
32#include <cerrno>
33#include <iomanip>
34#include <string>
35
Anthony Barbier1c28ab42018-08-29 11:22:33 +010036#pragma GCC diagnostic push
37#pragma GCC diagnostic ignored "-Wswitch-default"
Michalis Spyrou6bff1952019-10-02 17:22:11 +010038#pragma GCC diagnostic ignored "-Wunused-parameter"
Michalis Spyroufae513c2019-10-16 17:41:33 +010039#pragma GCC diagnostic ignored "-Wstrict-overflow"
Manuel Bottini827817e2020-11-19 12:12:06 +000040#if (defined(__GNUC__) && (__GNUC__ >= 7))
41#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
42#endif // (defined(__GNUC__) && (__GNUC__ >= 7))
43#if defined(__clang__)
44#pragma GCC diagnostic ignored "-Wparentheses-equality"
45#endif // defined(__clang__)
Anthony Barbier1c28ab42018-08-29 11:22:33 +010046#define STB_IMAGE_IMPLEMENTATION
47#include "stb/stb_image.h"
48#pragma GCC diagnostic pop
49
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050namespace arm_compute
51{
52namespace utils
53{
54namespace
55{
56/* Advance the iterator to the first character which is not a comment
57 *
58 * @param[in,out] fs Stream to drop comments from
59 */
60void discard_comments(std::ifstream &fs)
61{
62 while(fs.peek() == '#')
63 {
64 fs.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
65 }
66}
67
68/* Advance the string iterator to the next character which is neither a space or a comment
69 *
70 * @param[in,out] fs Stream to drop comments from
71 */
72void discard_comments_and_spaces(std::ifstream &fs)
73{
74 while(true)
75 {
76 discard_comments(fs);
77
78 if(isspace(fs.peek()) == 0)
79 {
80 break;
81 }
82
83 fs.ignore(1);
84 }
85}
86} // namespace
87
Anthony Barbier6db0ff52018-01-05 10:59:12 +000088#ifndef BENCHMARK_EXAMPLES
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010089int run_example(int argc, char **argv, std::unique_ptr<Example> example)
Anthony Barbier6db0ff52018-01-05 10:59:12 +000090{
91 std::cout << "\n"
92 << argv[0] << "\n\n";
93
94 try
95 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010096 bool status = example->do_setup(argc, argv);
97 if(!status)
98 {
99 return 1;
100 }
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100101 example->do_run();
102 example->do_teardown();
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000103
104 std::cout << "\nTest passed\n";
105 return 0;
106 }
107#ifdef ARM_COMPUTE_CL
108 catch(cl::Error &err)
109 {
110 std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
111 std::cerr << std::endl
112 << "ERROR " << err.what() << "(" << err.err() << ")" << std::endl;
113 std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
114 }
115#endif /* ARM_COMPUTE_CL */
116 catch(std::runtime_error &err)
117 {
118 std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
119 std::cerr << std::endl
120 << "ERROR " << err.what() << " " << (errno ? strerror(errno) : "") << std::endl;
121 std::cerr << "!!!!!!!!!!!!!!!!!!!!!!!!!!!" << std::endl;
122 }
123
124 std::cout << "\nTest FAILED\n";
125
126 return -1;
127}
128#endif /* BENCHMARK_EXAMPLES */
129
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130void draw_detection_rectangle(ITensor *tensor, const DetectionWindow &rect, uint8_t r, uint8_t g, uint8_t b)
131{
132 ARM_COMPUTE_ERROR_ON_FORMAT_NOT_IN(tensor, Format::RGB888);
133
134 uint8_t *top = tensor->info()->offset_element_in_bytes(Coordinates(rect.x, rect.y)) + tensor->buffer();
135 uint8_t *bottom = tensor->info()->offset_element_in_bytes(Coordinates(rect.x, rect.y + rect.height)) + tensor->buffer();
136 uint8_t *left = top;
137 uint8_t *right = tensor->info()->offset_element_in_bytes(Coordinates(rect.x + rect.width, rect.y)) + tensor->buffer();
138 size_t stride = tensor->info()->strides_in_bytes()[Window::DimY];
139
140 for(size_t x = 0; x < rect.width; ++x)
141 {
142 top[0] = r;
143 top[1] = g;
144 top[2] = b;
145 bottom[0] = r;
146 bottom[1] = g;
147 bottom[2] = b;
148
149 top += 3;
150 bottom += 3;
151 }
152
153 for(size_t y = 0; y < rect.height; ++y)
154 {
155 left[0] = r;
156 left[1] = g;
157 left[2] = b;
158 right[0] = r;
159 right[1] = g;
160 right[2] = b;
161
162 left += stride;
163 right += stride;
164 }
165}
166
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100167ImageType get_image_type_from_file(const std::string &filename)
168{
169 ImageType type = ImageType::UNKNOWN;
170
171 try
172 {
173 // Open file
174 std::ifstream fs;
175 fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
176 fs.open(filename, std::ios::in | std::ios::binary);
177
178 // Identify type from magic number
179 std::array<unsigned char, 2> magic_number{ { 0 } };
180 fs >> magic_number[0] >> magic_number[1];
181
182 // PPM check
183 if(static_cast<char>(magic_number[0]) == 'P' && static_cast<char>(magic_number[1]) == '6')
184 {
185 type = ImageType::PPM;
186 }
187 else if(magic_number[0] == 0xFF && magic_number[1] == 0xD8)
188 {
189 type = ImageType::JPEG;
190 }
191
192 fs.close();
193 }
194 catch(std::runtime_error &e)
195 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100196 ARM_COMPUTE_ERROR_VAR("Accessing %s: %s", filename.c_str(), e.what());
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100197 }
198
199 return type;
200}
201
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202std::tuple<unsigned int, unsigned int, int> parse_ppm_header(std::ifstream &fs)
203{
204 // Check the PPM magic number is valid
205 std::array<char, 2> magic_number{ { 0 } };
206 fs >> magic_number[0] >> magic_number[1];
207 ARM_COMPUTE_ERROR_ON_MSG(magic_number[0] != 'P' || magic_number[1] != '6', "Invalid file type");
208 ARM_COMPUTE_UNUSED(magic_number);
209
210 discard_comments_and_spaces(fs);
211
212 unsigned int width = 0;
213 fs >> width;
214
215 discard_comments_and_spaces(fs);
216
217 unsigned int height = 0;
218 fs >> height;
219
220 discard_comments_and_spaces(fs);
221
222 int max_val = 0;
223 fs >> max_val;
224
225 discard_comments(fs);
226
227 ARM_COMPUTE_ERROR_ON_MSG(isspace(fs.peek()) == 0, "Invalid PPM header");
228 fs.ignore(1);
229
230 return std::make_tuple(width, height, max_val);
231}
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100232
233std::tuple<std::vector<unsigned long>, bool, std::string> parse_npy_header(std::ifstream &fs) //NOLINT
234{
235 std::vector<unsigned long> shape; // NOLINT
236
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100237 // Read header
Anthony Barbier87f21cd2017-11-10 16:27:32 +0000238 std::string header = npy::read_header(fs);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100239
240 // Parse header
241 bool fortran_order = false;
242 std::string typestr;
Anthony Barbier87f21cd2017-11-10 16:27:32 +0000243 npy::parse_header(header, typestr, fortran_order, shape);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100244
Michalis Spyrou39412952018-08-14 17:06:16 +0100245 std::reverse(shape.begin(), shape.end());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100246
247 return std::make_tuple(shape, fortran_order, typestr);
248}
Gian Marco5ca74092018-02-08 16:21:54 +0000249
250/** This function returns the amount of memory free reading from /proc/meminfo
251 *
252 * @return The free memory in kB
253 */
254uint64_t get_mem_free_from_meminfo()
255{
256 std::string line_attribute;
257 std::ifstream file_meminfo("/proc/meminfo");
258
259 if(file_meminfo.is_open())
260 {
261 while(!(file_meminfo >> line_attribute).fail())
262 {
263 //Test if is the line containing MemFree
264 if(line_attribute == "MemFree:")
265 {
266 uint64_t mem_available;
267 if(!(file_meminfo >> mem_available).fail())
268 {
269 return mem_available;
270 }
271 else
272 {
273 return 0;
274 }
275 }
276 // if it's not MemFree ignore rest of the line
277 file_meminfo.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
278 }
279 }
280 // Nothing found or an error during opening the file
281 return 0;
282}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100283} // namespace utils
284} // namespace arm_compute