aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 26a11daf490b6ef9db0eb03b5afaf28f41d2c197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Schedule definitions for thorn pugh
# $Header$

schedule PUGH_Startup at STARTUP as Driver_Startup
{
  LANG:C
} "Startup routine"

schedule PUGH_RegisterPUGHP2LRoutines at STARTUP
{
  LANG:C
} "Register Physical to Logical process mapping routines"

schedule PUGH_RegisterPUGHTopologyRoutines at STARTUP
{
  LANG:C
} "Register topology generation routines routines"

schedule PUGH_Report at BASEGRID
{
  LANG:C
} "Report on PUGH set up"

if (timer_output)
{
  schedule PUGH_PrintTimingInfo at TERMINATE
  {
    LANG:C
  } "Print time spent in communication"
}

if (CCTK_Equals(storage_verbose,"yes") || CCTK_Equals(storage_verbose,"report") )
{
  schedule PUGH_PrintFinalStorageReport at TERMINATE
  {
    LANG:C
  } "Print storage information"
}

if (CCTK_Equals(storage_verbose,"yes") || CCTK_Equals(storage_verbose,"report"))
{
  schedule PUGH_PrintStorageReport at POSTSTEP
  {
    LANG:C
  } "Print storage information"
}

schedule PUGH_Terminate at TERMINATE as Driver_Terminate
{
  LANG:C
} "Termination routine"