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
7
8namespace sys_sage {
9 int parseCapsNumaBenchmark(Component* rootComponent, std::string benchmarkPath, std::string delim = ";");
10
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
Definition caps-numa-benchmark.hpp:12