aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-07-01 15:26:49 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-07-01 15:26:49 +0000
commit4e54d923975951b4792fadd0d096d0ad86fe4f3f (patch)
tree1ae5737f6d08e604fc47da2c299997543256d22e /param.ccl
parentb29e74333158bc4aa291ece775888fe73d982ef8 (diff)
INTEGER -> INT
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@66 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl20
1 files changed, 10 insertions, 10 deletions
diff --git a/param.ccl b/param.ccl
index 96de1f5..e7cffbe 100644
--- a/param.ccl
+++ b/param.ccl
@@ -3,25 +3,25 @@
protected:
-INTEGER global_nx "The size of the grid in the x direction"
+INT 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"
+INT 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"
+INT 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"
+INT ghost_size "The width of the ghost zone"
{
1:* :: "Must be a positive integer"
} 1
@@ -43,17 +43,17 @@ KEYWORD proc_topology "How to determine the processor topology"
} "automatic"
-INTEGER proc_top_nx "No of Procs in X direction"
+INT proc_top_nx "No of Procs in X direction"
{
0:* :: "See proc_topology"
} 0
-INTEGER proc_top_ny "No of Procs in Y direction"
+INT proc_top_ny "No of Procs in Y direction"
{
0:* :: "See proc_topology"
} 0
-INTEGER proc_top_nz "No of Procs in Z direction"
+INT proc_top_nz "No of Procs in Z direction"
{
0:* :: "See proc_topology"
} 0
@@ -65,17 +65,17 @@ 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"
+INT 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 CCTK_REALs 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"
+INT padding_size "How many CCTK_REALs 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 CCTK_REALs to space starting addresses in lowest padding_cacheline_bits bits"
+INT padding_address_spacing "Number of CCTK_REALs to space starting addresses in lowest padding_cacheline_bits bits"
{
0:* :: "Any positive number"
} 24