sys-sage
Loading...
Searching...
No Matches
src
parsers
caps-numa-benchmark.hpp
1
#ifndef CAPS_NUMA_BENCHMARK
2
#define CAPS_NUMA_BENCHMARK
3
4
#include "Component.hpp"
5
#include "DataPath.hpp"
6
7
8
namespace
sys_sage {
9
int
parseCapsNumaBenchmark(Component* rootComponent, std::string benchmarkPath, std::string delim =
";"
);
10
11
class
CSVReader
12
{
13
std::string benchmarkPath;
14
std::string delimiter;
15
public
:
16
CSVReader
(std::string benchmarkPath, std::string delm =
";"
) : benchmarkPath(benchmarkPath), delimiter(delm) { }
17
// Function to fetch data from a CSV File
18
int
getData(std::vector<std::vector<std::string> >*);
19
};
20
21
}
//namespace sys_sage
22
#endif
sys_sage::CSVReader
Definition
caps-numa-benchmark.hpp:12
Generated by
1.10.0