-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxchange_halffield.c
476 lines (396 loc) · 18.1 KB
/
xchange_halffield.c
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/***********************************************************************
* Copyright (C) 2002,2003,2004,2005,2006,2007,2008 Carsten Urbach
*
* This file is part of tmLQCD.
*
* tmLQCD is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* tmLQCD is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with tmLQCD. If not, see <http://www.gnu.org/licenses/>.
***********************************************************************/
/**********************************************************
*
* exchange routines for half spinor fields
*
* Author: Carsten Urbach
*
**********************************************************/
#ifdef HAVE_CONFIG_H
# include<config.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#ifdef MPI
# include <mpi.h>
#endif
#include "global.h"
#if (defined XLC && defined BGL)
# include "bgl.h"
#endif
#include "mpi_init.h"
#include "su3.h"
#include "init_dirac_halfspinor.h"
#include "xchange_halffield.h"
#if (defined _USE_HALFSPINOR)
#if (defined _PERSISTENT)
MPI_Request prequests[16];
/* 2. */
void init_xchange_halffield() {
# ifdef MPI
# ifdef PARALLELT
int reqcount = 4;
# elif defined PARALLELXT
int reqcount = 8;
# elif defined PARALLELXYT
int reqcount = 12;
# elif defined PARALLELXYZT
int x0=0, x1=0, x2=0, ix=0;
int reqcount = 16;
# endif
# if (defined XLC && defined BGL)
__alignx(16, HalfSpinor);
# endif
/* send the data to the neighbour on the right in t direction */
/* recieve the data from the neighbour on the left in t direction */
MPI_Send_init((void*)(sendBuffer), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_up, 81, g_cart_grid, &prequests[0]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_dn, 81, g_cart_grid, &prequests[1]);
/* send the data to the neighbour on the left in t direction */
/* recieve the data from the neighbour on the right in t direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_dn, 82, g_cart_grid, &prequests[2]);
MPI_Recv_init((void*)(recvBuffer), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_up, 82, g_cart_grid, &prequests[3]);
# if (defined PARALLELXT || defined PARALLELXYT || defined PARALLELXYZT)
/* send the data to the neighbour on the right in x direction */
/* recieve the data from the neighbour on the left in x direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_up, 91, g_cart_grid, &prequests[4]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ/2), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_dn, 91, g_cart_grid, &prequests[5]);
/* send the data to the neighbour on the left in x direction */
/* recieve the data from the neighbour on the right in x direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ/2), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_dn, 92, g_cart_grid, &prequests[6]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_up, 92, g_cart_grid, &prequests[7]);
# endif
# if (defined PARALLELXYT || defined PARALLELXYZT)
/* send the data to the neighbour on the right in y direction */
/* recieve the data from the neighbour on the left in y direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_up, 101, g_cart_grid, &prequests[8]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ/2), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_dn, 101, g_cart_grid, &prequests[9]);
/* send the data to the neighbour on the leftt in y direction */
/* recieve the data from the neighbour on the right in y direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ/2), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_dn, 102, g_cart_grid, &prequests[10]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_up, 102, g_cart_grid, &prequests[11]);
# endif
# if (defined PARALLELXYZT)
/* send the data to the neighbour on the right in z direction */
/* recieve the data from the neighbour on the left in z direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ),
T*LX*LY*12/2, MPI_DOUBLE, g_nb_z_up, 503, g_cart_grid, &prequests[12]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ + T*LX*LY/2),
T*LX*LY*12/2, MPI_DOUBLE, g_nb_z_dn, 503, g_cart_grid, &prequests[13]);
/* send the data to the neighbour on the left in z direction */
/* recieve the data from the neighbour on the right in z direction */
MPI_Send_init((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ + T*LX*LY/2),
12*T*LX*LY/2, MPI_DOUBLE, g_nb_z_dn, 504, g_cart_grid, &prequests[14]);
MPI_Recv_init((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ),
T*LX*LY*12/2, MPI_DOUBLE, g_nb_z_up, 504, g_cart_grid, &prequests[15]);
# endif
# endif /* MPI */
return;
}
/* 3. */
void xchange_halffield() {
# ifdef MPI
MPI_Status status[16];
# ifdef PARALLELT
int reqcount = 4;
# elif defined PARALLELXT
int reqcount = 8;
# elif defined PARALLELXYT
int reqcount = 12;
# elif defined PARALLELXYZT
int x0=0, x1=0, x2=0, ix=0;
int reqcount = 16;
# endif
# if (defined XLC && defined BGL)
__alignx(16, HalfSpinor);
# endif
MPI_Startall(reqcount, prequests);
MPI_Waitall(reqcount, prequests, status);
# endif /* MPI */
return;
}
#else /* def (_USE_SHMEM || _PERSISTENT) */
# if defined _INDEX_INDEP_GEOM
/* 4. -IIG */
void xchange_halffield() {
# ifdef MPI
MPI_Request requests[16];
MPI_Status status[16];
# if ((defined PARALLELT) || (defined PARALLELX))
int reqcount = 4;
# elif ((defined PARALLELXT) || (defined PARALLELXY))
int reqcount = 8;
# elif ((defined PARALLELXYT) || (defined PARALLELXYZ))
int reqcount = 12;
# elif defined PARALLELXYZT
int reqcount = 16;
# endif
# if (defined XLC && defined BGL)
__alignx(16, HalfSpinor);
# endif
#ifdef _KOJAK_INST
#pragma pomp inst begin(xchangehalf)
#endif
# if (defined PARALLELT || defined PARALLELXT || defined PARALLELXYT || defined PARALLELXYZT )
/* send the data to the neighbour on the right in t direction */
/* recieve the data from the neighbour on the left in t direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_t), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_up, 81, g_cart_grid, &requests[0]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_t + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_dn, 81, g_cart_grid, &requests[1]);
/* send the data to the neighbour on the left in t direction */
/* recieve the data from the neighbour on the right in t direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_t + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_dn, 82, g_cart_grid, &requests[2]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_t), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_up, 82, g_cart_grid, &requests[3]);
# endif
# if (defined PARALLELXT || defined PARALLELXYT || defined PARALLELXYZT || defined PARALLELX || defined PARALLELXY || defined PARALLELXYZ )
/* send the data to the neighbour on the right in x direction */
/* recieve the data from the neighbour on the left in x direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_x), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_up, 91, g_cart_grid, &requests[4]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_x + T*LY*LZ/2), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_dn, 91, g_cart_grid, &requests[5]);
/* send the data to the neighbour on the left in x direction */
/* recieve the data from the neighbour on the right in x direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_x + T*LY*LZ/2), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_dn, 92, g_cart_grid, &requests[6]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_x), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_up, 92, g_cart_grid, &requests[7]);
# endif
# if (defined PARALLELXYT || defined PARALLELXYZT || defined PARALLELXY || defined PARALLELXYZ )
/* send the data to the neighbour on the right in y direction */
/* recieve the data from the neighbour on the left in y direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_y), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_up, 101, g_cart_grid, &requests[8]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_y + T*LX*LZ/2), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_dn, 101, g_cart_grid, &requests[9]);
/* send the data to the neighbour on the leftt in y direction */
/* recieve the data from the neighbour on the right in y direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_y + T*LX*LZ/2), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_dn, 102, g_cart_grid, &requests[10]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_y), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_up, 102, g_cart_grid, &requests[11]);
# endif
# if (defined PARALLELXYZT || defined PARALLELXYZ )
/* send the data to the neighbour on the right in z direction */
/* recieve the data from the neighbour on the left in z direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_z), T*LX*LY*12/2, MPI_DOUBLE,
g_nb_z_up, 503, g_cart_grid, &requests[12]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_z + T*LX*LY/2), T*LX*LY*12/2, MPI_DOUBLE,
g_nb_z_dn, 503, g_cart_grid, &requests[13]);
/* send the data to the neighbour on the left in z direction */
/* recieve the data from the neighbour on the right in z direction */
MPI_Isend((void*)(sendBuffer + g_HS_shift_z + T*LX*LY/2), 12*T*LX*LY/2, MPI_DOUBLE,
g_nb_z_dn, 504, g_cart_grid, &requests[14]);
MPI_Irecv((void*)(recvBuffer + g_HS_shift_z), T*LX*LY*12/2, MPI_DOUBLE,
g_nb_z_up, 504, g_cart_grid, &requests[15]);
# endif
MPI_Waitall(reqcount, requests, status);
# endif /* MPI */
return;
#ifdef _KOJAK_INST
#pragma pomp inst end(xchangehalf)
#endif
}
# else /* _INDEX_INDEP_GEOM */
/* 4. */
void xchange_halffield() {
# ifdef MPI
MPI_Request requests[16];
MPI_Status status[16];
# ifdef PARALLELT
int reqcount = 4;
# elif defined PARALLELXT
int reqcount = 8;
# elif defined PARALLELXYT
int reqcount = 12;
# elif defined PARALLELXYZT
int reqcount = 16;
# endif
# if (defined XLC && defined BGL)
__alignx(16, HalfSpinor);
# endif
#ifdef _KOJAK_INST
#pragma pomp inst begin(xchangehalf)
#endif
/* send the data to the neighbour on the right in t direction */
/* recieve the data from the neighbour on the left in t direction */
MPI_Isend((void*)(sendBuffer), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_up, 81, g_cart_grid, &requests[0]);
MPI_Irecv((void*)(recvBuffer + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_dn, 81, g_cart_grid, &requests[1]);
/* send the data to the neighbour on the left in t direction */
/* recieve the data from the neighbour on the right in t direction */
MPI_Isend((void*)(sendBuffer+ LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_dn, 82, g_cart_grid, &requests[2]);
MPI_Irecv((void*)(recvBuffer), LX*LY*LZ*12/2, MPI_DOUBLE,
g_nb_t_up, 82, g_cart_grid, &requests[3]);
# if (defined PARALLELXT || defined PARALLELXYT || defined PARALLELXYZT)
/* send the data to the neighbour on the right in x direction */
/* recieve the data from the neighbour on the left in x direction */
MPI_Isend((void*)(sendBuffer + LX*LY*LZ), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_up, 91, g_cart_grid, &requests[4]);
MPI_Irecv((void*)(recvBuffer+ LX*LY*LZ + T*LY*LZ/2), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_dn, 91, g_cart_grid, &requests[5]);
/* send the data to the neighbour on the left in x direction */
/* recieve the data from the neighbour on the right in x direction */
MPI_Isend((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ/2), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_dn, 92, g_cart_grid, &requests[6]);
MPI_Irecv((void*)(recvBuffer + LX*LY*LZ), T*LY*LZ*12/2, MPI_DOUBLE,
g_nb_x_up, 92, g_cart_grid, &requests[7]);
# endif
# if (defined PARALLELXYT || defined PARALLELXYZT)
/* send the data to the neighbour on the right in y direction */
/* recieve the data from the neighbour on the left in y direction */
MPI_Isend((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_up, 101, g_cart_grid, &requests[8]);
MPI_Irecv((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ/2), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_dn, 101, g_cart_grid, &requests[9]);
/* send the data to the neighbour on the leftt in y direction */
/* recieve the data from the neighbour on the right in y direction */
MPI_Isend((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ/2), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_dn, 102, g_cart_grid, &requests[10]);
MPI_Irecv((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ), T*LX*LZ*12/2, MPI_DOUBLE,
g_nb_y_up, 102, g_cart_grid, &requests[11]);
# endif
# if (defined PARALLELXYZT)
/* send the data to the neighbour on the right in z direction */
/* recieve the data from the neighbour on the left in z direction */
MPI_Isend((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ),
T*LX*LY*12/2, MPI_DOUBLE, g_nb_z_up, 503, g_cart_grid, &requests[12]);
MPI_Irecv((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ + T*LX*LY/2),
T*LX*LY*12/2, MPI_DOUBLE, g_nb_z_dn, 503, g_cart_grid, &requests[13]);
/* send the data to the neighbour on the left in z direction */
/* recieve the data from the neighbour on the right in z direction */
MPI_Isend((void*)(sendBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ + T*LX*LY/2),
12*T*LX*LY/2, MPI_DOUBLE, g_nb_z_dn, 504, g_cart_grid, &requests[14]);
MPI_Irecv((void*)(recvBuffer + LX*LY*LZ + T*LY*LZ + T*LX*LZ),
T*LX*LY*12/2, MPI_DOUBLE, g_nb_z_up, 504, g_cart_grid, &requests[15]);
# endif
MPI_Waitall(reqcount, requests, status);
# endif /* MPI */
return;
#ifdef _KOJAK_INST
#pragma pomp inst end(xchangehalf)
#endif
}
# endif /* _INDEX_INDEP_GEOM */
#endif /* def (_USE_SHMEM || _PERSISTENT) */
# if defined _INDEX_INDEP_GEOM
// IIG xchange_halffield32 still Missing
# else // defined _INDEX_INDEP_GEOM
/* 32-2. */
void xchange_halffield32() {
# ifdef MPI
MPI_Request requests[16];
MPI_Status status[16];
# ifdef PARALLELT
int reqcount = 4;
# elif defined PARALLELXT
int reqcount = 8;
# elif defined PARALLELXYT
int reqcount = 12;
# elif defined PARALLELXYZT
int reqcount = 16;
# endif
#ifdef _KOJAK_INST
#pragma pomp inst begin(xchangehalf32)
#endif
# if (defined XLC && defined BGL)
__alignx(16, HalfSpinor32);
# endif
/* send the data to the neighbour on the right in t direction */
/* recieve the data from the neighbour on the left in t direction */
MPI_Isend((void*)(sendBuffer32), LX*LY*LZ*12/2, MPI_FLOAT,
g_nb_t_up, 81, g_cart_grid, &requests[0]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_FLOAT,
g_nb_t_dn, 81, g_cart_grid, &requests[1]);
/* send the data to the neighbour on the left in t direction */
/* recieve the data from the neighbour on the right in t direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ/2), LX*LY*LZ*12/2, MPI_FLOAT,
g_nb_t_dn, 82, g_cart_grid, &requests[2]);
MPI_Irecv((void*)(recvBuffer32), LX*LY*LZ*12/2, MPI_FLOAT,
g_nb_t_up, 82, g_cart_grid, &requests[3]);
# if (defined PARALLELXT || defined PARALLELXYT || defined PARALLELXYZT)
/* send the data to the neighbour on the right in x direction */
/* recieve the data from the neighbour on the left in x direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ), T*LY*LZ*12/2, MPI_FLOAT,
g_nb_x_up, 91, g_cart_grid, &requests[4]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ + T*LY*LZ/2), T*LY*LZ*12/2, MPI_FLOAT,
g_nb_x_dn, 91, g_cart_grid, &requests[5]);
/* send the data to the neighbour on the left in x direction */
/* recieve the data from the neighbour on the right in x direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ + T*LY*LZ/2), T*LY*LZ*12/2, MPI_FLOAT,
g_nb_x_dn, 92, g_cart_grid, &requests[6]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ), T*LY*LZ*12/2, MPI_FLOAT,
g_nb_x_up, 92, g_cart_grid, &requests[7]);
# endif
# if (defined PARALLELXYT || defined PARALLELXYZT)
/* send the data to the neighbour on the right in y direction */
/* recieve the data from the neighbour on the left in y direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ + T*LY*LZ), T*LX*LZ*12/2, MPI_FLOAT,
g_nb_y_up, 101, g_cart_grid, &requests[8]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ + T*LY*LZ + T*LX*LZ/2), T*LX*LZ*12/2, MPI_FLOAT,
g_nb_y_dn, 101, g_cart_grid, &requests[9]);
/* send the data to the neighbour on the leftt in y direction */
/* recieve the data from the neighbour on the right in y direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ + T*LY*LZ + T*LX*LZ/2), T*LX*LZ*12/2, MPI_FLOAT,
g_nb_y_dn, 102, g_cart_grid, &requests[10]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ + T*LY*LZ), T*LX*LZ*12/2, MPI_FLOAT,
g_nb_y_up, 102, g_cart_grid, &requests[11]);
# endif
# if (defined PARALLELXYZT)
/* send the data to the neighbour on the right in z direction */
/* recieve the data from the neighbour on the left in z direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ + T*LY*LZ + T*LX*LZ),
T*LX*LY*12/2, MPI_FLOAT, g_nb_z_up, 503, g_cart_grid, &requests[12]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ + T*LY*LZ + T*LX*LZ + T*LX*LY/2),
T*LX*LY*12/2, MPI_FLOAT, g_nb_z_dn, 503, g_cart_grid, &requests[13]);
/* send the data to the neighbour on the left in z direction */
/* recieve the data from the neighbour on the right in z direction */
MPI_Isend((void*)(sendBuffer32 + LX*LY*LZ + T*LY*LZ + T*LX*LZ + T*LX*LY/2),
12*T*LX*LY/2, MPI_FLOAT, g_nb_z_dn, 504, g_cart_grid, &requests[14]);
MPI_Irecv((void*)(recvBuffer32 + LX*LY*LZ + T*LY*LZ + T*LX*LZ),
T*LX*LY*12/2, MPI_FLOAT, g_nb_z_up, 504, g_cart_grid, &requests[15]);
# endif
MPI_Waitall(reqcount, requests, status);
# endif /* MPI */
return;
#ifdef _KOJAK_INST
#pragma pomp inst end(xchangehalf32)
#endif
}
# endif /* defined _INDEX_INDEP_GEOM */
#endif /* defined _USE_HALFSPINOR */