rename misleading "CPU time" into "Time spent"

This commit is contained in:
Axel Kohlmeyer
2017-10-06 14:34:10 -04:00
parent 214c0cfb2b
commit 58e1969de2
2 changed files with 7 additions and 7 deletions

View File

@ -343,7 +343,7 @@ void CreateAtoms::command(int narg, char **arg)
}
}
// CPU time
// Record wall time for atom creation
MPI_Barrier(world);
double time1 = MPI_Wtime();
@ -532,12 +532,12 @@ void CreateAtoms::command(int narg, char **arg)
if (screen) {
fprintf(screen,"Created " BIGINT_FORMAT " atoms\n",
atom->natoms-natoms_previous);
fprintf(screen," CPU time = %g secs\n",time2-time1);
fprintf(screen," Time spent = %g secs\n",time2-time1);
}
if (logfile) {
fprintf(logfile,"Created " BIGINT_FORMAT " atoms\n",
atom->natoms-natoms_previous);
fprintf(logfile," CPU time = %g secs\n",time2-time1);
fprintf(logfile," Time spent = %g secs\n",time2-time1);
}
}

View File

@ -74,7 +74,7 @@ void Replicate::command(int narg, char **arg)
if (atom->nextra_grow || atom->nextra_restart || atom->nextra_store)
error->all(FLERR,"Cannot replicate with fixes that store atom quantities");
// CPU time
// Record wall time for atom replication
MPI_Barrier(world);
double time1 = MPI_Wtime();
@ -430,15 +430,15 @@ void Replicate::command(int narg, char **arg)
special.build();
}
// CPU time
// Wall time
MPI_Barrier(world);
double time2 = MPI_Wtime();
if (me == 0) {
if (screen)
fprintf(screen," CPU time = %g secs\n",time2-time1);
fprintf(screen," Time spent = %g secs\n",time2-time1);
if (logfile)
fprintf(logfile," CPU time = %g secs\n",time2-time1);
fprintf(logfile," Time spent = %g secs\n",time2-time1);
}
}