aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl34
1 files changed, 21 insertions, 13 deletions
diff --git a/schedule.ccl b/schedule.ccl
index a14a2dd..c787cc2 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -11,16 +11,20 @@ STORAGE: MoL_Counters, MoL_Original_Time
### Storage for the scratch space if memory hungry ###
########################################################
+# NOTE: I don't think this does what I expected.
+# I now think that this is always switching on memory,
+# regardless of the parameter...
+
if (MoL_Memory_Always_On)
{
STORAGE: ScratchSpace
- STORAGE: SandRScratchSpace
- STORAGE: ComplexScratchSpace
- STORAGE: ComplexSandRScratchSpace
+# STORAGE: ComplexScratchSpace
STORAGE: ArrayScratchSpace
+# STORAGE: ComplexArrayScratchSpace
+ STORAGE: SandRScratchSpace
+# STORAGE: ComplexSandRScratchSpace
STORAGE: ArraySandRScratchSpace
- STORAGE: ComplexArrayScratchSpace
- STORAGE: ComplexArraySandRScratchSpace
+# STORAGE: ComplexArraySandRScratchSpace
}
############################################################
@@ -102,17 +106,21 @@ schedule MoL_FillAllLevels AT PostInitial AFTER MoL_Register
### boundary enforcement and so on. ###
######################################################
+# NOTE: I temporarily comment out the storage statements as I do not
+# want to write out the if statements above! So this will not currently
+# work with the memory hungry parameter to no.
+
schedule GROUP MoL_Evolution AT Evol
{
LANG: C
- STORAGE: ScratchSpace
- STORAGE: SandRScratchSpace
- STORAGE: ComplexScratchSpace
- STORAGE: ComplexSandRScratchSpace
- STORAGE: ArrayScratchSpace
- STORAGE: ArraySandRScratchSpace
- STORAGE: ComplexArrayScratchSpace
- STORAGE: ComplexArraySandRScratchSpace
+ STORAGE: ScratchSpace
+# STORAGE: ComplexScratchSpace
+ STORAGE: SandRScratchSpace
+# STORAGE: ComplexSandRScratchSpace
+ STORAGE: ArrayScratchSpace
+# STORAGE: ComplexArrayScratchSpace
+ STORAGE: ArraySandRScratchSpace
+# STORAGE: ComplexArraySandRScratchSpace
} "A single Cactus evolution step using MoL"
######################################################