HomeSort by relevance Sort by last modified time
    Searched defs:tab_mflops (Results 1 - 5 of 5) sorted by null

  /external/eigen/bench/btl/generic_bench/static/
bench_static.hh 48 std::vector<double> tab_mflops; local
51 static_size_generator<max_size,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
53 dump_xy_file(tab_sizes,tab_mflops,filename);
  /external/eigen/bench/btl/data/
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; local
60 read_xy_file(filename,tab_sizes,tab_mflops);
64 regularize_curve(regularize_filename,tab_mflops,tab_sizes,start_cut_size,stop_cut_size);
72 const vector<double> & tab_mflops,
76 int size=tab_mflops.size();
83 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
98 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
109 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){
    [all...]
mean.cxx 31 double mean_calc(const vector<int> & tab_sizes, const vector<double> & tab_mflops, const int size_min, const int size_max);
93 vector<double> tab_mflops; local
95 read_xy_file(filename,tab_sizes,tab_mflops);
97 mic=mean_calc(tab_sizes,tab_mflops,min_in_cache,max_in_cache);
98 moc=mean_calc(tab_sizes,tab_mflops,min_out_of_cache,max_out_of_cache);
153 double mean_calc(const vector<int> & tab_sizes, const vector<double> & tab_mflops, const int size_min, const int size_max){
165 mean+=tab_mflops[i];
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_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; local
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()
    [all...]
  /external/eigen/bench/btl/generic_bench/
bench.hh 52 std::vector<double> tab_mflops(nb_point);
78 tab_mflops[i] = perf_action.eval_mflops(tab_sizes[i]);
79 std::cout << tab_mflops[i]; local
87 if (oldFlops[oldi]<tab_mflops[i])
112 newFlops.push_back(std::max(tab_mflops[i], oldFlops[j]));
119 newFlops.push_back(tab_mflops[i]);
132 newFlops.push_back(tab_mflops[i]);
141 tab_mflops = newFlops;
147 dump_xy_file(tab_sizes,tab_mflops,filename);

Completed in 321 milliseconds