Lines Matching refs:window_half_width
33 …curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width);
34 …curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width);
49 int window_half_width=atoi(argv[2]); in main() local
55 INFOS("window_half_width="<<window_half_width); in main()
67 centered_smooth_curve(tab_mflops,smooth_tab_mflops,window_half_width); in main()
100 …curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width){ in smooth_curve() argument
102 int window_width=2*window_half_width+1; in smooth_curve()
112 int shifted_index=i+j-window_half_width; in smooth_curve()
125 …curve(const vector<double> & tab_mflops, vector<double> & smooth_tab_mflops,int window_half_width){ in centered_smooth_curve() argument
127 int max_window_width=2*window_half_width+1; in centered_smooth_curve()
139 for ( int j=1 ; j <= window_half_width ; j++ ){ in centered_smooth_curve()