git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5504 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -89,14 +89,11 @@ void Finish::end(int flag)
|
||||
MPI_Allreduce(&nblocal,&natoms,1,MPI_LMP_BIGINT,MPI_SUM,world);
|
||||
|
||||
if (me == 0) {
|
||||
if (screen)
|
||||
fprintf(screen,
|
||||
"Loop time of %g on %d procs for %d steps with %lu atoms\n",
|
||||
time_loop,nprocs,update->nsteps,natoms);
|
||||
if (logfile)
|
||||
fprintf(logfile,
|
||||
"Loop time of %g on %d procs for %d steps with %lu atoms\n",
|
||||
time_loop,nprocs,update->nsteps,natoms);
|
||||
char str[128];
|
||||
sprintf(str,"Loop time of %%g on %%d procs for %%d steps with %s atoms\n",
|
||||
BIGINT_FORMAT);
|
||||
if (screen) fprintf(screen,str,time_loop,nprocs,update->nsteps,natoms);
|
||||
if (logfile) fprintf(logfile,str,time_loop,nprocs,update->nsteps,natoms);
|
||||
}
|
||||
|
||||
if (time_loop == 0.0) time_loop = 1.0;
|
||||
|
||||
Reference in New Issue
Block a user