/external/eigen/bench/btl/data/ |
D | smooth.cxx | 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() [all …]
|
D | regularize.cxx | 30 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops); 32 const vector<double> & tab_mflops, 58 vector<double> tab_mflops; in main() local 60 read_xy_file(filename,tab_sizes,tab_mflops); in main() 64 regularize_curve(regularize_filename,tab_mflops,tab_sizes,start_cut_size,stop_cut_size); in main() 72 const vector<double> & tab_mflops, in regularize_curve() argument 76 int size=tab_mflops.size(); in regularize_curve() 83 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ; in regularize_curve() 98 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ; in regularize_curve() 109 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){ in read_xy_file() argument [all …]
|
D | mean.cxx | 31 double mean_calc(const vector<int> & tab_sizes, const vector<double> & tab_mflops, const int size_m… 93 vector<double> tab_mflops; in main() local 95 read_xy_file(filename,tab_sizes,tab_mflops); in main() 97 mic=mean_calc(tab_sizes,tab_mflops,min_in_cache,max_in_cache); in main() 98 moc=mean_calc(tab_sizes,tab_mflops,min_out_of_cache,max_out_of_cache); in main() 153 double mean_calc(const vector<int> & tab_sizes, const vector<double> & tab_mflops, const int size_m… in mean_calc() argument 165 mean+=tab_mflops[i]; in mean_calc()
|
/external/eigen/bench/btl/generic_bench/ |
D | bench.hh | 52 std::vector<double> tab_mflops(nb_point); in bench() local 78 tab_mflops[i] = perf_action.eval_mflops(tab_sizes[i]); in bench() 79 std::cout << tab_mflops[i]; in bench() 87 if (oldFlops[oldi]<tab_mflops[i]) in bench() 112 newFlops.push_back(std::max(tab_mflops[i], oldFlops[j])); in bench() 119 newFlops.push_back(tab_mflops[i]); in bench() 132 newFlops.push_back(tab_mflops[i]); in bench() 141 tab_mflops = newFlops; in bench() 147 dump_xy_file(tab_sizes,tab_mflops,filename); in bench()
|
/external/eigen/bench/btl/generic_bench/static/ |
D | static_size_generator.hh | 30 static void go(vector<double> & tab_sizes, vector<double> & tab_mflops) in go() 35 tab_mflops.push_back(perf_action.eval_mflops(SIZE)); in go() 36 std::cout << tab_mflops.back() << " MFlops" << std::endl; in go() 37 static_size_generator<SIZE-1,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops); in go() 45 static void go(vector<double> & tab_sizes, vector<double> & tab_mflops) in go() 49 tab_mflops.push_back(perf_action.eval_mflops(1)); in go()
|
D | bench_static.hh | 48 std::vector<double> tab_mflops; in bench_static() local 51 static_size_generator<max_size,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops); in bench_static() 53 dump_xy_file(tab_sizes,tab_mflops,filename); in bench_static()
|
/external/eigen/bench/btl/generic_bench/utils/ |
D | xy_file.hh | 29 std::vector<double> & tab_mflops, bool quiet = false) in read_xy_file() argument 48 tab_mflops.push_back(mflops); in read_xy_file()
|