aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-09-16 10:13:01 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-09-16 10:13:01 +0000
commit46a7d6ef731e9e26279fab0514c91ad41fbac170 (patch)
tree9c4e4e639714a18cde9375456fa1a92652bb8c4a /param.ccl
parent5c1f3ae9d5de43fe1d47463222791b6cdb49dc47 (diff)
Extended storage_verbose parameter to give a report on the maximum amount of storage assigned during a run.
The options are now storage_verbose = "yes" -> show everything (enabling, disabling and report) storage_verbose = "report" -> just show report storage_verbose = "no" (the default) -> show nothing The report will be given at termination, and also at every storage_report_every iterations (default is only at termination). I could extend the report to give a list of the GAs with storage at the max if anyone wants that. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@346 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl11
1 files changed, 10 insertions, 1 deletions
diff --git a/param.ccl b/param.ccl
index 4955537..efa3a52 100644
--- a/param.ccl
+++ b/param.ccl
@@ -205,10 +205,19 @@ STRING partition_3d_z "Tells how to partition on direction z"
.* :: "A regex which matches anything"
} ""
-BOOLEAN storage_verbose "Report on memory assignment" STEERABLE = ALWAYS
+KEYWORD storage_verbose "Report on memory assignment" STEERABLE = ALWAYS
{
+ "yes" :: "Standard storage information"
+ "report" :: "Provide a report of storage every storage_report_every iterations and at termination"
+ "no" :: "Provide no information"
} "no"
+INT storage_report_every "How often to provide a report on storage information" STEERABLE = ALWAYS
+{
+ 0:0 :: "Never report"
+ 1:* :: "Report at intervals"
+} 0
+
BOOLEAN timer_output "Print time spent in communication"
{
} "no"