• Home
  • Raw
  • Download

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_…
34 void centered_smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,in…
58 vector<double> tab_mflops; in main() local
60 read_xy_file(filename,tab_sizes,tab_mflops); in main()
67 centered_smooth_curve(tab_mflops,smooth_tab_mflops,window_half_width); in main()
100 void smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_… in smooth_curve() argument
104 int size=tab_mflops.size(); in smooth_curve()
115 sample[j]=tab_mflops[shifted_index]; in smooth_curve()
125 void centered_smooth_curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,in… in centered_smooth_curve() argument
129 int size=tab_mflops.size(); in centered_smooth_curve()
137 sample.push_back(tab_mflops[i]); in centered_smooth_curve()
146 sample.push_front(tab_mflops[before]); in centered_smooth_curve()
147 sample.push_back(tab_mflops[after]); in centered_smooth_curve()
160 void write_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){ in write_xy_file() argument
166 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ; in write_xy_file()
176 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){ in read_xy_file() argument
192 tab_mflops.push_back(mflops); in read_xy_file()