Home
last modified time | relevance | path

Searched refs:tab_mflops (Results 1 – 7 of 7) sorted by relevance

/external/eigen/bench/btl/data/
Dsmooth.cxx31 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 …]
Dregularize.cxx30 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 …]
Dmean.cxx31 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/
Dbench.hh52 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/
Dstatic_size_generator.hh30 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()
Dbench_static.hh48 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/
Dxy_file.hh29 std::vector<double> & tab_mflops, bool quiet = false) in read_xy_file() argument
48 tab_mflops.push_back(mflops); in read_xy_file()