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

This commit is contained in:
sjplimp 2011-08-17 22:22:31 +00:00
parent b650e2734b
commit 031010c078
1 changed files with 1 additions and 1 deletions

View File

@ -630,7 +630,7 @@ bigint AtomVecAtomic::memory_usage()
if (atom->memcheck("image")) bytes += memory->usage(image,nmax);
if (atom->memcheck("x")) bytes += memory->usage(x,nmax,3);
if (atom->memcheck("v")) bytes += memory->usage(v,nmax,3);
if (atom->memcheck("f")) bytes += memory->usage(f,nmax,3);
if (atom->memcheck("f")) bytes += memory->usage(f,nmax,3*comm->nthreads);
return bytes;
}