aboutsummaryrefslogtreecommitdiff
path: root/src/nompi.c
blob: 4bfb283f57d87bc8838aec27c427bf0a496ff90c (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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#include <cctk.h>

#ifndef CCTK_MPI

#include <assert.h>
#include <stdlib.h>
#include <string.h>

// IRIX wants this before <time.h>
#if HAVE_SYS_TYPES_H
#  include <sys/types.h>
#endif

#if TIME_WITH_SYS_TIME
#  include <sys/time.h>
#  include <time.h>
#else
#  if HAVE_SYS_TIME_H
#    include <sys/time.h>
#  elif HAVE_TIME_H
#    include <time.h>
#  endif
#endif

#if HAVE_UNISTD_H
#  include <unistd.h>
#endif

#include "nompi.h"



int MPI_Abort (MPI_Comm const comm, int const errorcode)
{
  exit(errorcode);
}

int
MPI_Allgather (void* const sendbuf, int const sendcnt,
               MPI_Datatype const sendtype,
	       void* const recvbuf, int const recvcnt,
               MPI_Datatype const recvtype,
	       MPI_Comm const comm)
{
  assert (sendbuf);
  assert (sendcnt >= 0);
  assert (recvbuf);
  assert (recvcnt >= 0);
  assert (recvcnt == sendcnt);
  assert (recvtype == sendtype);
  MPI_Aint const recvsize = recvtype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, recvcnt * recvsize);
  return 0;
}

int
MPI_Allgatherv (void* const sendbuf, int const sendcnt,
                MPI_Datatype const sendtype,
                void* const recvbuf, int* const recvcnts, int* const recvoffs,
                MPI_Datatype const recvtype,
                MPI_Comm const comm)
{
  assert (sendbuf);
  assert (sendcnt >= 0);
  assert (recvbuf);
  assert (recvcnts);
  assert (recvcnts[0] == sendcnt);
  assert (recvoffs[0] == 0);
  assert (recvtype == sendtype);
  MPI_Aint const recvsize = recvtype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, recvcnts[0] * recvsize);
  return 0;
}

int
MPI_Allreduce (void* const sendbuf, void* const recvbuf, int const cnt,
               MPI_Datatype const datatype, MPI_Op const op,
               MPI_Comm const comm)
{
  assert (sendbuf);
  assert (recvbuf);
  assert (cnt >= 0);
  MPI_Aint const recvsize = datatype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, cnt * recvsize);
  return 0;
}

int
MPI_Alltoall (void* const sendbuf, int const sendcnt,
              MPI_Datatype const sendtype,
	      void* const recvbuf, int const recvcnt,
              MPI_Datatype const recvtype,
	      MPI_Comm const comm)
{
  assert (sendbuf);
  assert (sendcnt >= 0);
  assert (recvbuf);
  assert (recvcnt >= 0);
  assert (recvcnt == sendcnt);
  assert (recvtype == sendtype);
  MPI_Aint const recvsize = recvtype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, recvcnt * recvsize);
  return 0;
}

int
MPI_Alltoallv (void* const sendbuf, int* const sendcnts, int* const sendoffs,
               MPI_Datatype const sendtype,
	       void* const recvbuf, int* const recvcnts, int* const recvoffs,
               MPI_Datatype const recvtype,
	       MPI_Comm const comm)
{
  assert (sendbuf);
  assert (sendcnts);
  assert (sendoffs);
  assert (sendoffs[0] == 0);
  assert (recvbuf);
  assert (recvcnts);
  assert (recvcnts[0] == sendcnts[0]);
  assert (recvoffs);
  assert (recvoffs[0] == 0);
  assert (recvtype == sendtype);
  MPI_Aint const recvsize = recvtype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, recvcnts[0] * recvsize);
  return 0;
}

int
MPI_Barrier (MPI_Comm const comm)
{
  return 0;
}

int
MPI_Bcast (void* const buf, int const cnt,
           MPI_Datatype const datatype,
           int const root, MPI_Comm const comm)
{
  assert (buf);
  assert (cnt >= 0);
  assert (root == 0);
  return 0;
}

int
MPI_Comm_rank (MPI_Comm const comm, int* const rank)
{
  assert (rank);
  *rank = 0;
  return 0;
}

int
MPI_Comm_size (MPI_Comm const comm, int* const size)
{
  assert (size);
  *size = 1;
  return 0;
}

int
MPI_Comm_split (MPI_Comm const comm, int const color, int const key,
                MPI_Comm *const newcomm)
{
  assert (newcomm);
  return 0;
}

int
MPI_Dims_create (int const nnodes, int const ndims, int* const dims)
{
  assert (dims);
  int npoints = 1;
  for (int d=0; d<ndims; ++d) {
    assert (dims[d] >= 0);
    if (dims[d] > 0) npoints *= dims[d];
  }
  assert (npoints % nnodes == 0);
  assert (nnodes == 1);         /* Assume there is one node per MPI process */
  for (int d=0; d<ndims; ++d) {
    if (dims[d] == 0) dims[d] = 1;
  }
  return 0;
}

int
MPI_Finalize (void)
{
  return 0;
}

int
MPI_Gather (void* const sendbuf, int const sendcnt,
            MPI_Datatype const sendtype,
            void* const recvbuf, int const recvcnt,
            MPI_Datatype const recvtype,
            int const root, MPI_Comm const comm)
{
  assert (sendbuf);
  assert (sendcnt >= 0);
  assert (recvbuf);
  assert (recvcnt >= 0);
  assert (recvtype == sendtype);
  assert (root == 0);
  MPI_Aint const recvsize = recvtype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, recvcnt * recvsize);
  return 0;
}

int
MPI_Gatherv (void* const sendbuf, int const sendcnt,
             MPI_Datatype const sendtype,
             void* const recvbuf, int* const recvcnts, int* const recvoffs,
             MPI_Datatype const recvtype,
             int const root, MPI_Comm const comm)
{
  assert (sendbuf);
  assert (sendcnt >= 0);
  assert (recvbuf);
  assert (recvcnts);
  assert (recvcnts[0] >= 0);
  assert (recvcnts[0] == sendcnt);
  assert (recvoffs);
  assert (recvoffs[0] == 0);
  assert (recvtype == sendtype);
  assert (root == 0);
  MPI_Aint const recvsize = recvtype;
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, recvcnts[0] * recvsize);
  return 0;
}

int
MPI_Init (int* const argc, char*** const argv)
{
  return 0;
}

int
MPI_Irecv (void* const buf, int const cnt, MPI_Datatype const datatype,
           int const source, int const tag, MPI_Comm const comm,
           MPI_Request* const request)
{
  /* this should not be called */
  assert(0);
  return -1;
}

int
MPI_Isend (void* const buf, int const count, MPI_Datatype const datatype,
           int const dest, int const tag, MPI_Comm const comm,
           MPI_Request* const request)
{
  /* this should not be called */
  assert(0);
  return -1;
}

int
MPI_Pcontrol (int const level, ... )
{
  /* do nothing */
  return 0;
}

int
MPI_Reduce (void* const sendbuf, void* const recvbuf, int const cnt,
            MPI_Datatype const datatype, MPI_Op const op, int const root,
            MPI_Comm const comm)
{
  assert (sendbuf);
  assert (recvbuf);
  assert (cnt >= 0);
  assert (root == 0);
  int const datasize = datatype;
  assert (datasize > 0);
  memcpy (recvbuf, sendbuf, cnt * datasize);
  return 0;
}

int
MPI_Send (void* const buf, int const count, MPI_Datatype const datatype,
          int const dest, int const tag, MPI_Comm const comm)
{
  /* this should not be called */
  assert(0);
  return -1;
}

int
MPI_Ssend (void* const buf, int const count, MPI_Datatype const datatype,
           int const dest, int const tag, MPI_Comm const comm)
{
  /* this should not be called */
  assert(0);
  return -1;
}

int
MPI_Type_commit (MPI_Datatype* const datatype)
{
  /* do nothing */
  return 0;
}

int
MPI_Type_contiguous (int const cnt, MPI_Datatype const oldtype,
                     MPI_Datatype* const newtype)
{
  assert (oldtype > 0);
  *newtype = cnt * oldtype;
  return 0;
}

int
MPI_Type_free (MPI_Datatype* const datatype)
{
  /* do nothing */
  return 0;
}

int
MPI_Type_lb (MPI_Datatype const datatype, MPI_Aint* const displacement)
{
  assert (displacement);
  *displacement = 0;
  return 0;
}

int
MPI_Type_size (MPI_Datatype const datatype, int* const size)
{
  assert (datatype > 0);
  assert (size);
  *size = datatype;
  return 0;
}

int
MPI_Type_struct (int const cnt,
                 int* const array_of_blocklengths,
                 MPI_Aint* const array_of_displacements,
                 MPI_Datatype* const array_of_types,
                 MPI_Datatype* const newtype)
{
  assert (cnt >= 0);
  assert (array_of_blocklengths);
  assert (array_of_displacements);
  assert (array_of_types);
  assert (newtype);
  MPI_Aint newsize = 0;
  for (int n=0; n<cnt; ++n) {
    assert (array_of_displacements[n] >= 0);
    assert (array_of_blocklengths[n] >= 0);
    MPI_Aint size;
    if (array_of_types[n] == MPI_UB) {
      size = array_of_displacements[n];
    } else {
      assert (array_of_types[n] > 0);
      size =
        array_of_displacements[n] +
        array_of_blocklengths[n] * array_of_types[n];
    }
    if (size > newsize) newsize = size;
  }
  *newtype = newsize;
  return 0;
}

int
MPI_Type_ub (MPI_Datatype const datatype, MPI_Aint* const displacement)
{
  assert (datatype > 0);
  assert (displacement);
  *displacement = datatype;
  return 0;
}

int
MPI_Type_vector (int const cnt, int const blocklength, int const stride,
                 MPI_Datatype const oldtype, MPI_Datatype* const newtype)
{
  assert (cnt >= 0);
  assert (blocklength >= 0);
  assert (stride > 0);
  assert (oldtype > 0);
  if (cnt == 0) {
    *newtype = 0;
  } else {
    *newtype = (cnt * blocklength + (cnt-1) * stride) * oldtype;
  }
  return 0;
}

int
MPI_Waitall (int const cnt, MPI_Request* const array_of_requests,
             MPI_Status* const array_of_statuses)
{
  assert (cnt >= 0);
  assert (array_of_requests);
  return 0;
}

double
MPI_Wtime (void)
{
  struct timeval tp;
  gettimeofday (&tp, NULL);
  return tp.tv_sec + tp.tv_usec / 1.0e+6;
}



#endif  /* #ifndef CCTK_MPI */