// // Copyright © 2017 Arm Ltd. All rights reserved. // See LICENSE file in the project root for full license information. // #pragma once #include #include namespace armnnUtils { struct CsvRow { std::vector values; }; class CsvReader { public: static std::vector ParseFile(const std::string& csvFile); static std::vector ParseVector(const std::vector& csvVector); }; } // namespace armnnUtils