aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/Recompose.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2008-01-30 22:20:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2008-01-30 22:20:00 +0000
commit01e628c15792abf7667a9dbf487d2c0eed245a36 (patch)
tree366b67e937cd5eb2f990a5736d2ed8ed38832b1e /Carpet/Carpet/src/Recompose.cc
parentdaf63f8244d733c306f643c0761a2222d2d48d27 (diff)
Carpet: Update timing routines
darcs-hash:20080130222022-dae7b-66f7e0aa2f0fecb47b6b9649df52995c73741816.gz
Diffstat (limited to 'Carpet/Carpet/src/Recompose.cc')
-rw-r--r--Carpet/Carpet/src/Recompose.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/Carpet/src/Recompose.cc b/Carpet/Carpet/src/Recompose.cc
index 39aaa1a5e..fe10cff4e 100644
--- a/Carpet/Carpet/src/Recompose.cc
+++ b/Carpet/Carpet/src/Recompose.cc
@@ -626,7 +626,7 @@ namespace Carpet {
CCTK_VInfo (CCTK_THORNSTRING,
"Grid structure statistics:");
CCTK_VInfo (CCTK_THORNSTRING,
- "GF: rhs: %.0fk active, %.0fk owned (+%.0f%%), %.0fk total (+%.0f%%), %.3g rhs/M",
+ "GF: rhs: %.0fk active, %.0fk owned (+%.0f%%), %.0fk total (+%.0f%%), %.3g steps/time",
double (num_active_cpu_points / 1000),
double (num_owned_cpu_points / 1000),
double (num_owned_cpu_points / num_active_cpu_points * 100 - 100),
@@ -634,7 +634,7 @@ namespace Carpet {
double (num_total_cpu_points / num_owned_cpu_points * 100 - 100),
double (num_steps / delta_time));
CCTK_VInfo (CCTK_THORNSTRING,
- "GF: vars: %d, pts: %.0fM active, %.0fM owned (+%.0f%%), %.0fM total (+%.0f%%), %.1f c/p",
+ "GF: vars: %d, pts: %.0fM active, %.0fM owned (+%.0f%%), %.0fM total (+%.0f%%), %.1f comp/proc",
num_gfs,
double (num_active_mem_points / 1000000),
double (num_owned_mem_points / 1000000),