aboutsummaryrefslogtreecommitdiff
path: root/src/slab.c
blob: fc95c756baf9354a0026dadb4b51b2c6362d2846 (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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
/* $Header$ */

/*
  TODO:
  Provide facilities for dim > 3
  Set up the slab exchange information in advance
  Test slabbing without MPI
  Allow using / not setting the ghost zones
  Allow not using / not setting the boundaries
  Allow different numbers of ghost zones at the lower and upper boundary
*/



/* Print debug information? */
#undef DEBUG

/* Perform expensive self-checks? */
#undef CHECK

/* Omit all self-checks?  (Overrides CHECK) */
#define NDEBUG

/* Byte value for poison checks: use 255 for nan, or e.g. 113 for a
   large value */
#define POISON_VALUE 254



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

#include "cctk.h"
#include "cctk_DefineThorn.h"
#include "util_ErrorCodes.h"
#include "util_Table.h"

#ifdef CCTK_MPI
#  include <mpi.h>
#endif

#include "slab.h"



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

CCTK_FILEVERSION(TAT_Slab_slab_c);



#ifdef DEBUG
#  define ifdebug
#else
#  define ifdebug while (0)
#endif

#ifdef CHECK
#  define ifcheck
#else
#  define ifcheck while (0)
#endif

#ifdef NDEBUG
#  define check(x) ((x) ? 0 : CCTK_WARN (0, "internal error"))
#else
#  define check(x) assert (x)
#endif



static int timer_init;
static int timer_copy_in;
static int timer_xfer;
static int timer_copy_back;

void Slab_InitTimers (void)
{
  timer_init      = CCTK_TimerCreate ("Slab/init");
  timer_copy_in   = CCTK_TimerCreate ("Slab/copy in");
  timer_xfer      = CCTK_TimerCreate ("Slab/xfer");
  timer_copy_back = CCTK_TimerCreate ("Slab/copy back");
}

void Slab_PrintTimers (void)
{
  CCTK_TimerPrintDataI (timer_init     , -1);
  CCTK_TimerPrintDataI (timer_copy_in  , -1);
  CCTK_TimerPrintDataI (timer_xfer     , -1);
  CCTK_TimerPrintDataI (timer_copy_back, -1);
}



/* Find out which driver to use */
#ifdef CCTK_MPI
#  if defined CARPET_CARPET
#    include "Carpet/Carpet/src/carpet_public.h"
#  endif
#  if defined CACTUSPUGH_PUGH
#    include "CactusPUGH/PUGH/src/include/pugh.h"
#  endif
#endif



#ifdef CCTK_MPI
/* Determine MPI type sizes */

#  define CACTUS_MPI_BYTE MPI_CHAR

#  define CACTUS_MPI_INT1 MPI_CHAR

#  if SIZEOF_SHORT_INT == 2
#    define CACTUS_MPI_INT2 MPI_SHORT
#  elif SIZEOF_INT == 2
#    define CACTUS_MPI_INT2 MPI_INT
#  elif SIZEOF_LONG_INT == 2
#    define CACTUS_MPI_INT2 MPI_LONG
#  elif SIZEOF_LONG_LONG == 2
#    define CACTUS_MPI_INT2 MPI_LONG_LONG_INT
#  endif

#  if SIZEOF_SHORT_INT == 4
#    define CACTUS_MPI_INT4 MPI_SHORT
#  elif SIZEOF_INT == 4
#    define CACTUS_MPI_INT4 MPI_INT
#  elif SIZEOF_LONG_INT == 4
#    define CACTUS_MPI_INT4 MPI_LONG
#  elif SIZEOF_LONG_LONG == 4
#    define CACTUS_MPI_INT4 MPI_LONG_LONG_INT
#  endif

#  if SIZEOF_SHORT_INT == 8
#    define CACTUS_MPI_INT8 MPI_SHORT
#  elif SIZEOF_INT == 8
#    define CACTUS_MPI_INT8 MPI_INT
#  elif SIZEOF_LONG_INT == 8
#    define CACTUS_MPI_INT8 MPI_LONG
#  elif SIZEOF_LONG_LONG == 8
#    define CACTUS_MPI_INT8 MPI_LONG_LONG_INT
#  endif

#  if SIZEOF_FLOAT == 4
#    define CACTUS_MPI_REAL4 MPI_FLOAT
#  elif SIZEOF_DOUBLE == 4
#    define CACTUS_MPI_REAL4 MPI_DOUBLE
#  elif SIZEOF_LONG_DOUBLE == 4
#    define CACTUS_MPI_REAL4 MPI_LONG_DOUBLE
#  endif

#  if SIZEOF_FLOAT == 8
#    define CACTUS_MPI_REAL8 MPI_FLOAT
#  elif SIZEOF_DOUBLE == 8
#    define CACTUS_MPI_REAL8 MPI_DOUBLE
#  elif SIZEOF_LONG_DOUBLE == 8
#    define CACTUS_MPI_REAL8 MPI_LONG_DOUBLE
#  endif

#  if SIZEOF_FLOAT == 16
#    define CACTUS_MPI_REAL16 MPI_FLOAT
#  elif SIZEOF_DOUBLE == 16
#    define CACTUS_MPI_REAL16 MPI_DOUBLE
#  elif SIZEOF_LONG_DOUBLE == 16
#    define CACTUS_MPI_REAL16 MPI_LONG_DOUBLE
#  endif

static MPI_Datatype CACTUS_MPI_COMPLEX8;
static MPI_Datatype CACTUS_MPI_COMPLEX16;
static MPI_Datatype CACTUS_MPI_COMPLEX32;

#endif



/* Replace MPI functions if MPI is disabled */
#ifndef CCTK_MPI

typedef int MPI_Comm;

typedef enum {
  CACTUS_MPI_BYTE      = CCTK_VARIABLE_BYTE,
  CACTUS_MPI_INT       = CCTK_VARIABLE_INT,
  CACTUS_MPI_INT1      = CCTK_VARIABLE_INT1,
  CACTUS_MPI_INT2      = CCTK_VARIABLE_INT2,
  CACTUS_MPI_INT4      = CCTK_VARIABLE_INT4,
  CACTUS_MPI_INT8      = CCTK_VARIABLE_INT8,
  CACTUS_MPI_REAL      = CCTK_VARIABLE_REAL,
  CACTUS_MPI_REAL4     = CCTK_VARIABLE_REAL4,
  CACTUS_MPI_REAL8     = CCTK_VARIABLE_REAL8,
  CACTUS_MPI_REAL16    = CCTK_VARIABLE_REAL16,
  CACTUS_MPI_COMPLEX   = CCTK_VARIABLE_COMPLEX,
  CACTUS_MPI_COMPLEX8  = CCTK_VARIABLE_COMPLEX8,
  CACTUS_MPI_COMPLEX16 = CCTK_VARIABLE_COMPLEX16,
  CACTUS_MPI_COMPLEX32 = CCTK_VARIABLE_COMPLEX32
} MPI_Datatype;

static MPI_Datatype MPI_INT;

typedef enum { MPI_MIN, MPI_MAX } MPI_Op;

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

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

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

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

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

static int
MPI_Alltoallv (void * sendbuf, int * sendcnt, int * sendoff, int sendtype,
	       void * recvbuf, int * recvcnt, int * recvoff, int recvtype,
	       MPI_Comm comm)
{
  int recvsize;
  assert (sendbuf);
  assert (recvbuf);
  assert (sendcnt);
  assert (recvcnt);
  assert (*sendcnt == *recvcnt);
  assert (*recvcnt >= 0);
  assert (sendoff);
  assert (recvoff);
  assert (*sendoff == 0);
  assert (*recvoff == 0);
  assert (sendtype == recvtype);
  recvsize = CCTK_VarTypeSize (recvtype);
  assert (recvsize > 0);
  memcpy (recvbuf, sendbuf, *recvcnt * recvsize);
  return 0;
}

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

#endif



/* Get the MPI COMM_WOLRD communicator from the driver */
static MPI_Comm
get_mpi_comm (const cGH * restrict const cctkGH)
{
#ifdef CCTK_MPI
  if (CCTK_IsFunctionAliased ("GetMPICommWorld")) {
    return * (MPI_Comm const *) GetMPICommWorld (cctkGH);
  }
#  if defined CARPET_CARPET
  {
    static int Carpet_active = -1;
    if (Carpet_active == -1) Carpet_active = CCTK_IsThornActive ("Carpet");
    assert (Carpet_active >= 0);
    if (Carpet_active) return CarpetMPIComm ();
  }
#  endif
#  if defined CACTUSPUGH_PUGH
  {
    static int PUGH_active = -1;
    if (PUGH_active == -1) PUGH_active = CCTK_IsThornActive ("PUGH");
    assert (PUGH_active >= 0);
    if (PUGH_active) return PUGH_pGH(cctkGH)->PUGH_COMM_WORLD;
  }
#  endif
  return MPI_COMM_WORLD;
#else
  return 0;
#endif
}



/* Initialise the MPI datatypes for complex variables */
void
Slab_InitMPIDatatypes (void)
{
#ifdef CCTK_MPI
#  ifdef CCTK_REAL4
  MPI_Type_contiguous (2, CACTUS_MPI_REAL4, &CACTUS_MPI_COMPLEX8);
  MPI_Type_commit (&CACTUS_MPI_COMPLEX8);
#  endif
#  ifdef CCTK_REAL8
  MPI_Type_contiguous (2, CACTUS_MPI_REAL8, &CACTUS_MPI_COMPLEX16);
  MPI_Type_commit (&CACTUS_MPI_COMPLEX16);
#  endif
#  ifdef CCTK_REAL16
  MPI_Type_contiguous (2, CACTUS_MPI_REAL16, &CACTUS_MPI_COMPLEX32);
  MPI_Type_commit (&CACTUS_MPI_COMPLEX32);
#  endif
#endif
  
#ifndef CCTK_MPI
  switch (sizeof(int)) {
#ifdef CCTK_INT1
  case sizeof(CCTK_INT1): MPI_INT = CCTK_VARIABLE_INT1; break;
#endif
#ifdef CCTK_INT2
  case sizeof(CCTK_INT2): MPI_INT = CCTK_VARIABLE_INT2; break;
#endif
#ifdef CCTK_INT4
  case sizeof(CCTK_INT4): MPI_INT = CCTK_VARIABLE_INT4; break;
#endif
#ifdef CCTK_INT8
  case sizeof(CCTK_INT8): MPI_INT = CCTK_VARIABLE_INT8; break;
#endif
  default: assert(0);
  }
#endif
}



/* Normalise a Cactus datatype */
static int
normal_type (int cactustype)
{
  switch (cactustype) {
  case CCTK_VARIABLE_INT:
#ifdef CCTK_INTEGER_PRECISION_1
    return CCTK_VARIABLE_INT1;
#endif
#ifdef CCTK_INTEGER_PRECISION_2
    return CCTK_VARIABLE_INT2;
#endif
#ifdef CCTK_INTEGER_PRECISION_4
    return CCTK_VARIABLE_INT4;
#endif
#ifdef CCTK_INTEGER_PRECISION_8
    return CCTK_VARIABLE_INT8;
#endif
    assert (0);
  case CCTK_VARIABLE_REAL:
#ifdef CCTK_REAL_PRECISION_4
    return CCTK_VARIABLE_REAL4;
#endif
#ifdef CCTK_REAL_PRECISION_8
    return CCTK_VARIABLE_REAL8;
#endif
#ifdef CCTK_REAL_PRECISION_16
    return CCTK_VARIABLE_REAL16;
#endif
    assert (0);
  case CCTK_VARIABLE_COMPLEX:
#ifdef CCTK_REAL_PRECISION_4
    return CCTK_VARIABLE_COMPLEX8;
#endif
#ifdef CCTK_REAL_PRECISION_8
    return CCTK_VARIABLE_COMPLEX16;
#endif
#ifdef CCTK_REAL_PRECISION_16
    return CCTK_VARIABLE_COMPLEX32;
#endif
    assert (0);
  }
  return cactustype;
}



/* Find the MPI datatype corresponding to a Cactus datatype */
static MPI_Datatype mpi_type (int const cactustype)
{
  int const normaltype = normal_type (cactustype);
  switch (normaltype) {
  case CCTK_VARIABLE_BYTE: return CACTUS_MPI_BYTE;
#ifdef CCTK_INT1
  case CCTK_VARIABLE_INT1: return CACTUS_MPI_INT1;
#endif
#ifdef CCTK_INT2
  case CCTK_VARIABLE_INT2: return CACTUS_MPI_INT2;
#endif
#ifdef CCTK_INT4
  case CCTK_VARIABLE_INT4: return CACTUS_MPI_INT4;
#endif
#ifdef CCTK_INT8
  case CCTK_VARIABLE_INT8: return CACTUS_MPI_INT8;
#endif
#ifdef CCTK_REAL4
  case CCTK_VARIABLE_REAL4: return CACTUS_MPI_REAL4;
  case CCTK_VARIABLE_COMPLEX8: return CACTUS_MPI_COMPLEX8;
#endif
#ifdef CCTK_REAL8
  case CCTK_VARIABLE_REAL8: return CACTUS_MPI_REAL8;
  case CCTK_VARIABLE_COMPLEX16: return CACTUS_MPI_COMPLEX16;
#endif
#ifdef CCTK_REAL16
  case CCTK_VARIABLE_REAL16: return CACTUS_MPI_REAL16;
  case CCTK_VARIABLE_COMPLEX32: return CACTUS_MPI_COMPLEX32;
#endif
  }
  assert (0);
  CCTK_WARN (0, "internal error");
  return CACTUS_MPI_BYTE;       /* not reached */
}



/*****************************************************************************/



struct bbox {
  int off, len, str;
};

struct arrays {
  struct bbox global, local, active, slab;
};

struct info {
  struct arrays src, dst;
  int xpose;
  int flip;
};



static inline int roundup (int const x, int const y)
{
  assert (x >= 0);
  assert (y > 0);
  return (x + y - 1) / y * y;
}



static void bbox_print (struct bbox const * restrict const bbox)
{
  assert (bbox);
  printf
    ("[%d:%d:%d]",
     bbox->off, bbox->off + (bbox->len - 1) * bbox->str, bbox->str);
}

static void bbox_check (struct bbox const * restrict const bbox)
{
  assert (bbox);
  assert (bbox->len >= 0);
  assert (bbox->str > 0);
}

static void global2bbox (struct slabinfo const * restrict const slab,
			 struct bbox           * restrict const bbox)
{
  assert (slab);
  assert (bbox);
  assert (slab->gsh >= 0);
  bbox->off = 0;
  bbox->len = slab->gsh;
  bbox->str = 1;
  bbox_check (bbox);
}

static void local2bbox (struct slabinfo const * restrict const slab,
			struct bbox           * restrict const bbox)
{
  assert (slab);
  assert (bbox);
  assert (slab->lbnd >= 0);
  assert (slab->lsh >= 0);
  assert (slab->lbnd + slab->lsh <= slab->gsh);
  bbox->off = slab->lbnd;
  bbox->len = slab->lsh;
  bbox->str = 1;
  bbox_check (bbox);
}

static void active2bbox (struct slabinfo const * restrict const slab,
			 struct bbox           * restrict const bbox,
			 int                              const useghosts)
{
  int nlghostzones;
  int nughostzones;
  assert (slab);
  assert (bbox);
  assert (useghosts == 0 || useghosts == 1);
  assert (slab->lbnd >= 0);
  assert (slab->lsh >= 0);
  assert (slab->lbnd + slab->lsh <= slab->gsh);
  assert (slab->lbbox == 0 || slab->lbbox == 1);
  assert (slab->ubbox == 0 || slab->ubbox == 1);
  assert (slab->nghostzones >= 0);
  nlghostzones = slab->lbbox || useghosts ? 0 : slab->nghostzones;
  nughostzones = slab->ubbox || useghosts ? 0 : slab->nghostzones;
  bbox->off = slab->lbnd + nlghostzones;
  bbox->len = slab->lsh - nlghostzones - nughostzones;
  bbox->str = 1;
  bbox_check (bbox);
}

static void slab2bbox (struct slabinfo const * restrict const slab,
		       struct bbox           * restrict const bbox)
{
  assert (slab);
  assert (bbox);
  bbox->off = slab->off;
  bbox->len = slab->len;
  bbox->str = slab->str;
  bbox_check (bbox);
}

static int bbox_iscontained (struct bbox const * restrict const inner,
			     struct bbox const * restrict const outer)
{
  int inner_last;
  int outer_last;
  bbox_check (inner);
  bbox_check (outer);
  inner_last = inner->off + (inner->len - 1) * inner->str;
  outer_last = outer->off + (outer->len - 1) * outer->str;
  return inner->off >= outer->off && inner_last <= outer_last;
}

static void bbox_clip (struct bbox       * restrict const inner,
		       struct bbox const * restrict const outer)
{
  int inner_last;
  int outer_last;
  bbox_check (inner);
  bbox_check (outer);
  inner_last = inner->off + (inner->len - 1) * inner->str;
  outer_last = outer->off + (outer->len - 1) * outer->str;
  if (inner->off < outer->off) {
    inner->off += roundup (outer->off - inner->off, inner->str);
  }
  if (inner_last > outer_last) {
    inner_last -= roundup (inner_last - outer_last, inner->str);
  }
  assert ((inner_last - inner->off) % inner->str == 0);
  if (inner_last >= inner->off) {
    inner->len = (inner_last - inner->off + inner->str) / inner->str;
  } else {
    inner->len = 0;
  }
  bbox_check (inner);
}

static void bbox_xform (struct bbox       * restrict const ydst,
			struct bbox const * restrict const ysrc,
			struct bbox const * restrict const xdst,
			struct bbox const * restrict const xsrc,
			int                          const flip)
{
  int xsrc_last;
  int xdst_last;
  int ysrc_last;
  int ydst_last;
  assert (ydst);
  bbox_check (ysrc);
  bbox_check (xdst);
  bbox_check (xsrc);
  assert (ysrc->str == xsrc->str);
  xsrc_last = xsrc->off + (xsrc->len - 1) * xsrc->str;
  xdst_last = xdst->off + (xdst->len - 1) * xdst->str;
  ysrc_last = ysrc->off + (ysrc->len - 1) * ysrc->str;
  ydst->str = xdst->str;
  assert ((ysrc->off - xsrc->off) % ysrc->str == 0);
  ydst->off = xdst->off + (ysrc->off - xsrc->off) / ysrc->str * ydst->str;
  ydst_last = xdst->off + (ysrc_last - xsrc->off) / ysrc->str * ydst->str;
  if (flip) {
    int const off = ydst->off;
    int const last = ydst_last;
    ydst->off = xdst->off + xdst_last - last;
    ydst_last = xdst_last - (off - xdst->off);
  }
  assert ((ysrc_last - xsrc->off) % ysrc->str == 0);
  assert (ydst_last - ydst->off + ydst->str >= 0);
  ydst->len = (ydst_last - ydst->off + ydst->str) / ydst->str;
  bbox_check (ydst);
}



int Slab_MultiTransfer (cGH             const         * const cctkGH,
                        int                             const dim,
                        struct xferinfo const         * const xferinfo,
                        int                             const options,
                        int                             const nvars,
                        int             const         * const srctypes,
                        void            const * const * const srcptrs,
                        int             const         * const dsttypes,
                        void                  * const * const dstptrs)
{
  struct info * restrict info;
  size_t srclentot, dstlentot;
  
  struct info * restrict allinfo;
  struct bbox * restrict srcdetail;
  struct bbox * restrict dstdetail;
  
  int * restrict srcelems;
  int * restrict srccount;
  int * restrict srcoffset;
  int * restrict dstelems;
  int * restrict dstcount;
  int * restrict dstoffset;
  
  int srctype;
  int dsttype;
  int srctypesize;
  int dsttypesize;
  void * restrict srcdata;
  void * restrict dstdata;
  
  MPI_Comm comm;
  int size, rank;
  MPI_Datatype srcdatatype, dstdatatype;
  
  int var;
  int i, j, k;
  int n;
  int d;
  
  /* Check arguments */
  check (cctkGH);
  check (dim >= 0);
  check (xferinfo);
  check (nvars >= 0);
  check (nvars==0 || srctypes);
  for (var=0; var<nvars; ++var) check (srctypes[var] >= 0);
  check (nvars==0 || srcptrs);
/*   for (var=0; var<nvars; ++var) check (srcptrs[var]); */
  check (nvars==0 || dsttypes);
  for (var=0; var<nvars; ++var) check (dsttypes[var] >= 0);
  check (nvars==0 || dstptrs);
/*   for (var=0; var<nvars; ++var) check (dstptrs[var]); */
  
  if (nvars==0) return 0;
  
  CCTK_TimerStartI (timer_init);
  
  check (dim <= SLAB_MAXDIM);
  info = malloc (SLAB_MAXDIM * sizeof *info);
  check (info);
  for (d=0; d<dim; ++d) {
    global2bbox (&xferinfo[d].src, &info[d].src.global);
    local2bbox  (&xferinfo[d].src, &info[d].src.local);
    active2bbox (&xferinfo[d].src, &info[d].src.active, 0);
    slab2bbox   (&xferinfo[d].src, &info[d].src.slab);
    check (bbox_iscontained (&info[d].src.active, &info[d].src.local));
    check (bbox_iscontained (&info[d].src.local, &info[d].src.global));
    
    global2bbox (&xferinfo[d].dst, &info[d].dst.global);
    local2bbox  (&xferinfo[d].dst, &info[d].dst.local);
    active2bbox (&xferinfo[d].dst, &info[d].dst.active, 1);
    slab2bbox   (&xferinfo[d].dst, &info[d].dst.slab);
    check (bbox_iscontained (&info[d].dst.active, &info[d].dst.local));
    check (bbox_iscontained (&info[d].dst.local, &info[d].dst.global));
    
    info[d].xpose = xferinfo[d].xpose;
    check (info[d].xpose >= 0 && info[d].xpose < dim);
    info[d].flip = xferinfo[d].flip;
    check (info[d].flip == 0 || info[d].flip == 1);
  }
  for (d=dim; d<SLAB_MAXDIM; ++d) {
    static struct bbox const fake_bbox = { 0, 1, 1 };
    static struct arrays const fake_arrays
      = { { 0, 1, 1 }, { 0, 1, 1 }, { 0, 1, 1 }, { 0, 1, 1 } };
    
    bbox_check (&fake_bbox);
    
    info[d].src = fake_arrays;
    check (bbox_iscontained (&info[d].src.active, &info[d].src.local));
    check (bbox_iscontained (&info[d].src.local, &info[d].src.global));
    
    info[d].dst = fake_arrays;
    check (bbox_iscontained (&info[d].dst.active, &info[d].dst.local));
    check (bbox_iscontained (&info[d].dst.local, &info[d].dst.global));
    
    info[d].xpose = d;
    check (info[d].xpose >= 0 && info[d].xpose < SLAB_MAXDIM);
    info[d].flip = 0;
    check (info[d].flip == 0 || info[d].flip == 1);
  }
  
  ifcheck {
    ifdebug printf ("srcinfo:\n");
    for (d=0; d<SLAB_MAXDIM; ++d) {
      printf ("   src.global d=%d ", d);
      bbox_print (&info[d].src.global);
      printf ("\n");
      printf ("   src.local  d=%d ", d);
      bbox_print (&info[d].src.local);
      printf ("\n");
      printf ("   src.active d=%d ", d);
      bbox_print (&info[d].src.active);
      printf ("\n");
      printf ("   src.slab   d=%d ", d);
      bbox_print (&info[d].src.slab);
      printf ("\n");
    }
    ifdebug printf ("dstinfo:\n");
    for (d=0; d<SLAB_MAXDIM; ++d) {
      printf ("   dst.global d=%d ", d);
      bbox_print (&info[d].dst.global);
      printf ("\n");
      printf ("   dst.local  d=%d ", d);
      bbox_print (&info[d].dst.local);
      printf ("\n");
      printf ("   dst.active d=%d ", d);
      bbox_print (&info[d].dst.active);
      printf ("\n");
      printf ("   dst.slab   d=%d ", d);
      bbox_print (&info[d].dst.slab);
      printf ("\n");
    }
    ifdebug printf ("info:\n");
    for (d=0; d<SLAB_MAXDIM; ++d) {
      printf ("   xpose      d=%d %d\n", d, info[d].xpose);
      printf ("   flip       d=%d %d\n", d, info[d].flip);
    }
  }
  
  {
    int iflag[SLAB_MAXDIM];
    for (d=0; d<SLAB_MAXDIM; ++d) {
      iflag[d] = 0;
    }
    for (d=0; d<SLAB_MAXDIM; ++d) {
      assert (! iflag[info[d].xpose]);
      iflag[info[d].xpose] = 1;
    }
    for (d=0; d<SLAB_MAXDIM; ++d) {
      assert (iflag[d]);
    }
    for (d=0; d<SLAB_MAXDIM; ++d) {
      assert (info[info[d].xpose].src.slab.len == info[d].dst.slab.len);
    }
  }
  
  srclentot = 1;
  dstlentot = 1;
  for (d=0; d<SLAB_MAXDIM; ++d) {
    srclentot *= info[d].src.local.len;
    dstlentot *= info[d].dst.local.len;
  }
  
  /* Check arguments (continued) */
  for (var=0; var<nvars; ++var) if (srclentot > 0) assert (srcptrs[var]);
  for (var=0; var<nvars; ++var) if (dstlentot > 0) assert (dstptrs[var]);
  
  
  
  {
    CCTK_POINTER tmp;
    int const iret = Util_TableGetPointer (options, &tmp, "comm");
    if (iret == 1) {
      /* There was an entry, use it */
      comm = * (MPI_Comm const *) tmp;
    } else if (iret == UTIL_ERROR_BAD_HANDLE
               || iret == UTIL_ERROR_TABLE_NO_SUCH_KEY) {
      /* There was no entry, use a default */
      comm = get_mpi_comm (cctkGH);
    } else {
      /* Something went wrong, abort */
      check (0);
    }
  }
  
  ifcheck {
    ifdebug fflush (stdout);
    MPI_Barrier (comm);
  }
  
  MPI_Comm_size (comm, &size);
  MPI_Comm_rank (comm, &rank);
  
  ifcheck {
    static int count = 424242;
    int mincount, maxcount;
    ifdebug fflush (stdout);
    MPI_Allreduce (&count, &mincount, 1, MPI_INT, MPI_MIN, comm);
    MPI_Allreduce (&count, &maxcount, 1, MPI_INT, MPI_MAX, comm);
    assert (mincount == count);
    assert (maxcount == count);
    ++ count;
  }
  
  check (nvars >= 1);
  srctype = srctypes[0];
  dsttype = dsttypes[0];
  for (var=0; var<nvars; ++var) {
    check (srctypes[var] == srctype);
    check (dsttypes[var] == dsttype);
  }
  check (srctype == dsttype);
  srctypesize = CCTK_VarTypeSize (srctype);
  check (srctypesize > 0);
  dsttypesize = CCTK_VarTypeSize (dsttype);
  check (dsttypesize > 0);
  srcdatatype = mpi_type (srctype);
  check (srcdatatype >= 0);
  dstdatatype = mpi_type (dsttype);
  check (dstdatatype >= 0);
  
  
  
  allinfo = malloc (size * SLAB_MAXDIM * sizeof *allinfo);
  check (allinfo);
  {
    int const info_nints = sizeof(struct info) / sizeof(int);
    ifdebug fflush (stdout);
    MPI_Allgather
      (info,    SLAB_MAXDIM * info_nints, MPI_INT,
       allinfo, SLAB_MAXDIM * info_nints, MPI_INT, comm);
  }
  
  for (n = 0; n < size; ++n) {
    for (d=0; d<SLAB_MAXDIM; ++d) {
      assert
        (allinfo[n*SLAB_MAXDIM+d].src.global.off == info[d].src.global.off);
      assert
        (allinfo[n*SLAB_MAXDIM+d].src.global.len == info[d].src.global.len);
      assert
        (allinfo[n*SLAB_MAXDIM+d].src.global.str == info[d].src.global.str);
      assert
        (allinfo[n*SLAB_MAXDIM+d].dst.global.off == info[d].dst.global.off);
      assert
        (allinfo[n*SLAB_MAXDIM+d].dst.global.len == info[d].dst.global.len);
      assert
        (allinfo[n*SLAB_MAXDIM+d].dst.global.str == info[d].dst.global.str);
      assert
        (allinfo[n*SLAB_MAXDIM+d].src.local.str == info[d].src.local.str);
      assert
        (allinfo[n*SLAB_MAXDIM+d].dst.local.str == info[d].dst.local.str);
      assert
        (allinfo[n*SLAB_MAXDIM+d].src.active.str == info[d].src.active.str);
      assert
        (allinfo[n*SLAB_MAXDIM+d].dst.active.str == info[d].dst.active.str);
      /* 2003-03-01 schnetter: I don't know why the following two
         should be necessary */
      assert
        (allinfo[n*SLAB_MAXDIM+d].src.slab.str == info[d].src.slab.str);
      assert
        (allinfo[n*SLAB_MAXDIM+d].dst.slab.str == info[d].dst.slab.str);
      assert (allinfo[n*SLAB_MAXDIM+d].xpose == info[d].xpose);
      assert (allinfo[n*SLAB_MAXDIM+d].flip == info[d].flip);
    }
  }
  
  
  
  srcdetail = malloc (size * SLAB_MAXDIM * sizeof *srcdetail);
  check (srcdetail);
  for (n = 0; n < size; ++n) {
    ifdebug printf ("srcdetail n=%d:\n", n);
    for (d=0; d<SLAB_MAXDIM; ++d) {
      srcdetail[n*SLAB_MAXDIM+d] = allinfo[n*SLAB_MAXDIM+d].src.slab;
      ifdebug printf ("   src.slab                d=%d ", d);
      ifdebug bbox_print (&srcdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
      bbox_clip (&srcdetail[n*SLAB_MAXDIM+d], &info[d].src.active);
      ifdebug printf ("   clipped with src.active d=%d ", d);
      ifdebug bbox_print (&srcdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
    }
    for (d=0; d<SLAB_MAXDIM; ++d) {
      struct bbox whereto;
      struct bbox wherefrom;
      whereto = allinfo[n*SLAB_MAXDIM+d].dst.slab;
      ifdebug printf ("   dst.slab                d=%d ", info[d].xpose);
      ifdebug bbox_print (&whereto);
      ifdebug printf ("\n");
      bbox_clip (&whereto, &allinfo[n*SLAB_MAXDIM+d].dst.active);
      ifdebug printf ("   whereto                 d=%d ", info[d].xpose);
      ifdebug bbox_print (&whereto);
      ifdebug printf ("\n");
      bbox_xform
	(&wherefrom, &whereto,
	 &allinfo[n*SLAB_MAXDIM+info[d].xpose].src.slab,
         &allinfo[n*SLAB_MAXDIM+d].dst.slab,
	 info[d].flip);
      ifdebug printf ("   wherefrom               d=%d ", info[d].xpose);
      ifdebug bbox_print (&wherefrom);
      ifdebug printf ("\n");
      bbox_clip (&srcdetail[n*SLAB_MAXDIM+info[d].xpose], &wherefrom);
      ifdebug printf ("   clipped with wherefrom  d=%d ", info[d].xpose);
      ifdebug bbox_print (&srcdetail[n*SLAB_MAXDIM+info[d].xpose]);
      ifdebug printf ("\n");
    }
  }
  
  srcelems = malloc (size * sizeof *srcelems);
  check (srcelems);
  srccount = malloc (size * sizeof *srccount);
  check (srccount);
  srcoffset = malloc ((size + 1) * sizeof *srcoffset);
  check (srcoffset);
  srcoffset[0] = 0;
  for (n = 0; n < size; ++n) {
    srcelems[n] = 1;
    for (d=0; d<SLAB_MAXDIM; ++d) {
      srcelems[n] *= srcdetail[n*SLAB_MAXDIM+d].len;
    }
    srccount[n] = nvars * srcelems[n];
    ifdebug printf
      ("srccnt n=%d offset=%d count=%d\n", n, srcoffset[n], srccount[n]);
    srcoffset[n+1] = srcoffset[n] + srccount[n];
  }
  srcdata = malloc (srcoffset[size] * srctypesize);
  check (nvars==0 || srcdata);
  ifcheck {
    if (srctype == CCTK_VARIABLE_REAL) {
      CCTK_REAL * restrict const srcdataptr = srcdata;
      CCTK_REAL marker;
      memset (&marker, POISON_VALUE, sizeof marker);
      for (i = 0; i < srcoffset[size]; ++i) {
        memcpy (&srcdataptr[i], &marker, sizeof marker);
      }
    }
  }
  
  dstdetail = malloc (size * SLAB_MAXDIM * sizeof *dstdetail);
  check (dstdetail);
  for (n = 0; n < size; ++n) {
    ifdebug printf ("dstdetail n=%d:\n", n);
    for (d=0; d<SLAB_MAXDIM; ++d) {
/*       dstdetail[n*SLAB_MAXDIM+d] = allinfo[n*SLAB_MAXDIM+d].dst.slab; */
      dstdetail[n*SLAB_MAXDIM+d] = info[d].dst.slab;
      ifdebug printf ("   dst.slab                d=%d ", d);
      ifdebug bbox_print (&dstdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
      bbox_clip (&dstdetail[n*SLAB_MAXDIM+d], &info[d].dst.active);
      ifdebug printf ("   clipped with dst.active d=%d ", d);
      ifdebug bbox_print (&dstdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
    }
    for (d=0; d<SLAB_MAXDIM; ++d) {
      struct bbox wherefrom;
      struct bbox whereto;
/*       wherefrom = allinfo[n*SLAB_MAXDIM+info[d].xpose].src.slab; */
      wherefrom = info[info[d].xpose].src.slab;
      ifdebug printf ("   src.slab                d=%d ", d);
      ifdebug bbox_print (&dstdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
      bbox_clip (&wherefrom, &allinfo[n*SLAB_MAXDIM+info[d].xpose].src.active);
      ifdebug printf ("   wherefrom               d=%d ", d);
      ifdebug bbox_print (&dstdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
      bbox_xform
	(&whereto, &wherefrom,
	 &allinfo[n*SLAB_MAXDIM+d].dst.slab,
         &allinfo[n*SLAB_MAXDIM+info[d].xpose].src.slab,
	 info[d].flip);
      ifdebug printf ("   whereto                 d=%d ", d);
      ifdebug bbox_print (&dstdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
      bbox_clip (&dstdetail[n*SLAB_MAXDIM+d], &whereto);
      ifdebug printf ("   clipped with whereto    d=%d ", d);
      ifdebug bbox_print (&dstdetail[n*SLAB_MAXDIM+d]);
      ifdebug printf ("\n");
    }
  }
  
  dstelems = malloc (size * sizeof *dstelems);
  check (dstelems);
  dstcount = malloc (size * sizeof *dstcount);
  check (dstcount);
  dstoffset = malloc ((size + 1) * sizeof *dstoffset);
  check (dstoffset);
  dstoffset[0] = 0;
  for (n = 0; n < size; ++n) {
    dstelems[n] = 1;
    for (d=0; d<SLAB_MAXDIM; ++d) {
      dstelems[n] *= dstdetail[n*SLAB_MAXDIM+d].len;
    }
    dstcount[n] = nvars * dstelems[n];
    ifdebug printf
      ("dstcnt n=%d offset=%d count=%d\n", n, dstoffset[n], dstcount[n]);
    dstoffset[n+1] = dstoffset[n] + dstcount[n];
  }
  dstdata = malloc (dstoffset[size] * dsttypesize);
  check (nvars==0 || dstdata);
  ifcheck {
    if (dsttype == CCTK_VARIABLE_REAL) {
      CCTK_REAL * restrict const dstdataptr = dstdata;
      CCTK_REAL marker;
      memset (&marker, POISON_VALUE, sizeof marker);
      for (i = 0; i < dstoffset[size]; ++i) {
        memcpy (&dstdataptr[i], &marker, sizeof marker);
      }
    }
  }
  
  check (srccount[rank] == dstcount[rank]);
  
  ifcheck {
    int * restrict src2count;
    int * restrict dst2count;
    src2count = malloc (size * sizeof *src2count);
    check (src2count);
    dst2count = malloc (size * sizeof *dst2count);
    check (dst2count);
    ifdebug fflush (stdout);
    MPI_Alltoall (srccount, 1, MPI_INT, src2count, 1, MPI_INT, comm);
    MPI_Alltoall (dstcount, 1, MPI_INT, dst2count, 1, MPI_INT, comm);
    for (n = 0; n < size; ++n) {
      check (src2count[n] == dstcount[n]);
      check (dst2count[n] == srccount[n]);
    }
    free (src2count);
    free (dst2count);
  }
  
  CCTK_TimerStopI (timer_init);
  
  
  
  CCTK_TimerStartI (timer_copy_in);
  
  for (n = 0; n < size; ++n) {
    check (SLAB_MAXDIM == 3);
    
    if (info[0].xpose==0 && info[1].xpose==1 && info[2].xpose==2
        && srcdetail[n*SLAB_MAXDIM  ].str==1 && srcdetail[n*SLAB_MAXDIM+1].str==1 && srcdetail[n*SLAB_MAXDIM+2].str==1
        && srctype == CCTK_VARIABLE_REAL) {
      /* Optimised version for a special case: no transposing */
      
      int const srcoffi = info[0].src.local.off;
      int const srcoffj = info[1].src.local.off;
      int const srcoffk = info[2].src.local.off;
      
      int const srcleni = info[0].src.local.len;
      int const srclenj = info[1].src.local.len;
      int const srclenk = info[2].src.local.len;
      
      int const srcdetailoffi = srcdetail[n*SLAB_MAXDIM+0].off;
      int const srcdetailoffj = srcdetail[n*SLAB_MAXDIM+1].off;
      int const srcdetailoffk = srcdetail[n*SLAB_MAXDIM+2].off;
      
      int const srcdetailleni = srcdetail[n*SLAB_MAXDIM+0].len;
      int const srcdetaillenj = srcdetail[n*SLAB_MAXDIM+1].len;
      int const srcdetaillenk = srcdetail[n*SLAB_MAXDIM+2].len;
      
      if (n==0) assert (srcoffset[n]==0);
      if (n<size-1) assert (srcoffset[n+1]==srcoffset[n]+srcdetailleni*srcdetaillenj*srcdetaillenk);
      
      for (k = 0; k < srcdetaillenk; ++k) {
        for (j = 0; j < srcdetaillenj; ++j) {
          for (i = 0; i < srcdetailleni; ++i) {
            int const srcindi = srcdetailoffi + i - srcoffi;
            int const srcindj = srcdetailoffj + j - srcoffj;
            int const srcindk = srcdetailoffk + k - srcoffk;
            size_t const srcind = srcindi + srcleni * (srcindj + srclenj * srcindk);
            size_t const bufind = i + srcdetailleni * (j + srcdetaillenj * k);
            ifcheck assert (srcindi>=0 && srcindi<srcleni);
            ifcheck assert (srcindj>=0 && srcindj<srclenj);
            ifcheck assert (srcindk>=0 && srcindk<srclenk);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)srcdata)[srcoffset[n] + var * srcelems[n] + bufind] = ((const CCTK_REAL*)srcptrs[var])[srcind];
            }
          }
        }
      }

    } else if (info[0].xpose==1 && info[1].xpose==0 && info[2].xpose==2
               && srcdetail[n*SLAB_MAXDIM  ].str==1 && srcdetail[n*SLAB_MAXDIM+1].str==1 && srcdetail[n*SLAB_MAXDIM+2].str==1
               && srctype == CCTK_VARIABLE_REAL) {
      /* Optimised version for a special case: transpose x and y */
      
      int const srcoffi = info[0].src.local.off;
      int const srcoffj = info[1].src.local.off;
      int const srcoffk = info[2].src.local.off;
      
      int const srcleni = info[0].src.local.len;
      int const srclenj = info[1].src.local.len;
      int const srclenk = info[2].src.local.len;
      
      int const srcdetailoffi = srcdetail[n*SLAB_MAXDIM+0].off;
      int const srcdetailoffj = srcdetail[n*SLAB_MAXDIM+1].off;
      int const srcdetailoffk = srcdetail[n*SLAB_MAXDIM+2].off;
      
      int const srcdetailleni = srcdetail[n*SLAB_MAXDIM+0].len;
      int const srcdetaillenj = srcdetail[n*SLAB_MAXDIM+1].len;
      int const srcdetaillenk = srcdetail[n*SLAB_MAXDIM+2].len;
      
      if (n==0) assert (srcoffset[n]==0);
      if (n<size-1) assert (srcoffset[n+1]==srcoffset[n]+srcdetailleni*srcdetaillenj*srcdetaillenk);
      
      for (k = 0; k < srcdetaillenk; ++k) {
        for (j = 0; j < srcdetaillenj; ++j) {
          for (i = 0; i < srcdetailleni; ++i) {
            int const srcindi = srcdetailoffi + i - srcoffi;
            int const srcindj = srcdetailoffj + j - srcoffj;
            int const srcindk = srcdetailoffk + k - srcoffk;
            size_t const srcind = srcindi + srcleni * (srcindj + srclenj * srcindk);
            size_t const bufind = j + srcdetaillenj * (i + srcdetailleni * k);
            ifcheck assert (srcindi>=0 && srcindi<srcleni);
            ifcheck assert (srcindj>=0 && srcindj<srclenj);
            ifcheck assert (srcindk>=0 && srcindk<srclenk);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)srcdata)[srcoffset[n] + var * srcelems[n] + bufind] = ((const CCTK_REAL*)srcptrs[var])[srcind];
            }
          }
        }
      }
      
    } else if (srcdetail[n*SLAB_MAXDIM  ].str==1 && srcdetail[n*SLAB_MAXDIM+1].str==1 && srcdetail[n*SLAB_MAXDIM+2].str==1
               && srctype == CCTK_VARIABLE_REAL) {
      /* Optimised version for CCTK_REAL and stride 1 */
      
      for (k = 0; k < srcdetail[n*SLAB_MAXDIM+info[2].xpose].len; ++k) {
        for (j = 0; j < srcdetail[n*SLAB_MAXDIM+info[1].xpose].len; ++j) {
          for (i = 0; i < srcdetail[n*SLAB_MAXDIM+info[0].xpose].len; ++i) {
            int ipos[SLAB_MAXDIM];
            int srcipos[SLAB_MAXDIM];
            int bufipos[SLAB_MAXDIM];
            size_t srcind;
            size_t bufind;
            ipos[0] = i;
            ipos[1] = j;
            ipos[2] = k;
            for (d=0; d<SLAB_MAXDIM; ++d) {
              int const c = info[d].xpose;
              srcipos[c] = srcdetail[n*SLAB_MAXDIM+c].off + ipos[d];
              assert (srcipos[c] >= info[c].src.local.off
                      && srcipos[c] < info[c].src.local.off + info[c].src.local.len);
              assert (srcipos[c] >= allinfo[n*SLAB_MAXDIM+c].src.slab.off
                      && srcipos[c] <= allinfo[n*SLAB_MAXDIM+c].src.slab.off + (allinfo[n*SLAB_MAXDIM+c].src.slab.len - 1));
              bufipos[d] = ipos[d];
              assert (bufipos[d] >= 0 && bufipos[d] < srcdetail[n*SLAB_MAXDIM+c].len);
            }
            srcind = 0;
            bufind = 0;
            for (d=SLAB_MAXDIM-1; d>=0; --d) {
              int const c = info[d].xpose;
              srcind = srcind * info[d].src.local.len + srcipos[d] - info[d].src.local.off;
              bufind = bufind * srcdetail[n*SLAB_MAXDIM+c].len + bufipos[d];
            }
            assert (srcind < srclentot);
            assert (bufind < (size_t)srccount[n]);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)srcdata)[srcoffset[n] + var * srcelems[n] + bufind]
                = ((const CCTK_REAL*)srcptrs[var])[srcind];
            }
          }
        }
      }
      
    } else {
      /* Generic, unoptimised version */
      
      for (k = 0; k < srcdetail[n*SLAB_MAXDIM+info[2].xpose].len; ++k) {
        for (j = 0; j < srcdetail[n*SLAB_MAXDIM+info[1].xpose].len; ++j) {
          for (i = 0; i < srcdetail[n*SLAB_MAXDIM+info[0].xpose].len; ++i) {
            int ipos[SLAB_MAXDIM];
            int srcipos[SLAB_MAXDIM];
            int bufipos[SLAB_MAXDIM];
            size_t srcind;
            size_t bufind;
            ipos[0] = i;
            ipos[1] = j;
            ipos[2] = k;
            for (d=0; d<SLAB_MAXDIM; ++d) {
              int const c = info[d].xpose;
              srcipos[c] = srcdetail[n*SLAB_MAXDIM+c].off + ipos[d] * srcdetail[n*SLAB_MAXDIM+c].str;
              assert (srcipos[c] >= info[c].src.local.off
                      && srcipos[c] < info[c].src.local.off + info[c].src.local.len);
              assert (srcipos[c] >= allinfo[n*SLAB_MAXDIM+c].src.slab.off
                      && srcipos[c] <= allinfo[n*SLAB_MAXDIM+c].src.slab.off + (allinfo[n*SLAB_MAXDIM+c].src.slab.len - 1) * allinfo[n*SLAB_MAXDIM+c].src.slab.str);
              assert ((srcipos[c] - allinfo[n*SLAB_MAXDIM+c].src.slab.off) % allinfo[n*SLAB_MAXDIM+c].src.slab.str == 0);
              bufipos[d] = ipos[d];
              assert (bufipos[d] >= 0 && bufipos[d] < srcdetail[n*SLAB_MAXDIM+c].len);
            }
            srcind = 0;
            bufind = 0;
            for (d=SLAB_MAXDIM-1; d>=0; --d) {
              int const c = info[d].xpose;
              srcind = srcind * info[d].src.local.len + srcipos[d] - info[d].src.local.off;
              bufind = bufind * srcdetail[n*SLAB_MAXDIM+c].len + bufipos[d];
            }
            assert (srcind < srclentot);
            assert (bufind < (size_t)srccount[n]);
/* 	  ((CCTK_REAL*)srcdata)[srcoffset[n] + bufind] */
/* 	    = ((const CCTK_REAL*)srcptr)[srcind]; */
            for (var=0; var<nvars; ++var) {
              memcpy ((char *) srcdata + srctypesize * (srcoffset[n] + var * srcelems[n] + bufind),
                      (const char *) srcptrs[var] + srctypesize * srcind,
                      srctypesize);
            }
          }
        }
      }
    
    }
  } /* for n */
  
  ifcheck {
    if (srctype == CCTK_VARIABLE_REAL) {
      const CCTK_REAL * restrict const srcdataptr = srcdata;
      CCTK_REAL marker;
      memset (&marker, POISON_VALUE, sizeof marker);
      for (i = 0; i < srcoffset[size]; ++i) {
	assert (memcmp(&srcdataptr[i], &marker, sizeof marker) != 0);
      }
    }
  }
  CCTK_TimerStopI (timer_copy_in);
  
  
  
  CCTK_TimerStartI (timer_xfer);
  ifdebug fflush (stdout);
  MPI_Alltoallv
    (srcdata, srccount, srcoffset, srcdatatype,
     dstdata, dstcount, dstoffset, dstdatatype, comm);
  
  ifcheck {
    if (dsttype == CCTK_VARIABLE_REAL) {
      for (var=0; var<nvars; ++var) {
        const CCTK_REAL * restrict const dstdataptr = dstdata;
        CCTK_REAL marker;
        memset (&marker, POISON_VALUE, sizeof marker);
        for (i = 0; i < dstoffset[size]; ++i) {
          assert (memcmp(&dstdataptr[i], &marker, sizeof marker) != 0);
        }
      }
    }
  }
  CCTK_TimerStopI (timer_xfer);
  
  
  
  CCTK_TimerStartI (timer_copy_back);
  for (n = 0; n < size; ++n) {
    check (SLAB_MAXDIM == 3);
    
    if (info[0].flip==0 && info[1].flip==0 && info[2].flip==0
        && dstdetail[n*SLAB_MAXDIM  ].str==1 && dstdetail[n*SLAB_MAXDIM+1].str==1 && dstdetail[n*SLAB_MAXDIM+2].str==1
        && dsttype == CCTK_VARIABLE_REAL) {
      /* Optimised version for a special case: no flipping */
      
      int const dstoffi = info[0].dst.local.off;
      int const dstoffj = info[1].dst.local.off;
      int const dstoffk = info[2].dst.local.off;
      
      int const dstleni = info[0].dst.local.len;
      int const dstlenj = info[1].dst.local.len;
      int const dstlenk = info[2].dst.local.len;
      
      int const dstdetailoffi = dstdetail[n*SLAB_MAXDIM+0].off;
      int const dstdetailoffj = dstdetail[n*SLAB_MAXDIM+1].off;
      int const dstdetailoffk = dstdetail[n*SLAB_MAXDIM+2].off;
      
      int const dstdetailleni = dstdetail[n*SLAB_MAXDIM+0].len;
      int const dstdetaillenj = dstdetail[n*SLAB_MAXDIM+1].len;
      int const dstdetaillenk = dstdetail[n*SLAB_MAXDIM+2].len;
      
      for (k = 0; k < dstdetaillenk; ++k) {
        for (j = 0; j < dstdetaillenj; ++j) {
          for (i = 0; i < dstdetailleni; ++i) {
            size_t const bufind = i + dstdetailleni * (j + dstdetaillenj * k);
            int const dstindi = dstdetailoffi + i - dstoffi;
            int const dstindj = dstdetailoffj + j - dstoffj;
            int const dstindk = dstdetailoffk + k - dstoffk;
            size_t const dstind = dstindi + dstleni * (dstindj + dstlenj * dstindk);
            ifcheck assert (dstindi>=0 && dstindi<dstleni);
            ifcheck assert (dstindj>=0 && dstindj<dstlenj);
            ifcheck assert (dstindk>=0 && dstindk<dstlenk);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)dstptrs[var])[dstind]
                = ((const CCTK_REAL*)dstdata)[dstoffset[n] + var * dstelems[n] + bufind];
            }
          }
        }
      }
    
    } else if (info[0].flip==1 && info[1].flip==0 && info[2].flip==0
               && dstdetail[n*SLAB_MAXDIM  ].str==1 && dstdetail[n*SLAB_MAXDIM+1].str==1 && dstdetail[n*SLAB_MAXDIM+2].str==1
               && dsttype == CCTK_VARIABLE_REAL) {
      /* Optimised version for a special case: flip in x direction */
      
      int const dstoffi = info[0].dst.local.off;
      int const dstoffj = info[1].dst.local.off;
      int const dstoffk = info[2].dst.local.off;
      
      int const dstleni = info[0].dst.local.len;
      int const dstlenj = info[1].dst.local.len;
      int const dstlenk = info[2].dst.local.len;
      
      int const dstdetailoffi = dstdetail[n*SLAB_MAXDIM+0].off;
      int const dstdetailoffj = dstdetail[n*SLAB_MAXDIM+1].off;
      int const dstdetailoffk = dstdetail[n*SLAB_MAXDIM+2].off;
      
      int const dstdetailleni = dstdetail[n*SLAB_MAXDIM+0].len;
      int const dstdetaillenj = dstdetail[n*SLAB_MAXDIM+1].len;
      int const dstdetaillenk = dstdetail[n*SLAB_MAXDIM+2].len;
      
      for (k = 0; k < dstdetaillenk; ++k) {
        for (j = 0; j < dstdetaillenj; ++j) {
          for (i = 0; i < dstdetailleni; ++i) {
            size_t const bufind = (dstdetailleni - 1 - i) + dstdetailleni * (j + dstdetaillenj * k);
            int const dstindi = dstdetailoffi + i - dstoffi;
            int const dstindj = dstdetailoffj + j - dstoffj;
            int const dstindk = dstdetailoffk + k - dstoffk;
            size_t const dstind = dstindi + dstleni * (dstindj + dstlenj * dstindk);
            ifcheck assert (dstindi>=0 && dstindi<dstleni);
            ifcheck assert (dstindj>=0 && dstindj<dstlenj);
            ifcheck assert (dstindk>=0 && dstindk<dstlenk);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)dstptrs[var])[dstind]
                = ((const CCTK_REAL*)dstdata)[dstoffset[n] + var * dstelems[n] + bufind];
            }
          }
        }
      }
    
    } else if (info[0].flip==0 && info[1].flip==1 && info[2].flip==0
               && dstdetail[n*SLAB_MAXDIM  ].str==1 && dstdetail[n*SLAB_MAXDIM+1].str==1 && dstdetail[n*SLAB_MAXDIM+2].str==1
               && dsttype == CCTK_VARIABLE_REAL) {
      /* Optimised version for a special case: flip in y direction */
      
      int const dstoffi = info[0].dst.local.off;
      int const dstoffj = info[1].dst.local.off;
      int const dstoffk = info[2].dst.local.off;
      
      int const dstleni = info[0].dst.local.len;
      int const dstlenj = info[1].dst.local.len;
      int const dstlenk = info[2].dst.local.len;
      
      int const dstdetailoffi = dstdetail[n*SLAB_MAXDIM+0].off;
      int const dstdetailoffj = dstdetail[n*SLAB_MAXDIM+1].off;
      int const dstdetailoffk = dstdetail[n*SLAB_MAXDIM+2].off;
      
      int const dstdetailleni = dstdetail[n*SLAB_MAXDIM+0].len;
      int const dstdetaillenj = dstdetail[n*SLAB_MAXDIM+1].len;
      int const dstdetaillenk = dstdetail[n*SLAB_MAXDIM+2].len;
      
      for (k = 0; k < dstdetaillenk; ++k) {
        for (j = 0; j < dstdetaillenj; ++j) {
          for (i = 0; i < dstdetailleni; ++i) {
            size_t const bufind = i + dstdetailleni * ((dstdetaillenj - 1 - j) + dstdetaillenj * k);
            int const dstindi = dstdetailoffi + i - dstoffi;
            int const dstindj = dstdetailoffj + j - dstoffj;
            int const dstindk = dstdetailoffk + k - dstoffk;
            size_t const dstind = dstindi + dstleni * (dstindj + dstlenj * dstindk);
            ifcheck assert (dstindi>=0 && dstindi<dstleni);
            ifcheck assert (dstindj>=0 && dstindj<dstlenj);
            ifcheck assert (dstindk>=0 && dstindk<dstlenk);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)dstptrs[var])[dstind]
                = ((const CCTK_REAL*)dstdata)[dstoffset[n] + var * dstelems[n] + bufind];
            }
          }
        }
      }
    
    } else if (info[0].flip==1 && info[1].flip==1 && info[2].flip==0
               && dstdetail[n*SLAB_MAXDIM  ].str==1 && dstdetail[n*SLAB_MAXDIM+1].str==1 && dstdetail[n*SLAB_MAXDIM+2].str==1
               && dsttype == CCTK_VARIABLE_REAL) {
      /* Optimised version for a special case: flip in y direction */
      
      int const dstoffi = info[0].dst.local.off;
      int const dstoffj = info[1].dst.local.off;
      int const dstoffk = info[2].dst.local.off;
      
      int const dstleni = info[0].dst.local.len;
      int const dstlenj = info[1].dst.local.len;
      int const dstlenk = info[2].dst.local.len;
      
      int const dstdetailoffi = dstdetail[n*SLAB_MAXDIM+0].off;
      int const dstdetailoffj = dstdetail[n*SLAB_MAXDIM+1].off;
      int const dstdetailoffk = dstdetail[n*SLAB_MAXDIM+2].off;
      
      int const dstdetailleni = dstdetail[n*SLAB_MAXDIM+0].len;
      int const dstdetaillenj = dstdetail[n*SLAB_MAXDIM+1].len;
      int const dstdetaillenk = dstdetail[n*SLAB_MAXDIM+2].len;
      
      for (k = 0; k < dstdetaillenk; ++k) {
        for (j = 0; j < dstdetaillenj; ++j) {
          for (i = 0; i < dstdetailleni; ++i) {
            size_t const bufind = (dstdetailleni - 1 - i) + dstdetailleni * ((dstdetaillenj - 1 - j) + dstdetaillenj * k);
            int const dstindi = dstdetailoffi + i - dstoffi;
            int const dstindj = dstdetailoffj + j - dstoffj;
            int const dstindk = dstdetailoffk + k - dstoffk;
            size_t const dstind = dstindi + dstleni * (dstindj + dstlenj * dstindk);
            ifcheck assert (dstindi>=0 && dstindi<dstleni);
            ifcheck assert (dstindj>=0 && dstindj<dstlenj);
            ifcheck assert (dstindk>=0 && dstindk<dstlenk);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)dstptrs[var])[dstind]
                = ((const CCTK_REAL*)dstdata)[dstoffset[n] + var * dstelems[n] + bufind];
            }
          }
        }
      }
      
    } else if (dstdetail[n*SLAB_MAXDIM  ].str==1 && dstdetail[n*SLAB_MAXDIM+1].str==1 && dstdetail[n*SLAB_MAXDIM+2].str==1
        && dsttype == CCTK_VARIABLE_REAL) {
      /* Optimised version for CCTK_REAL and stride 1 */
      
      for (k = 0; k < dstdetail[n*SLAB_MAXDIM+2].len; ++k) {
        for (j = 0; j < dstdetail[n*SLAB_MAXDIM+1].len; ++j) {
          for (i = 0; i < dstdetail[n*SLAB_MAXDIM+0].len; ++i) {
            int ipos[SLAB_MAXDIM];
            int bufipos[SLAB_MAXDIM];
            int dstipos[SLAB_MAXDIM];
            size_t bufind;
            size_t dstind;
            ipos[0] = i;
            ipos[1] = j;
            ipos[2] = k;
            for (d=0; d<SLAB_MAXDIM; ++d) {
              if (! info[d].flip) {
                bufipos[d] = ipos[d];
              } else {
                bufipos[d] = dstdetail[n*SLAB_MAXDIM+d].len - 1 - ipos[d];
              }
              ifcheck assert (bufipos[d] >= 0 && bufipos[d] < dstdetail[n*SLAB_MAXDIM+d].len);
              dstipos[d] = dstdetail[n*SLAB_MAXDIM+d].off + ipos[d];
              ifcheck assert (dstipos[d] >= info[d].dst.local.off
                              && dstipos[d] < info[d].dst.local.off + info[d].dst.local.len);
              ifcheck assert (dstipos[d] >= info[d].dst.slab.off
                              && dstipos[d] <= info[d].dst.slab.off + info[d].dst.slab.len - 1);
            }
            bufind = 0;
            dstind = 0;
            for (d=SLAB_MAXDIM-1; d>=0; --d) {
              bufind = bufind * dstdetail[n*SLAB_MAXDIM+d].len + bufipos[d];
              dstind = dstind * info[d].dst.local.len + dstipos[d] - info[d].dst.local.off;
            }
            ifcheck assert (bufind < (size_t)dstcount[n]);
            ifcheck assert (dstind < dstlentot);
            for (var=0; var<nvars; ++var) {
              ((CCTK_REAL*)dstptrs[var])[dstind]
                = ((const CCTK_REAL*)dstdata)[dstoffset[n] + var * dstelems[n] + bufind];
            }
          }
        }
      }

    } else {
      /* Generic, unoptimised version */
      
      for (k = 0; k < dstdetail[n*SLAB_MAXDIM+2].len; ++k) {
        for (j = 0; j < dstdetail[n*SLAB_MAXDIM+1].len; ++j) {
          for (i = 0; i < dstdetail[n*SLAB_MAXDIM+0].len; ++i) {
            int ipos[SLAB_MAXDIM];
            int bufipos[SLAB_MAXDIM];
            int dstipos[SLAB_MAXDIM];
            size_t bufind;
            size_t dstind;
            ipos[0] = i;
            ipos[1] = j;
            ipos[2] = k;
            for (d=0; d<SLAB_MAXDIM; ++d) {
              if (! info[d].flip) {
                bufipos[d] = ipos[d];
              } else {
                bufipos[d] = dstdetail[n*SLAB_MAXDIM+d].len - 1 - ipos[d];
              }
              ifcheck assert (bufipos[d] >= 0 && bufipos[d] < dstdetail[n*SLAB_MAXDIM+d].len);
              dstipos[d] = dstdetail[n*SLAB_MAXDIM+d].off + ipos[d] * info[d].dst.slab.str;
              ifcheck assert (dstipos[d] >= info[d].dst.local.off
                              && dstipos[d] < info[d].dst.local.off + info[d].dst.local.len);
              ifcheck assert (dstipos[d] >= info[d].dst.slab.off
                              && dstipos[d] <= info[d].dst.slab.off + (info[d].dst.slab.len - 1) * info[d].dst.slab.str);
              ifcheck assert ((dstipos[d] - info[d].dst.slab.off) % info[d].dst.slab.str == 0);
            }
            bufind = 0;
            dstind = 0;
            for (d=SLAB_MAXDIM-1; d>=0; --d) {
              bufind = bufind * dstdetail[n*SLAB_MAXDIM+d].len + bufipos[d];
              dstind = dstind * info[d].dst.local.len + dstipos[d] - info[d].dst.local.off;
            }
            ifcheck assert (bufind < (size_t)dstcount[n]);
            ifcheck assert (dstind < dstlentot);
/* 	  ((CCTK_REAL*)dstptr)[dstind] */
/* 	    = ((const CCTK_REAL*)dstdata)[dstoffset[n] + bufind]; */
            for (var=0; var<nvars; ++var) {
              memcpy ((char *) dstptrs[var] + dsttypesize * dstind,
                      (const char *) dstdata + dsttypesize * (dstoffset[n] + var * dstelems[n] + bufind),
                      dsttypesize);
            }
          }
        }
      }
    
    }

  } /* for n */
  CCTK_TimerStopI (timer_copy_back);
  
  
  
  free (dstdata);
  free (dstelems);
  free (dstcount);
  free (dstoffset);
  free (dstdetail);
  
  free (srcdata);
  free (srcelems);
  free (srccount);
  free (srcoffset);
  free (srcdetail);
  
  free (allinfo);
  free (info);
  
  
  
  ifcheck {
    ifdebug fflush (stdout);
    MPI_Barrier (comm);
  }
  
  return 0;
}



void CCTK_FCALL
CCTK_FNAME(Slab_Transfer) (int        * restrict const ierr,
                           cGH  const * const * restrict const cctkGH,
                           int  const * restrict const dim,
                           int  const * restrict const src_gsh,
                           int  const * restrict const src_lbnd,
                           int  const * restrict const src_lsh,
                           int  const * restrict const src_lbbox,
                           int  const * restrict const src_ubbox,
                           int  const * restrict const src_nghostzones,
                           int  const * restrict const src_off,
                           int  const * restrict const src_str,
                           int  const * restrict const src_len,
                           int  const * restrict const dst_gsh,
                           int  const * restrict const dst_lbnd,
                           int  const * restrict const dst_lsh,
                           int  const * restrict const dst_lbbox,
                           int  const * restrict const dst_ubbox,
                           int  const * restrict const dst_nghostzones,
                           int  const * restrict const dst_off,
                           int  const * restrict const dst_str,
                           int  const * restrict const dst_len,
                           int  const * restrict const xpose,
                           int  const * restrict const flip,
                           int  const * restrict const options,
                           int  const * restrict const srctype,
                           void const *          const srcptr,
                           int  const * restrict const dsttype,
                           void       *          const dstptr)
{
  struct xferinfo * xferinfo;
  int d;
  
  xferinfo = malloc (*dim * sizeof *xferinfo);
  assert (xferinfo);
  
  for (d=0; d<*dim; ++d) {
    xferinfo[d].src.gsh         = src_gsh[d];
    xferinfo[d].src.lbnd        = src_lbnd[d];
    xferinfo[d].src.lsh         = src_lsh[d];
    xferinfo[d].src.lbbox       = src_lbbox[d];
    xferinfo[d].src.ubbox       = src_ubbox[d];
    xferinfo[d].src.nghostzones = src_nghostzones[d];
    xferinfo[d].src.off         = src_off[d];
    xferinfo[d].src.str         = src_str[d];
    xferinfo[d].src.len         = src_len[d];
    
    xferinfo[d].dst.gsh         = dst_gsh[d];
    xferinfo[d].dst.lbnd        = dst_lbnd[d];
    xferinfo[d].dst.lsh         = dst_lsh[d];
    xferinfo[d].dst.lbbox       = dst_lbbox[d];
    xferinfo[d].dst.ubbox       = dst_ubbox[d];
    xferinfo[d].dst.nghostzones = dst_nghostzones[d];
    xferinfo[d].dst.off         = dst_off[d];
    xferinfo[d].dst.str         = dst_str[d];
    xferinfo[d].dst.len         = dst_len[d];
    
    xferinfo[d].xpose           = xpose[d];
    xferinfo[d].flip            = flip[d];
  }
  
  *ierr = Slab_Transfer (*cctkGH, *dim, xferinfo, *options,
                         *srctype, srcptr, *dsttype, dstptr);
  
  free (xferinfo);
}



int Slab_Transfer (cGH             const * restrict const cctkGH,
		   int                              const dim,
		   struct xferinfo const * restrict const xferinfo,
		   int                              const options,
		   int                              const srctype,
		   void            const *          const srcptr,
		   int                              const dsttype,
		   void                  *          const dstptr)
{
  int const nvars = 1;
  int const srctypes[] = { srctype };
  void const * const srcptrs[] = { srcptr };
  int const dsttypes[] = { dsttype };
  void * const dstptrs[] = { dstptr };
  return Slab_MultiTransfer (cctkGH, dim, xferinfo, options,
                             nvars, srctypes, srcptrs, dsttypes, dstptrs);
}