aboutsummaryrefslogtreecommitdiff
path: root/Carpet/LoopControl/schedule.ccl
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2008-02-04 21:19:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2008-02-04 21:19:00 +0000
commit5adcabc019a609157dd6e14021f1aab061aeb6ec (patch)
tree80023d4d3e0958589047b6ce3a7a8c6ca5dbf738 /Carpet/LoopControl/schedule.ccl
parentc5198fcfaa82b7c9526f12e9b2f3b9dc2f35cbed (diff)
LoopControl:
Add parameter printstatus. Output statistics only if desired. Add parameter legacy_init as new initial parallelisation choice. Add parameter ignore_initial_overhead, which ignores the first time the loop is encountered when optimising the parallelisation. Correct serious inconsistency when choosing the tiling. Output average loop time as well. darcs-hash:20080204211904-dae7b-ef0175704efb2c8e0e20ee6ee04a468803b3a5ec.gz
Diffstat (limited to 'Carpet/LoopControl/schedule.ccl')
-rw-r--r--Carpet/LoopControl/schedule.ccl10
1 files changed, 6 insertions, 4 deletions
diff --git a/Carpet/LoopControl/schedule.ccl b/Carpet/LoopControl/schedule.ccl
index 56204414d..fc14c7b0d 100644
--- a/Carpet/LoopControl/schedule.ccl
+++ b/Carpet/LoopControl/schedule.ccl
@@ -1,6 +1,8 @@
# Schedule definitions for thorn LoopControl
-SCHEDULE lc_printstats AT terminate
-{
- LANG: C
-} "Output loop control statistics"
+if (printstats) {
+ SCHEDULE lc_printstats AT terminate
+ {
+ LANG: C
+ } "Output loop control statistics"
+}