From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/_csv_reader_8hpp_source.xhtml | 118 ++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 20.02/_csv_reader_8hpp_source.xhtml (limited to '20.02/_csv_reader_8hpp_source.xhtml') diff --git a/20.02/_csv_reader_8hpp_source.xhtml b/20.02/_csv_reader_8hpp_source.xhtml new file mode 100644 index 0000000000..593962e73c --- /dev/null +++ b/20.02/_csv_reader_8hpp_source.xhtml @@ -0,0 +1,118 @@ + + + + + + + + + + + + + +ArmNN: src/armnnUtils/CsvReader.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
CsvReader.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6 
7 #include <vector>
8 #include <string>
9 
10 namespace armnnUtils
11 {
12 
13 struct CsvRow
14 {
15  std::vector<std::string> values;
16 };
17 
18 class CsvReader
19 {
20 public:
21  static std::vector<CsvRow> ParseFile(const std::string& csvFile);
22 
23  static std::vector<CsvRow> ParseVector(const std::vector<std::string>& csvVector);
24 };
25 } // namespace armnnUtils
std::vector< std::string > values
Definition: CsvReader.hpp:15
+ +
std::string ParseFile(const BackendOptions::Var &value, std::string defaultValue)
+ + +
+
+ + + + -- cgit v1.2.1