aboutsummaryrefslogtreecommitdiff
path: root/src/P2LMappings.c
blob: 85461fdcf202034a1a4a9f2da50aa792765cf198 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
 /*@@
   @file      P2LMappings.c
   @date      Sun Oct 30 17:02:58 CST 2005
   @author    Dylan Stark
   @desc
              Provides routines for mapping between physical and
              logical numberings of processors.
   @enddesc
   @version $Header$
 @@*/

#include <stdio.h>
#include <stdlib.h>

#include "cctk.h"

#include "pugh_Register.h"

static const char *rcsid = "$Header$";

CCTK_FILEVERSION(CactusPUGH_PUGH_P2L_c);


/********************************************************************
 *********************     Local Data Types   ***********************
 ********************************************************************/

/********************************************************************
 ********************* Local Routine Prototypes *********************
 ********************************************************************/

static void *CreateDirectTranslation(int dim, int *nprocs, int np);
static int   DestroyDirectTranslation(void *table);
static int   DirectPhysicalToLogical(void *table, int proc);
static int   DirectLogicalToPhysical(void *table, int ijk);

static void *CreateExampleTranslation(int dim, int *nprocs, int np);
static int   DestroyExampleTranslation(void *table);
static int   ExamplePhysicalToLogical(void *table, int proc);
static int   ExampleLogicalToPhysical(void *table, int ijk);

/********************************************************************
 ********************* Other Routine Prototypes *********************
 ********************************************************************/

/********************************************************************
 *********************     Local Data   *****************************
 ********************************************************************/

/********************************************************************
 *********************  Scheduled Routines  *************************
 ********************************************************************/
/* Fortran wrappers appear immediately after C definition of function */

 /*@@
   @routine    PUGH_RegisterDefaultRoutines
   @date       Wed Dec 14 16:51:22 2005
   @author     Tom Goodale
   @desc 
   Registers the default translation and topology generation routines.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
 
 @@*/

int PUGH_RegisterPUGHP2LRoutines(void)
{
  PUGH_RegisterP2L(CreateDirectTranslation,
                   DestroyDirectTranslation,
                   DirectPhysicalToLogical,
                   DirectLogicalToPhysical,
                   "direct");

  PUGH_RegisterP2L(CreateExampleTranslation,
                   DestroyExampleTranslation,
                   ExamplePhysicalToLogical,
                   ExampleLogicalToPhysical,
                   "example");

  return 0;
}

/********************************************************************
 *********************     External Routines   **********************
 ********************************************************************/


/********************************************************************
 *********************  Local Routines  *****************************
 ********************************************************************/

 /*@@
   @routine    CreateDirectTranslation
   @date       Wed Dec 14 19:00:57 2005
   @author     Tom Goodale
   @desc 
   Creates a dummy translation table as one isn't necessary for
   the direct case.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
 
 @@*/
void *CreateDirectTranslation(int dim, int *nprocs, int np)
{
  static int dummy = 1;
  return (void *)&dummy;
}

 /*@@
   @routine    DestroyDirectTranslation
   @date       Wed Dec 14 19:00:57 2005
   @author     Tom Goodale
   @desc 
   Routine which would destroy the translation table if there was one.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
 
 @@*/
static int DestroyDirectTranslation(void *table)
{
  return 0;
}

 /*@@
   @routine    DirectPhysicalToLogical
   @date       Wed Dec 14 19:02:56 2005
   @author     Tom Goodale
   @desc 
   Direct map of the physical processor number to the logical one.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
 
 @@*/
static int DirectPhysicalToLogical(void *table, int proc)
{
  return proc;
}

 /*@@
   @routine    DirectLogicalToPhysical
   @date       Wed Dec 14 19:02:56 2005
   @author     Tom Goodale
   @desc 
   Direct map of the logical processor number to the physical one.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
 
 @@*/
static int DirectLogicalToPhysical(void *table, int ijk)
{
  return ijk;
}

/*@@
   @routine    CreateExampleTranslation
   @date       Sat Oct  8 22:24:53 CDT 2005
   @author     Dylan Stark
   @desc
               Allocates an int[2][np] array where the first
               row maps id->ijk and the second row maps ijk->id.
   @enddesc
 @@*/
void *CreateExampleTranslation(int dim, int *nprocs, int np)
{
  int i;
  int **translation;
  
  translation    = (int **)malloc(2*sizeof(int *));
  if (translation)
  {
    translation[0] = malloc(np*sizeof(int));
    translation[1] = malloc(np*sizeof(int));

    if (translation[0] && translation[1])
    {
      for (i=0; i<np; i++)
      {
        translation[0][i]=i;
        translation[1][i]=i;
      }
    }
    else
    {
      if (translation[0])
      {
        free(translation[0]);
      }
      if (translation[1])
      {
        free(translation[1]);
      }
      
      free(translation);
      translation = NULL;
    }
  }

  return (void *)translation;
}

/*@@
   @routine    DestroyExampleTranslation
   @date       Sat Oct  8 22:31:52 CDT 2005
   @author     Dylan Stark
   @desc
               Deallocate memory for the translation.
   @enddesc
 @@*/
static int DestroyExampleTranslation(void *table)
{
  int **translation = (int **)table;

  free(translation[0]);
  free(translation[1]);
  free(translation);

  return 0;
}


/*@@
   @routine    ExamplePhysicalToLogical
   @date       Sat Oct  8 21:45:52 CDT 2005
   @author     Dylan Stark
   @desc
     Take an MPI processor number and map it to some logical index.
   @enddesc
 @@*/
static int ExamplePhysicalToLogical(void *table, int proc)
{
  int **translation = (int **)table;
  
  return translation[0][proc];
}

 /*@@
   @routine    LogicalToPhysical
   @date       Sat Oct  8 21:48:52 CDT 2005
   @author     Dylan Stark
   @desc
     Take a logical index and map it to a MPI processor number.
   @enddesc
@@*/
static int ExampleLogicalToPhysical(void *table, int ijk)
{
  int **translation = (int **)table;
  
  return translation[1][ijk];
}