aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 90d7b0bb4270a3db3e0ac88e825bd3d90ec3f485 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Parameter definitions for thorn pugh
# $Header$

protected:

INTEGER global_nx "The size of the grid in the x direction"
{
    *:-1    :: "Fixed size of minus this per processor"
    1:*     :: "Grid of this size distributed across all processors"
} 10

INTEGER global_ny "The size of the grid in the y direction"
{
    *:-1    :: "Fixed size of minus this per processor"
    1:*     :: "Grid of this size distributed across all processors"
} 10

INTEGER global_nz "The size of the grid in the z direction"
{
    *:-1    :: "Fixed size of minus this per processor"
    1:*     :: "Grid of this size distributed across all processors"
} 10

INTEGER ghost_size "The width of the ghost zone"
{
    1:*     :: "Must be a positive integer"
} 1

LOGICAL sync_verbose "Verbose output during synchronization ?"
{
} no

private:

LOGICAL enable_all_storage "Enable storage for all GFs?"
{
} "no"

KEYWORD proc_topology "How to determine the processor topology"
{
  "manual"    :: "Specified by proc_top_nx etc"
  "automatic" :: "Automatically generated"
} "automatic"


INTEGER proc_top_nx "No of Procs in X direction"
{
  0:*  :: "See proc_topology"
} 0

INTEGER proc_top_ny "No of Procs in Y direction"
{
  0:*  :: "See proc_topology"
} 0

INTEGER proc_top_nz "No of Procs in Z direction"
{
  0:*  :: "See proc_topology"
} 0

# padding stuff

LOGICAL padding_active "Padd 3D arrays so they line up on cache lines?"
{
} yes


INTEGER padding_cacheline_bits "Number of bits which have to be unique to padd properly for cache lines"
{
  1:*  :: "Any positive number"
} 12

INTEGER padding_size "How many Doubles to pad by; we have to noodle around with the starting address, so if there isn't enough space we may not be able to pad"
{
  0:*  ::  "Any positive number"
} 4112

INTEGER padding_address_spacing "Number of Doubles to space starting addresses in lowest padding_cacheline_bits bits"
{
  0:*  ::  "Any positive number"
} 24

LOGICAL zero_memory "Zero memory for GF's at allocation time ?"
{
} yes