Skip to content
Snippets Groups Projects
Commit 668979ee authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[ADD] timer output to granular gas benchmark

parent c6d8a70c
No related merge requests found
......@@ -347,6 +347,11 @@ int main( int argc, char ** argv )
stringProperties["tag"] = "mesa_pd";
integerProperties["mpi_num_processes"] = mpiManager->numProcesses();
integerProperties["omp_max_threads"] = omp_get_max_threads();
realProperties["PUpS"] = double_c(PUpS);
realProperties["timer_min"] = timer_reduced->min();
realProperties["timer_max"] = timer_reduced->max();
realProperties["timer_average"] = timer_reduced->average();
realProperties["timer_total"] = timer_reduced->total();
integerProperties["outerIteration"] = int64_c(outerIteration);
integerProperties["num_particles"] = numParticles;
integerProperties["num_ghost_particles"] = numGhostParticles;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment