5#include "Component.hpp"
8int parseCccbenchOutput(
Node* , std::string );
13 std::vector<T> *array;
14 unsigned int size, xdim, ydim;
17 std::vector<T> *operator [](
unsigned int xindex);
22 this->size = _xdim * _ydim;
25 this->array =
new std::vector<T> [this->size];
30 return &(this->array[this->xdim*xindex]);
34 unsigned int firstCore;
35 unsigned int lastCore;
37 const char *metric_name =
"xylat";
38 const char *xcore_name =
"xcore";
39 const char *ycore_name =
"ycore";
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;}
Definition cccbench.hpp:33
Definition Component.hpp:42
Definition Component.hpp:613
Definition cccbench.hpp:11