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