sys-sage
Loading...
Searching...
No Matches
cccbench.hpp
1#ifndef CCCBENCH_PARSER
2#define CCCBENCH_PARSER
3
4#include <vector>
5#include "Component.hpp"
6#include "DataPath.hpp"
7
8int parseCccbenchOutput(Node* , std::string );
9
10template <typename T>class Vec2DArray
11{
12 Vec2DArray(){}
13 std::vector<T> *array;
14 unsigned int size, xdim, ydim;
15public:
16 Vec2DArray(unsigned xdim, unsigned ydim);
17 std::vector<T> *operator [](unsigned int xindex);
18};
19
20template <typename T>Vec2DArray<T>::Vec2DArray(unsigned int _xdim, unsigned int _ydim)
21{
22 this->size = _xdim * _ydim;
23 this->xdim = _xdim;
24 this->ydim = _ydim;
25 this->array = new std::vector<T> [this->size];
26}
27
28template <typename T>std::vector<T> *Vec2DArray<T>::operator [](unsigned int xindex)
29{
30 return &(this->array[this->xdim*xindex]);
31}
32
34 unsigned int firstCore;
35 unsigned int lastCore;
36 unsigned int lines;
37 const char *metric_name = "xylat";
38 const char *xcore_name = "xcore";
39 const char *ycore_name = "ycore";
40 Vec2DArray<float> *c2cDatapoints;
41 CccbenchParser():c2cDatapoints((Vec2DArray<float> *)0){}
42public:
43 virtual ~CccbenchParser(){if(this->c2cDatapoints) {delete [] c2cDatapoints;}}
44 unsigned int xtoi(unsigned int _x){return _x - this->firstCore;}
45 unsigned int ytoi(unsigned int _y){return _y - this->firstCore;}
46 CccbenchParser(const char *csv_path);
47 void applyDataPaths(Component *root);
48};
49
50#endif
Definition cccbench.hpp:33
Definition Component.hpp:42
Definition Component.hpp:613
Definition cccbench.hpp:11