aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 95980ace9f1411312d498757be40d1098b689ac6 (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
52
53
54
55
56
57
58
59
60
61
62
63
# Parameter definitions for thorn TimerReport
# $Header$

private:

INT out_every "How often to output timer report to screen" STEERABLE=ALWAYS
{
  0   :: "Never (default)"
  1:* :: "Every so many iterations"
} 0

INT out_at "Output timer information at a given iteration" STEERABLE=ALWAYS
{
  -1   :: "Never (default)"
  0:*  :: "At this iteration"
} -1

STRING out_filename "File name for timer reports" STEERABLE=ALWAYS
{
  "^$"   :: "empty filename: print to stdout"
  "^.+$" :: "otherwise: print to that file"
} ""

BOOLEAN before_checkpoint "Before a checkpoint" STEERABLE=ALWAYS
{
} "no"

BOOLEAN next "On next iteration" STEERABLE=ALWAYS
{
} "no"

BOOLEAN output_schedule_timers "Output the schedule timers in a formatted tabular format" STEERABLE=ALWAYS
{
} "yes"

BOOLEAN output_all_timers "Output one file per processor containing all the Cactus timers" STEERABLE=ALWAYS
{
} "no"

BOOLEAN output_all_timers_together "Output three files (formats .txt, .csv, and .tsv), containing information about all the Cactus timers (average, minimum, and maximum over all processors)" STEERABLE=ALWAYS
{
} "no"

BOOLEAN output_all_timers_readable "Output one file containing information about all the Cactus timers (average, minimum, and maximum over all processors), in a format that is readable by humans" STEERABLE=ALWAYS
{
} "no"

STRING all_timers_clock "Which clock to use for the all timers output" STEERABLE=ALWAYS
{
  ".*"   :: "any clock name allowed"
} "gettimeofday"

INT n_top_timers "How many timers to include in the top timer report" STEERABLE=ALWAYS
{
  0   :: "Do not print the report"
  1:* :: "Any number of timers"
} 0

shares: IO

USES STRING out_dir

USES INT checkpoint_every