blob: 21bb4ecd736ddc81b12c1e924651c7d0eb2e25c0 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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 "TensorLibrary.h"
25
26#include "TypePrinter.h"
27#include "UserConfiguration.h"
28#include "Utils.h"
29
30#include "arm_compute/core/ITensor.h"
31
32#include <cctype>
33#include <fstream>
34#include <limits>
35#include <map>
36#include <mutex>
37#include <sstream>
38#include <stdexcept>
39#include <tuple>
40#include <unordered_map>
41#include <utility>
42
43namespace arm_compute
44{
45namespace test
46{
47namespace
48{
Giorgio Arenafda46182017-06-16 13:57:33 +010049template <typename T, typename std::enable_if<std::is_integral<T>::value, int>::type = 0>
50void rgb_to_luminance(const RawTensor &src, RawTensor &dst)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051{
52 const size_t min_size = std::min(src.size(), dst.size());
53
54 for(size_t i = 0, j = 0; i < min_size; i += 3, ++j)
55 {
Giorgio Arenafda46182017-06-16 13:57:33 +010056 reinterpret_cast<T *>(dst.data())[j] = 0.2126f * src.data()[i + 0] + 0.7152f * src.data()[i + 1] + 0.0722f * src.data()[i + 2];
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 }
58}
59
60void extract_r_from_rgb(const RawTensor &src, RawTensor &dst)
61{
62 const size_t min_size = std::min(src.size(), dst.size());
63
64 for(size_t i = 0, j = 0; i < min_size; i += 3, ++j)
65 {
66 dst.data()[j] = src.data()[i];
67 }
68}
69
70void extract_g_from_rgb(const RawTensor &src, RawTensor &dst)
71{
72 const size_t min_size = std::min(src.size(), dst.size());
73
74 for(size_t i = 1, j = 0; i < min_size; i += 3, ++j)
75 {
76 dst.data()[j] = src.data()[i];
77 }
78}
79
80void discard_comments(std::ifstream &fs)
81{
82 while(fs.peek() == '#')
83 {
84 fs.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
85 }
86}
87
88void discard_comments_and_spaces(std::ifstream &fs)
89{
90 while(true)
91 {
92 discard_comments(fs);
93
94 if(isspace(fs.peek()) == 0)
95 {
96 break;
97 }
98
99 fs.ignore(1);
100 }
101}
102
103std::tuple<unsigned int, unsigned int, int> parse_ppm_header(std::ifstream &fs)
104{
105 // Check the PPM magic number is valid
106 std::array<char, 2> magic_number{ { 0 } };
107 fs >> magic_number[0] >> magic_number[1];
108
109 if(magic_number[0] != 'P' || magic_number[1] != '6')
110 {
111 throw std::runtime_error("Only raw PPM format is suported");
112 }
113
114 discard_comments_and_spaces(fs);
115
116 unsigned int width = 0;
117 fs >> width;
118
119 discard_comments_and_spaces(fs);
120
121 unsigned int height = 0;
122 fs >> height;
123
124 discard_comments_and_spaces(fs);
125
126 int max_value = 0;
127 fs >> max_value;
128
129 if(!fs.good())
130 {
131 throw std::runtime_error("Cannot read image dimensions");
132 }
133
134 if(max_value != 255)
135 {
136 throw std::runtime_error("RawTensor doesn't have 8-bit values");
137 }
138
139 discard_comments(fs);
140
141 if(isspace(fs.peek()) == 0)
142 {
143 throw std::runtime_error("Invalid PPM header");
144 }
145
146 fs.ignore(1);
147
148 return std::make_tuple(width, height, max_value);
149}
150
151RawTensor load_ppm(const std::string &path)
152{
153 std::ifstream file(path, std::ios::in | std::ios::binary);
154
155 if(!file.good())
156 {
157 throw std::runtime_error("Could not load PPM image: " + path);
158 }
159
160 unsigned int width = 0;
161 unsigned int height = 0;
162
163 std::tie(width, height, std::ignore) = parse_ppm_header(file);
164
165 RawTensor raw(TensorShape(width, height), Format::RGB888);
166
167 // Check if the file is large enough to fill the image
168 const size_t current_position = file.tellg();
169 file.seekg(0, std::ios_base::end);
170 const size_t end_position = file.tellg();
171 file.seekg(current_position, std::ios_base::beg);
172
173 if((end_position - current_position) < raw.size())
174 {
175 throw std::runtime_error("Not enough data in file");
176 }
177
178 file.read(reinterpret_cast<std::fstream::char_type *>(raw.data()), raw.size());
179
180 if(!file.good())
181 {
182 throw std::runtime_error("Failure while reading image buffer");
183 }
184
185 return raw;
186}
187} // namespace
188
189TensorLibrary::TensorLibrary(std::string path)
190 : _library_path(std::move(path)), _seed{ std::random_device()() }
191{
192}
193
194TensorLibrary::TensorLibrary(std::string path, std::random_device::result_type seed)
195 : _library_path(std::move(path)), _seed{ seed }
196{
197}
198
199std::random_device::result_type TensorLibrary::seed() const
200{
201 return _seed;
202}
203
204void TensorLibrary::fill(RawTensor &raw, const std::string &name, Format format) const
205{
206 //FIXME: Should be done by swapping cached buffers
207 const RawTensor &src = get(name, format);
208 std::copy_n(src.data(), raw.size(), raw.data());
209}
210
211void TensorLibrary::fill(RawTensor &raw, const std::string &name, Channel channel) const
212{
213 fill(raw, name, get_format_for_channel(channel), channel);
214}
215
216void TensorLibrary::fill(RawTensor &raw, const std::string &name, Format format, Channel channel) const
217{
218 const RawTensor &src = get(name, format, channel);
219 std::copy_n(src.data(), raw.size(), raw.data());
220}
221
222const TensorLibrary::Loader &TensorLibrary::get_loader(const std::string &extension) const
223{
224 static std::unordered_map<std::string, Loader> loaders =
225 {
226 { "ppm", load_ppm }
227 };
228
229 const auto it = loaders.find(extension);
230
231 if(it != loaders.end())
232 {
233 return it->second;
234 }
235 else
236 {
237 throw std::invalid_argument("Cannot load image with extension '" + extension + "'");
238 }
239}
240
241const TensorLibrary::Converter &TensorLibrary::get_converter(Format src, Format dst) const
242{
243 static std::map<std::pair<Format, Format>, Converter> converters =
244 {
Giorgio Arenafda46182017-06-16 13:57:33 +0100245 { std::make_pair(Format::RGB888, Format::U8), rgb_to_luminance<uint8_t> },
246 { std::make_pair(Format::RGB888, Format::U16), rgb_to_luminance<uint16_t> },
247 { std::make_pair(Format::RGB888, Format::S16), rgb_to_luminance<int16_t> },
248 { std::make_pair(Format::RGB888, Format::U32), rgb_to_luminance<uint32_t> }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100249 };
250
251 const auto it = converters.find(std::make_pair(src, dst));
252
253 if(it != converters.end())
254 {
255 return it->second;
256 }
257 else
258 {
259 std::stringstream msg;
260 msg << "Cannot convert from format '" << src << "' to format '" << dst << "'\n";
261 throw std::invalid_argument(msg.str());
262 }
263}
264
265const TensorLibrary::Converter &TensorLibrary::get_converter(DataType src, Format dst) const
266{
267 static std::map<std::pair<DataType, Format>, Converter> converters = {};
268
269 const auto it = converters.find(std::make_pair(src, dst));
270
271 if(it != converters.end())
272 {
273 return it->second;
274 }
275 else
276 {
277 std::stringstream msg;
278 msg << "Cannot convert from data type '" << src << "' to format '" << dst << "'\n";
279 throw std::invalid_argument(msg.str());
280 }
281}
282
283const TensorLibrary::Converter &TensorLibrary::get_converter(DataType src, DataType dst) const
284{
285 static std::map<std::pair<DataType, DataType>, Converter> converters = {};
286
287 const auto it = converters.find(std::make_pair(src, dst));
288
289 if(it != converters.end())
290 {
291 return it->second;
292 }
293 else
294 {
295 std::stringstream msg;
296 msg << "Cannot convert from data type '" << src << "' to data type '" << dst << "'\n";
297 throw std::invalid_argument(msg.str());
298 }
299}
300
301const TensorLibrary::Converter &TensorLibrary::get_converter(Format src, DataType dst) const
302{
303 static std::map<std::pair<Format, DataType>, Converter> converters = {};
304
305 const auto it = converters.find(std::make_pair(src, dst));
306
307 if(it != converters.end())
308 {
309 return it->second;
310 }
311 else
312 {
313 std::stringstream msg;
314 msg << "Cannot convert from format '" << src << "' to data type '" << dst << "'\n";
315 throw std::invalid_argument(msg.str());
316 }
317}
318
319const TensorLibrary::Extractor &TensorLibrary::get_extractor(Format format, Channel channel) const
320{
321 static std::map<std::pair<Format, Channel>, Extractor> extractors =
322 {
323 { std::make_pair(Format::RGB888, Channel::R), extract_r_from_rgb },
324 { std::make_pair(Format::RGB888, Channel::G), extract_g_from_rgb }
325 };
326
327 const auto it = extractors.find(std::make_pair(format, channel));
328
329 if(it != extractors.end())
330 {
331 return it->second;
332 }
333 else
334 {
335 std::stringstream msg;
336 msg << "Cannot extract channel '" << channel << "' from format '" << format << "'\n";
337 throw std::invalid_argument(msg.str());
338 }
339}
340
341RawTensor TensorLibrary::load_image(const std::string &name) const
342{
343#ifdef _WIN32
344 const std::string image_path = ("\\images\\");
345#else
346 const std::string image_path = ("/images/");
347#endif
348
349 const std::string path = _library_path + image_path + name;
350 const std::string extension = path.substr(path.find_last_of('.') + 1);
351 return (*get_loader(extension))(path);
352}
353
354const RawTensor &TensorLibrary::find_or_create_raw_tensor(const std::string &name, Format format) const
355{
356 std::lock_guard<std::mutex> guard(_format_lock);
357
358 const RawTensor *ptr = _cache.find(std::make_tuple(name, format));
359
360 if(ptr != nullptr)
361 {
362 return *ptr;
363 }
364
365 RawTensor raw = load_image(name);
366
367 if(raw.format() != format)
368 {
369 //FIXME: Remove unnecessary copy
370 RawTensor dst(raw.shape(), format);
371 (*get_converter(raw.format(), format))(raw, dst);
372 raw = std::move(dst);
373 }
374
375 return _cache.add(std::make_tuple(name, format), std::move(raw));
376}
377
378const RawTensor &TensorLibrary::find_or_create_raw_tensor(const std::string &name, Format format, Channel channel) const
379{
380 std::lock_guard<std::mutex> guard(_channel_lock);
381
382 const RawTensor *ptr = _cache.find(std::make_tuple(name, format, channel));
383
384 if(ptr != nullptr)
385 {
386 return *ptr;
387 }
388
389 const RawTensor &src = get(name, format);
390 //FIXME: Need to change shape to match channel
391 RawTensor dst(src.shape(), get_channel_format(channel));
392
393 (*get_extractor(format, channel))(src, dst);
394
395 return _cache.add(std::make_tuple(name, format, channel), std::move(dst));
396}
397
Giorgio Arenafda46182017-06-16 13:57:33 +0100398TensorShape TensorLibrary::get_image_shape(const std::string &name)
399{
400 return load_image(name).shape();
401}
402
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100403RawTensor TensorLibrary::get(const TensorShape &shape, DataType data_type, int num_channels, int fixed_point_position)
404{
405 return RawTensor(shape, data_type, num_channels, fixed_point_position);
406}
407
408RawTensor TensorLibrary::get(const TensorShape &shape, Format format)
409{
410 return RawTensor(shape, format);
411}
412
413const RawTensor &TensorLibrary::get(const std::string &name) const
414{
415 //FIXME: Format should be derived from the image name. Not be fixed to RGB.
416 return find_or_create_raw_tensor(name, Format::RGB888);
417}
418
419RawTensor TensorLibrary::get(const std::string &name)
420{
421 //FIXME: Format should be derived from the image name. Not be fixed to RGB.
422 return RawTensor(find_or_create_raw_tensor(name, Format::RGB888));
423}
424
425RawTensor TensorLibrary::get(const std::string &name, DataType data_type, int num_channels) const
426{
427 const RawTensor &raw = get(name);
428
429 return RawTensor(raw.shape(), data_type, num_channels);
430}
431
432const RawTensor &TensorLibrary::get(const std::string &name, Format format) const
433{
434 return find_or_create_raw_tensor(name, format);
435}
436
437RawTensor TensorLibrary::get(const std::string &name, Format format)
438{
439 return RawTensor(find_or_create_raw_tensor(name, format));
440}
441
442const RawTensor &TensorLibrary::get(const std::string &name, Channel channel) const
443{
444 return get(name, get_format_for_channel(channel), channel);
445}
446
447RawTensor TensorLibrary::get(const std::string &name, Channel channel)
448{
449 return RawTensor(get(name, get_format_for_channel(channel), channel));
450}
451
452const RawTensor &TensorLibrary::get(const std::string &name, Format format, Channel channel) const
453{
454 return find_or_create_raw_tensor(name, format, channel);
455}
456
457RawTensor TensorLibrary::get(const std::string &name, Format format, Channel channel)
458{
459 return RawTensor(find_or_create_raw_tensor(name, format, channel));
460}
461} // namespace test
462} // namespace arm_compute