@@ -1114,7 +1114,7 @@ template<unsigned int dim> void vd_verlet_performance_write_report(openfpm::vect
options.yAxis=std::string("Speedup (times)");
options.xAxis=std::string("Number of particles");
options.lineWidth=2.5;
options.lineWidth=2;
GoogleChartcg;
...
...
@@ -1137,7 +1137,7 @@ template<unsigned int dim> void vd_verlet_performance_write_report(openfpm::vect
options2.yAxis=std::string("Total calculation time (s)");
options2.xAxis=std::string("Number of particles");
options2.lineWidth=2.5;
options2.lineWidth=2;
std::stringstr2("<h2>2) Total calculation time</h2>");
str2+="We count a total calculation time. In the case of unordered positioning it is: verlet list creation time + forces calculation time; in the case of an Hilbert curve positioning: reordering time + verlet list creation time + forces calculation time."
...
...
@@ -1255,7 +1255,7 @@ template<unsigned int dim> void vd_cl_performance_write_report(size_t n_moving,o
options.yAxis=std::string("Speedup (times)");
options.xAxis=std::string("Number of particles");
options.lineWidth=2.5;
options.lineWidth=2;
//options.more = "hAxis: {logScale: true}";
GoogleChartcg;
...
...
@@ -1279,7 +1279,7 @@ template<unsigned int dim> void vd_cl_performance_write_report(size_t n_moving,o
options2.yAxis=std::string("Total calculation time (s)");
options2.xAxis=std::string("Number of particles");
options2.lineWidth=2.5;
options2.lineWidth=2;
//options2.more = "hAxis: {logScale: true}";
std::stringstr2("<h2>2) Total calculation time</h2>");
...
...
@@ -1300,7 +1300,7 @@ template<unsigned int dim> void vd_cl_performance_write_report(size_t n_moving,o
std::stringstr3("<h2>3) Speedup degradation after moving the particles</h2>");
str3+="Now we move all of the particles several times in a random direction but the same distance. Then we compare the speedup we were gaining before moving (step 0) and after moving the particles. The speedup degradation is shown below as a function of a moving step number.";
...
...
@@ -1370,7 +1370,7 @@ template<unsigned int dim> void vd_celllist_performance_write_report(openfpm::ve
options.yAxis=std::string("Speedup (times)");
options.xAxis=std::string("Number of particles");
options.lineWidth=2.5;
options.lineWidth=2;
GoogleChartcg;
...
...
@@ -1394,7 +1394,7 @@ template<unsigned int dim> void vd_celllist_performance_write_report(openfpm::ve
options2.yAxis=std::string("Total calculation time (s)");
options2.xAxis=std::string("Number of particles");
options2.lineWidth=2.5;
options2.lineWidth=2;
std::stringstr2("<h2>2) Total calculation time</h2>");
str2+="We count a total calculation time. In both cases - for a 'random' and 'hilbert' cell lists - it consists of: cell list creation time + forces calculation time. "