Skip to content
Snippets Groups Projects
Commit 198a19e6 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Print starting time as well in welcome message

parent 8c14753b
No related branches found
No related tags found
1 merge request!159Timed outputs
...@@ -347,7 +347,8 @@ int main(int argc, char *argv[]) { ...@@ -347,7 +347,8 @@ int main(int argc, char *argv[]) {
if (!with_hydro) { if (!with_hydro) {
free(parts); free(parts);
parts = NULL; parts = NULL;
for (size_t k = 0; k < Ngpart; ++k) if(gparts[k].id > 0) error("Linking problem"); for (size_t k = 0; k < Ngpart; ++k)
if (gparts[k].id > 0) error("Linking problem");
Ngas = 0; Ngas = 0;
} }
...@@ -456,10 +457,10 @@ int main(int argc, char *argv[]) { ...@@ -456,10 +457,10 @@ int main(int argc, char *argv[]) {
/* Get some info to the user. */ /* Get some info to the user. */
if (myrank == 0) { if (myrank == 0) {
message( message(
"Running on %lld gas particles and %lld DM particles until t=%.3e with " "Running on %lld gas particles and %lld DM particles from t=%.3e until "
"%i threads and %i queues (dt_min=%.3e, dt_max=%.3e)...", "t=%.3e with %d threads and %d queues (dt_min=%.3e, dt_max=%.3e)...",
N_total[0], N_total[1], e.timeEnd, e.nr_threads, e.sched.nr_queues, N_total[0], N_total[1], e.timeBegin, e.timeEnd, e.nr_threads,
e.dt_min, e.dt_max); e.sched.nr_queues, e.dt_min, e.dt_max);
fflush(stdout); fflush(stdout);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment