git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14196 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2015-10-23 14:53:22 +00:00
parent 46755d0c7d
commit e53f61a869
2 changed files with 0 additions and 27 deletions

View File

@ -58,17 +58,6 @@ void VerletKokkos::setup()
fprintf(screen," Unit style : %s\n", update->unit_style);
fprintf(screen," Current step: " BIGINT_FORMAT "\n", update->ntimestep);
fprintf(screen," Time step : %g\n", update->dt);
if (update->max_wall > 0) {
char outtime[128];
double totalclock = update->max_wall;
int seconds = fmod(totalclock,60.0);
totalclock = (totalclock - seconds) / 60.0;
int minutes = fmod(totalclock,60.0);
int hours = (totalclock - minutes) / 60.0;
sprintf(outtime," Max walltime: "
"%d:%02d:%02d\n", hours, minutes, seconds);
fputs(outtime,screen);
}
}
update->setupflag = 1;

View File

@ -102,17 +102,6 @@ void VerletIntel::setup()
fprintf(screen," Unit style : %s\n", update->unit_style);
fprintf(screen," Current step: " BIGINT_FORMAT "\n", update->ntimestep);
fprintf(screen," Time step : %g\n", update->dt);
if (update->max_wall > 0) {
char outtime[128];
double totalclock = update->max_wall;
int seconds = fmod(totalclock,60.0);
totalclock = (totalclock - seconds) / 60.0;
int minutes = fmod(totalclock,60.0);
int hours = (totalclock - minutes) / 60.0;
sprintf(outtime," Max walltime: "
"%d:%02d:%02d\n", hours, minutes, seconds);
fputs(outtime,screen);
}
}
update->setupflag = 1;
@ -282,10 +271,6 @@ void VerletIntel::run(int n)
else sortflag = 0;
for (int i = 0; i < n; i++) {
if (update->time_expired()) {
update->nsteps = i;
return;
}
ntimestep = ++update->ntimestep;
ev_set(ntimestep);
@ -346,7 +331,6 @@ void VerletIntel::run(int n)
timer->stamp(Timer::MODIFY);
}
if (pair_compute_flag) {
force->pair->compute(eflag,vflag);
timer->stamp(Timer::PAIR);