Home | History | Annotate | Download | only in data

Lines Matching refs:tab_mflops

31 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops);
32 void write_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops);
33 void smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width);
34 void centered_smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width);
58 vector<double> tab_mflops;
60 read_xy_file(filename,tab_sizes,tab_mflops);
66 //smooth_curve(tab_mflops,smooth_tab_mflops,window_half_width);
67 centered_smooth_curve(tab_mflops,smooth_tab_mflops,window_half_width);
100 void smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width){
104 int size=tab_mflops.size();
115 sample[j]=tab_mflops[shifted_index];
125 void centered_smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width){
129 int size=tab_mflops.size();
137 sample.push_back(tab_mflops[i]);
146 sample.push_front(tab_mflops[before]);
147 sample.push_back(tab_mflops[after]);
160 void write_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){
166 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
176 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){
192 tab_mflops.push_back(mflops);