| 53 | } |
| 54 | |
| 55 | std::vector<unsigned int> ParseArray(std::istream& stream) |
| 56 | { |
| 57 | return ParseArrayImpl<unsigned int>( |
| 58 | stream, |
| 59 | [](const std::string& s) { return armnn::numeric_cast<unsigned int>(std::stoi(s)); }); |
| 60 | } |
| 61 | |
| 62 | bool ValidatePaths(const std::vector<std::string>& fileVec, const bool expectFile) |
| 63 | { |