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
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399 | #ifndef _ITAPS_iMeshP
#define _ITAPS_iMeshP
#include "iMesh.h"
#include "iMeshP_protos.h"
#include "moab_mpi.h"
#ifdef __cplusplus
extern "C" {
#endif
/** Handles needed in iMeshP */
typedef struct iMeshP_PartitionHandle_Private* iMeshP_PartitionHandle;
typedef struct iMeshP_RequestHandle_Private* iMeshP_RequestHandle;
/* Since we allow overloading of iMesh functions' entity set handles with
* part handles, iMeshP_PartHandle must be defined the same as
* iBase_EntitySetHandle. */
typedef iBase_EntitySetHandle iMeshP_PartHandle;
typedef unsigned iMeshP_Part;
/** Types for classifying entities within a part. */
enum iMeshP_EntStatus
{
iMeshP_INTERNAL, /**< An owned entity that is not on a part boundary. */
iMeshP_BOUNDARY, /**< A shared entity on a part boundary. */
iMeshP_GHOST /**< An entity copy that is not a shared boundary entity. */
};
/** Part ID number indicating information should be returned about all parts. */
#define iMeshP_ALL_PARTS ( -1 )
/** \page imeshp iMeshP: ITAPS Parallel Mesh Interface
iMeshP.h -- ITAPS Parallel Mesh Interface
Release 0.1; October 2008
\section ADM Abstract Data Model
- The term "mesh" refers to an abstraction in the data model;
it does not imply a serial or parallel distribution.
- The term "partition" refers to an assignment of a set of entities to
subsets; like a "mesh," it does not imply a serial or parallel
implementation.
- An application may use one or more meshes.
- Partitions can create subsets of entities from one or more meshes.
- Meshes can be subdivided by one or more partitions.
- Partitions contain parts. Parts contain the subsets of entities in the
partition.
\section PAR Parallelism
- A "process" can be thought of as an MPI process. The
number of processes can be considered to be the result of MPI_Comm_size.
The rank of a process can be thought of as the result of MPI_Comm_rank.
We will think in terms of processes rather than processors. Initial
implementations of the parallel interface will likely use MPI terminology
directly; future implementations may accommodate other communication
paradigms and libraries.
- Partitions have communicators associated with them. These communicators
can be thought of as MPI communicators.
- "Global" operations are operations performed with respect to a
partition's communicator.
- "Local" operations are operations performed with respect to a part or
a mesh instance within a process.
- Part A "neighbors" Part B if Part A has copies of entities owned by Part B
and/or if Part B has copies of entities owned by Part A.
\section INT Interfaces
- Each process has one or more "mesh instances." A mesh instance can be
thought of as a mesh database. An implementation should support the
existence of more than one mesh instance per process (e.g., it should
always associate mesh data with a mesh instance). However, we expect
applications would most often use only one mesh instance per process.
- There is one root set per mesh instance.
- Each process may have one or more partition handles.
- A partition assigns entities from one mesh instance to parts.
- Entities in a mesh instance can be partitioned by one or more partitions.
Mesh instances know which partitions they contain.
- Parts are uniquely identified globally by part IDs of type iMeshP_Part.
Local parts can also be accessed by part handles that provide more
direct access to a part.
Functions accepting part handles operate correctly on only local
parts (parts on the calling process); they will return an error
for remote (off-process) parts.
- Generation and management of global IDs for entities
is not included in the iMeshP interface. It can
be provided as a service above the iMeshP interface.
Uniqueness of global IDs is managed at the partition level.
\section PRT Using Parts
- Each part is wholly contained within a process.
- A process may have zero, one or multiple parts.
- For each entity that is copied onto remote parts, the owning part knows
both the remote part ID and remote entity handle of all copies.
- All parts with copies of a boundary entity know the remote part ID
and remote entity handle of all copies of the entity.
- All parts with copies of any entity know the part ID and
entity handle corresponding to the owner of the entity.
- Functions that return entity information for a part, set or mesh
instance return the information for all entities (including copies and
ghosts) in that part, set or mesh instance. Applications can check
whether an entity is owned or a ghost using iMeshP_isEntOwner or
iMeshP_getEntStatus.
- Many iMesh functions that accept an iBase_EntitySetHandle
are also useful in the context of a iMeshP_PartHandle.
These functions are reinterpreted so that they can accept either an
iBase_EntitySetHandle or an iMeshP_PartHandle.
- In particular, entities are added to and removed from local parts via
the same functions that are used to manipulate entity sets.
That is, given a mesh instance, an entity handle, and a part handle,
the entity is added to or removed from the part via calls to
the following functions with the part handle passed as the entity set handle:
- Add entity to part --> iMesh_addEntToSet
- Remove entity from part --> iMesh_rmvEntFromSet
- Add array of entities to part --> iMesh_addEntArrToSet
- Remove array of entities from part --> iMesh_rmvEntArrFromSet
\section CMM Communication
- Each function description includes its communication requirements. The
options are described here:
- COMMUNICATION: Collective -- the function must be called by all
processes in the partition's communicator. (These functions have the
suffix "All" to indicate collective communication is done.)
- COMMUNICATION: Point-to-Point -- communication is used, but the
communication is from one process to only one other process. The
receiving process must issue an appropriate receive call to receive
the message.
- COMMUNICATION: None -- the function does not use communication; only
local operations are performed.
- COMMUNICATION: None++ -- no communication is done; the values
are precomputed by iMeshP_syncPartitionAll or iMeshP_syncMeshAll.
- Non-blocking calls for off-processor mesh-modification return a request
that indicates whether or not the operation has completed. The request
is more than an MPI request; it encapsulates both the MPI information and
the mesh operations that were requested. If non-blocking calls are used,
appropriate calls to iMeshP "wait" or "poll" functions must be used to
handle and satisfy requests.
*/
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/* Partition Functionality */
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/** \brief Create a partition; return its handle.
*
* Given a mesh instance and a communicator,
* return a partition handle for a new partition within the mesh instance
* that uses the communicator.
* In the future, we may have different creation routines for different
* communication systems; once the partition is created, the application
* would not have to worry about the communication system again.
* For now, implementations are MPI based, so MPI communicators are provided.
* For serial use, the communicator may be MPI_COMM_SELF or communicator may
* be NULL.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance to contain the partition.
* \param communicator (In) Communicator to be used for parallel
* communication.
* \param partition (Out) The newly created partition.
* \param err (Out) Error code.
*/
void iMeshP_createPartitionAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
MPI_Comm communicator,
iMeshP_PartitionHandle* partition,
int* err );
/** \brief Destroy a partition.
*
* Given a partition handle,
* destroy the partition associated with the handle.
* Note that the partition handle is not invalidated upon return.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition to be destroyed.
* \param err (Out) Error code.
*/
void iMeshP_destroyPartitionAll( iMesh_Instance instance, iMeshP_PartitionHandle partition, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/** \brief Return communicator associated with a partition.
*
* Given a partition handle, return the communicator associated with
* it during its creation by iMeshP_createPartitionAll.
*
* COMMUNICATION: None
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param communicator (Out) Communicator associated with the partition.
* \param err (Out) Error code.
*/
void iMeshP_getPartitionComm( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iMeshP_PartitionHandle partition,
MPI_Comm* communicator,
int* err );
/** \brief Update a partition after parts have been added.
*
* This function gives the implementation an opportunity to locally store info
* about the partition so that queries on the partition can be
* performed without synchronous communication.
* This function must be called after all parts have been added to the
* partition and after changes to the partition (e.g., due to load balancing).
* Values that are precomputed by syncPartitionAll include:
* - the total number of parts in a partition;
* - the mapping between part IDs and processes; and
* - updated remote entity handle information.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being updated.
* \param err (Out) Error code.
*/
void iMeshP_syncPartitionAll( iMesh_Instance instance, iMeshP_PartitionHandle partition, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/** \brief Return the number of partitions associated with a mesh instance.
*
* Given a mesh instance, return the number of partition handles
* associated with the mesh instance.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partitions.
* \param num_partitions (Out) Number of partitions associated with the
* mesh instance.
* \param err (Out) Error code.
*/
void iMeshP_getNumPartitions( iMesh_Instance instance, int* num_partitions, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/** \brief Return the partition handles associated with a mesh instance.
*
* Given a mesh instance, return all partition handles
* associated with the mesh instance.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partitions.
* \param partitions (In/Out) Array of partition handles
* associated with the mesh
* instance.
* \param partitions_allocated (In/Out) Allocated size of
* partitions array.
* \param partitions_size (Out) Occupied size of
* partitions array.
* \param err (Out) Error code.
*/
void iMeshP_getPartitions( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iMeshP_PartitionHandle** partitions,
int* partitions_allocated,
int* partitions_size,
int* err );
/** \brief Return the global number of parts in a partition.
*
* Given a partition handle, return the total number of parts
* in the partition across all processes in the partition's communicator.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param num_global_part (Out) Global number of parts in the partition.
* \param err (Out) Error code.
*/
void iMeshP_getNumGlobalParts( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
int* num_global_part,
int* err );
/** \brief Return the local number of parts in a partition.
*
* Given a partition handle, return the number of local (on-process) parts
* in the partition.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param num_local_part (Out) Local (on-process) number of parts in
* the partition.
* \param err (Out) Error code.
*/
void iMeshP_getNumLocalParts( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
int* num_local_part,
int* err );
/** \brief Return the part handles of local parts in a partition.
*
* Given a partition handle, return the
* part handles for the local (on-process) parts in the partition.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param parts (In/Out) Array of part handles
* for local parts in the partition.
* \param parts_allocated (In/Out) Allocated size of
* parts array.
* \param parts_size (Out) Occupied size of
* parts array.
* \param err (Out) Error code.
*/
void iMeshP_getLocalParts( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_PartHandle** parts,
int* parts_allocated,
int* parts_size,
int* err );
/** \brief Return the process rank of a given part.
*
* Given a partition handle and a part ID, return the process rank
* (with respect to the partition's communicator) of the
* process that owns the part. The part may be local or remote.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part_id (In) Part ID for the part being queried.
* \param rank (Out) Process rank of part_id.
* \param err (Out) Error code.
*/
void iMeshP_getRankOfPart( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_Part part_id,
int* rank,
int* err );
/** \brief Return the process ranks of given parts.
*
* Given a partition handle and an array of part IDs, return the process ranks
* (with respect to the partition's communicator) of the
* process that owns each part. The parts may be local or remote.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part_ids (In) Array of Part IDs for the parts being
* queried.
* \param part_ids_size (In) The number of Part IDs in part_ids.
* \param ranks (In/Out) Array of ranks for the Part Ids in
* part_ids.
* \param ranks_allocated (In/Out) Allocated size of ranks array.
* \param ranks_size (Out) Occupied size of ranks array.
* \param err (Out) Error code.
*/
void iMeshP_getRankOfPartArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_Part* part_ids,
const int part_ids_size,
int** ranks,
int* ranks_allocated,
int* ranks_size,
int* err );
/** \brief Return the number of entities of a given type in a partition.
*
* Given a partition handle and an entity set (possibly the root set),
* return the global number of entities of a
* given entity type in the partition and set. This function may require
* communication and, thus, must be called by all processes in the partition's
* communicator.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param entity_set (In) Entity set handle for the entity set
* being queried.
* \param entity_type (In) Requested entity type;
* may be iBase_ALL_TYPES.
* \param num_type (Out) Number of entities of entity_type in
* the partition and entity set.
* \param err (Out) Error code.
*/
void iMeshP_getNumOfTypeAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntitySetHandle entity_set,
int entity_type,
int* num_type,
int* err );
/** \brief Return the number of entities of a given topology in a partition.
*
* Given a partition handle and an entity set (possibly the root set),
* return the global number of entities of a
* given entity topology in the partition and set. This function may require
* communication and, thus, must be called by all processes in the partition's
* communicator.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param entity_set (In) Entity set handle for the entity set
* being queried; may be the root set.
* \param entity_topology (In) Requested entity topology;
* may be iMesh_ALL_TOPOLOGIES.
* \param num_topo (Out) Number of entities with entity_topology in
* the partition and entity set.
* \param err (Out) Error code.
*/
void iMeshP_getNumOfTopoAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntitySetHandle entity_set,
int entity_topology,
int* num_topo,
int* err );
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/* Part Functionality */
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/** \brief Create a new part in a partition.
*
* Given a partition handle, create a new part and add it to the
* partition on the process invoking the creation. Return the part handle
* for the new part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being updated.
* \param part (Out) The newly created part.
* \param err (Out) Error code.
*/
void iMeshP_createPart( iMesh_Instance instance, iMeshP_PartitionHandle partition, iMeshP_PartHandle* part, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/** \brief Remove a part from a partition.
*
* Given a partition handle and a part handle, remove the part
* from the partition and destroy the part. Note that the part handle
* is not invalidated by this function.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being updated.
* \param part (In) The part to be removed.
* \param err (Out) Error code.
*/
void iMeshP_destroyPart( iMesh_Instance instance, iMeshP_PartitionHandle partition, iMeshP_PartHandle part, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/** \brief Obtain a part ID from a part handle.
*
* Given a partition handle and a local part handle, return the part ID.
* If the part handle is not a valid part handle for a local part,
* an error is returned.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param part_id (Out) Part ID for part.
* \param err (Out) Error code.
*/
void iMeshP_getPartIdFromPartHandle( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
iMeshP_Part* part_id,
int* err );
/** \brief Obtain part IDs from part handles.
*
* Given a partition handle and an array of local part handles,
* return the part ID for each part handle.
* If any part handle is not a valid part handle for a local part,
* an error is returned.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param parts (In) Array of part handles for the parts
* being queried.
* \param parts_size (In) Number of part handles being queried.
* \param part_ids (In/Out) Array of part IDs associated with the
* parts.
* \param part_ids_allocated (In/Out) Allocated size of part_ids array.
* \param part_ids_size (Out) Occupied size of part_ids array.
* \param err (Out) Error code.
*/
void iMeshP_getPartIdsFromPartHandlesArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle* parts,
const int parts_size,
iMeshP_Part** part_ids,
int* part_ids_allocated,
int* part_ids_size,
int* err );
/** \brief Obtain a part handle from a part ID.
*
* Given a partition handle and a part ID, return the part handle
* associated with the part
* if the part is local; otherwise, return an error code.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part_id (In) Part ID for the part being queried.
* \param part (Out) Part handle associated with part_id.
* \param err (Out) Error code.
*/
void iMeshP_getPartHandleFromPartId( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_Part part_id,
iMeshP_PartHandle* part,
int* err );
/** \brief Obtain part handles from part IDs.
*
* Given a partition handle and an array of local part IDs,
* return the part handle for each part ID.
* If any part ID is not a valid part ID for a local part,
* an error is returned.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part_ids (In) Array of part IDs for the parts
* being queried.
* \param part_ids_size (In) Number of part IDs being queried.
* \param parts (In/Out) Array of part handles associated
* with the part_ids.
* \param parts_allocated (In/Out) Allocated size of parts
* array.
* \param parts_size (Out) Occupied size of parts
* array.
* \param err (Out) Error code.
*/
void iMeshP_getPartHandlesFromPartsIdsArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_Part* part_ids,
const int part_ids_size,
iMeshP_PartHandle** parts,
int* parts_allocated,
int* parts_size,
int* err );
/*------------------------------------------------------------------------*/
/* Part Boundaries */
/*------------------------------------------------------------------------*/
/** \brief Return the number of parts that neighbor a given part.
*
* Given a partition handle, a part handle, and an entity type,
* return the number of parts in the partition that neighbor the given part
* (i.e., that (1) have copies of entities of the given entity type owned by
* the given part or (2) own entities of the given entity type that are
* copied on the given part).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_type (In) Entity type of the copied entities;
* may be iBase_ALL_TYPES.
* \param num_part_nbors (Out) Number of parts neighboring the given part.
* \param err (Out) Error code.
*/
void iMeshP_getNumPartNbors( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
int entity_type,
int* num_part_nbors,
int* err );
/** \brief Return the number of parts that neighbor given parts.
*
* Given a partition handle, an array of part handles, and an entity type,
* return the number of parts in the partition that neighbor each of the
* given parts
* (i.e., that (1) have copies of entities of the given entity type owned by
* the given part or (2) own entities of the given entity type that are
* copied on the given part).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param parts (In) Array of part handles for the
* parts being queried.
* \param parts_size (In) Number of part handles in
* parts.
* \param entity_type (In) Entity type of the copied
* entities;
* may be iBase_ALL_TYPES.
* \param num_part_nbors (In/Out) Array of values specifying the
* number of part neighbors for
* each part in parts.
* \param num_part_nbors_allocated (In/Out) Allocated size of num_part_nbors
* array.
* \param num_part_nbors_size (Out) Occupied size of num_part_nbors
* array.
* \param err (Out) Error code.
*/
void iMeshP_getNumPartNborsArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle* parts,
int parts_size,
int entity_type,
int** num_part_nbors,
int* num_part_nbors_allocated,
int* num_part_nbors_size,
int* err );
/** \brief Return the parts that neighbor a given part.
*
* Given a partition handle, a part handle, and an entity type,
* return the part IDs of parts that neighbor the given part
* (i.e., that (1) have copies of entities of the given entity type owned by
* the given part or (2) own entities of the given entity type that are
* copied on the given part).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_type (In) Entity type of the copied
* entities;
* may be iBase_ALL_TYPES.
* \param num_part_nbors (Out) Number of parts neighboring
* the given part.
* \param nbor_part_ids (In/Out) Array of part IDs for
* part neighbors of part.
* \param nbor_part_ids_allocated (In/Out) Allocated size of nbor_part_ids
* array.
* \param nbor_part_ids_size (Out) Occupied size of nbor_part_ids
* array.
* \param err (Out) Error code.
*/
void iMeshP_getPartNbors( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
int entity_type,
int* num_part_nbors,
iMeshP_Part** nbor_part_ids,
int* nbor_part_ids_allocated,
int* nbor_part_ids_size,
int* err );
/** \brief Return the parts that neighbor given parts.
*
* Given a partition handle, an array of part handles, and an entity type,
* return the part IDs of parts that neighbor the given parts
* (i.e., that (1) have copies of entities of the given entity type owned by
* the given part or (2) own entities of the given entity type that are
* copied on the given part).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param parts (In) The parts being queried.
* \param parts_size (In) The number of parts being queried.
* \param entity_type (In) Entity type of the copied
* entities;
* may be iBase_ALL_TYPES.
* \param num_part_nbors (In/Out) Array of values specifying the
* number of part neighbors for
* each part in parts.
* \param num_part_nbors_allocated (In/Out) Allocated size of num_part_nbors
* array.
* \param num_part_nbors_size (Out) Occupied size of num_part_nbors
* array.
* \param nbor_part_ids (In/Out) Array of part IDs for
* part neighbors of part.
* \param nbor_part_ids_allocated (In/Out) Allocated size of nbor_part_ids
* array.
* \param nbor_part_ids_size (Out) Occupied size of nbor_part_ids
* array.
* \param err (Out) Error code.
*/
void iMeshP_getPartNborsArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle* parts,
const int parts_size,
int entity_type,
int** num_part_nbors,
int* num_part_nbors_allocated,
int* num_part_nbors_size,
iMeshP_Part** nbor_part_ids,
int* nbor_part_ids_allocated,
int* nbor_part_ids_size,
int* err );
/** \brief Return the number of entities on a part boundary.
*
* Given a partition handle, a part handle, an entity type and topology, and a
* target part ID, return the number of entities of the given type and/or
* topology on the part boundary shared with the target part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_type (In) Entity type of the boundary entities;
* may be iBase_ALL_TYPES.
* \param entity_topology (In) Entity topology of the boundary entities;
* may be iMesh_ALL_TOPOLOGIES.
* \param target_part_id (In) Part ID with which part is sharing
* the boundary entities; may be
* iMeshP_ALL_PARTS.
* \param num_entities (Out) Number of part boundary entities shared
* by part and target_part_id.
* \param err (Out) Error code.
*/
void iMeshP_getNumPartBdryEnts( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
int entity_type,
int entity_topology,
iMeshP_Part target_part_id,
int* num_entities,
int* err );
/** \brief Return the entity handles of entities on a part boundary.
*
* Given a partition handle, a part handle, an entity type and topology, and a
* target part ID, return the entity handles of entities of the given type
* and/or topology on the part boundary shared with the target part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_type (In) Entity type of the boundary
* entities;
* may be iBase_ALL_TYPES.
* \param entity_topology (In) Entity topology of the boundary
* entities;
* may be iMesh_ALL_TOPOLOGIES.
* \param target_part_id (In) Part ID with which part
* is sharing the boundary entities;
* may be iMeshP_ALL_PARTS.
* \param entities (In/Out) Array of entity handles for
* entities on the part boundary
* between part and
* target_part_id.
* \param entities_allocated (In/Out) Allocated size of entities
* array.
* \param entities_size (Out) Occupied size of entities
* array.
* \param err (Out) Error code.
*/
void iMeshP_getPartBdryEnts( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
int entity_type,
int entity_topology,
iMeshP_Part target_part_id,
iBase_EntityHandle** entities,
int* entities_allocated,
int* entities_size,
int* err );
/** \brief Initialize an iterator over a specified part boundary.
*
* Given a partition handle, a part handle, and a
* target part ID, return an iterator over all entities of a given
* entity type and topology along
* the part boundary shared with the target part.
* Iterator functionality for getNext, reset, and end is
* provided through the regular iMesh iterator functions
* iMesh_getNextEntIter, iMesh_resetEntIter, and iMesh_endEntIter,
* respectively.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_type (In) Entity type of the boundary entities;
* may be iBase_ALL_TYPES.
* \param entity_topology (In) Entity topology of the boundary entities;
* may be iMesh_ALL_TOPOLOGIES.
* \param target_part_id (In) Part ID with which part is sharing
* the boundary entities; may be
* iMeshP_ALL_PARTS.
* \param entity_iterator (Out) Iterator returned by the function.
* \param err (Out) Error code.
*/
void iMeshP_initPartBdryEntIter( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
int entity_type,
int entity_topology,
iMeshP_Part target_part_id,
iBase_EntityIterator* entity_iterator,
int* err );
/** \brief Initialize an array iterator over a specified part boundary.
*
* Given a partition handle, a part handle, and a
* target part ID, return an array iterator over all entities of a given
* entity type and topology along
* the part boundary shared with the target part.
* Iterator functionality for getNext, reset, and end is
* provided through the regular iMesh iterator functions
* iMesh_getNextEntArrIter, iMesh_resetEntArrIter, and iMesh_endEntArrIter,
* respectively.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_type (In) Entity type of the boundary entities;
* may be iBase_ALL_TYPES.
* \param entity_topology (In) Entity topology of the boundary entities;
* may be iMesh_ALL_TOPOLOGIES.
* \param array_size (In) Size of chunks of handles returned for
* each value of the iterator.
* \param target_part_id (In) Part ID with which part is sharing
* the boundary entities; may be
* iMeshP_ALL_PARTS.
* \param entity_iterator (Out) Iterator returned by the function.
* \param err (Out) Error code.
*/
void iMeshP_initPartBdryEntArrIter( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
int entity_type,
int entity_topology,
int array_size,
iMeshP_Part target_part_id,
iBase_EntityArrIterator* entity_iterator,
int* err );
/*------------------------------------------------------------------------*/
/* Parts and Sets */
/*------------------------------------------------------------------------*/
/** \brief Return the number of entities of a given type in both a part and an entity set.
*
* Given a part handle, an entity set handle, and an entity type, return
* the number of entities of the given type that are in BOTH the given
* part AND the given entity set.
* This function is similar to iMesh_getNumOfType, but it also restricts
* the returned data with respect to its existence in the given part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_set (In) Entity set handle for the entity set
* being queried; may be the root set.
* \param entity_type (In) Entity type of the boundary entities;
* may be iBase_ALL_TYPES.
* \param num_type (Out) Number of entities of entity_type in
* both part and entity_set.
* \param err (Out) Error code.
*/
void iMeshP_getNumOfType( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntitySetHandle entity_set,
int entity_type,
int* num_type,
int* err );
/** \brief Return the number of entities of a given topology in both a part and an entity set.
*
* Given a part handle, an entity set handle, and an entity topology, return
* the number of entities of the given topology that are in BOTH the given
* part AND the given entity set.
* This function is similar to iMesh_getNumOfTopo, but it also restricts
* the returned data with respect to its existence in the given part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_set (In) Entity set handle for the entity set
* being queried; may be the root set.
* \param entity_topology (In) Entity topology of the boundary entities;
* may be iMesh_ALL_TOPOLOGIES.
* \param num_topo (Out) Number of entities of entity_topology in
* both part and entity_set.
* \param err (Out) Error code.
*/
void iMeshP_getNumOfTopo( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntitySetHandle entity_set,
int entity_topology,
int* num_topo,
int* err );
/**\brief Get indexed representation of mesh or subset of mesh
*
* Given part handle and an entity set and optionally a type or topology,
* for all entities that are in BOTH the part and the entity set, return:
* - The entities in the part and set of the specified type or topology
* - The entities adjacent to those entities with a specified
* type, as a list of unique handles.
* - For each entity in the first list, the adjacent entities,
* specified as indices into the second list.
*
* COMMUNICATION: None.
*
*\param instance (In) Mesh instance containing the
* partition.
*\param partition (In) The partition being queried.
*\param part (In) The part being queried.
*\param entity_set_handle (In) The set being queried
*\param entity_type_requestor (In) If not iBase_ALL_TYPES, act only
* on the subset of entities with
* the specified type.
*\param entity_topology_requestor (In) If not iMesh_ALL_TOPOLOGIES, act
* only on the subset of entities with
* the specified topology.
*\param entity_type_requested (In) The type of the adjacent entities
* to return.
*\param entity_handles (In/Out) The handles of the (non-strict)
* subset of the union of the part
* and entity set, and the optional
* type and topology filtering
* arguments.
*\param adj_entity_handles (In/Out) The union of the entities of type
* 'requested_entity_type' adjacent
* to each entity in 'entity_handles'.
*\param adj_entity_indices (In/Out) For each entity in 'entity_handles',
* the adjacent entities of type
* 'entity_type_requested', specified as
* indices into 'adj_entity_handles'.
* The indices are concatenated into a
* single array in the order of the
* entity handles in 'entity_handles'.
*\param offset (In/Out) For each entity in the
* corresponding position in
* 'entity_handles', the position
* in 'adj_entity_indices' at which
* values for that entity are stored.
*/
void iMeshP_getAdjEntIndices( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iMeshP_PartitionHandle partition,
iMeshP_PartHandle part,
iBase_EntitySetHandle entity_set_handle,
int entity_type_requestor,
int entity_topology_requestor,
int entity_type_requested,
iBase_EntityHandle** entity_handles,
int* entity_handles_allocated,
int* entity_handles_size,
iBase_EntityHandle** adj_entity_handles,
int* adj_entity_handles_allocated,
int* adj_entity_handles_size,
int** adj_entity_indices,
int* adj_entity_indices_allocated,
int* adj_entity_indices_size,
int** offset,
int* offset_allocated,
int* offset_size,
int* err );
/** \brief Return entities in a both given part and entity set.
*
* Given an entity set handle
* and a part handle, return entity handles for entities
* that are in both the part and the entity set.
* This function is similar to iMesh_getEntities, but it also restricts
* the returned data with respect to its existence in the given part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_set (In) Entity set handle for the
* entity set being queried;
* may be the root set.
* \param entity_type (In) Entity type of the
* entities;
* may be iBase_ALL_TYPES.
* \param entity_topology (In) Entity topology of the
* entities;
* may be iMesh_ALL_TOPOLOGIES.
* \param entities (In/Out) Array of entity handles for
* entities in both part
* and entity_set.
* \param entities_allocated (In/Out) Allocated size of entities.
* \param entities_size (Out) Occupied size of entities.
* \param err (Out) Error code.
*/
void iMeshP_getEntities( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntitySetHandle entity_set,
int entity_type,
int entity_topology,
iBase_EntityHandle** entities,
int* entities_allocated,
int* entities_size,
int* err );
/** \brief Return entities adjacent to entities in a given part and entity set.
*
* Given an entity set handle
* and a part handle, return entities adjacent (with respect to a given
* entity type and/or topology) to entities
* that are in both the part and the entity set.
* This function is similar to iMesh_getAdjEntities, but it also restricts
* the returned data with respect to its existence in the given part.
* If a non-root entity set is specified, the function also returns
* flags indicating whether each adjacent entity
* is in the entity set; (*in_entity_set)[i]=1 indicates that adjacent entity
* (*adj_entities)[i] is in the specified entity set.
* Array entry offset[i] stores the index of first adjacent entity to
* entity i.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_set (In) Entity set handle for the
* entity set being queried;
* may be the root set.
* \param entity_type_requestor (In) Return entities adjacent to
* entities of this type;
* may be iBase_ALL_TYPES.
* \param entity_topology_requestor (In) Return entities adjacent to
* entities of this topology;
* may be iMesh_ALL_TOPOLOGIES.
* \param entity_type_requested (In) Return adjacent entities of
* this type;
* may be iBase_ALL_TYPES.
* \param adj_entities (In/Out) Array of adjacent entity
* handles returned.
* \param adj_entities_allocated (In/Out) Allocated size of
* adj_entities.
* \param adj_entities_size (Out) Occupied size of
* adj_entities.
* \param offset (In/Out) Array of offsets returned.
* \param offset_allocated (In/Out) Allocated size of offset.
* \param offset_size (Out) Occupied size of offset.
* \param in_entity_set (In/Out) Array of flags returned if
* non-root entity set was input;
* (*in_entity_set)[i]=1
* indicates
* (*adj_entities)[i]
* is in the entity set.
* \param in_entity_set_allocated (In/Out) Allocated size of
* in_entity_set.
* \param in_entity_set_size (Out) Occupied size of
* in_entity_set.
* \param err (Out) Error code.
*/
void iMeshP_getAdjEntities( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntitySetHandle entity_set,
int entity_type_requestor,
int entity_topology_requestor,
int entity_type_requested,
iBase_EntityHandle** adj_entities,
int* adj_entities_allocated,
int* adj_entities_size,
int** offset,
int* offset_allocated,
int* offset_size,
int** in_entity_set,
int* in_entity_set_allocated,
int* in_entity_set_size,
int* err );
/** \brief Create an entity iterator for a given part and entity set.
* Given a local part and an entity set, return an iterator over the
* entities of the requested type and topology that are in both the
* part and the entity set.
* Iterator functionality for getNext, reset, and end is
* provided through the regular iMesh iterator functions
* iMesh_getNextEntIter, iMesh_resetEntIter, and iMesh_endEntIter,
* respectively.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_set (In) Entity set handle for the
* entity set being queried.
* \param requested_entity_type (In) Type of entities to include in
* the iterator.
* \param requested_entity_topology (In) Topology of entities to include
* in the iterator.
* \param entity_iterator (Out) Iterator returned from function.
* \param err (Out) Error code.
*/
void iMeshP_initEntIter( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntitySetHandle entity_set,
const int requested_entity_type,
const int requested_entity_topology,
iBase_EntityIterator* entity_iterator,
int* err );
/** \brief Create an entity array iterator for a given part and entity set.
* Given a local part and an entity set, return an array iterator over the
* entities of the requested type and topology that are in both the
* part and the entity set.
* Iterator functionality for getNext, reset, and end is
* provided through the regular iMesh iterator functions
* iMesh_getNextEntArrIter, iMesh_resetEntArrIter, and iMesh_endEntArrIter,
* respectively.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity_set (In) Entity set handle for the
* entity set being queried.
* \param requested_entity_type (In) Type of entities to include in
* the iterator.
* \param requested_entity_topology (In) Topology of entities to include
* in the iterator.
* \param requested_array_size (In) The number of handles returned
* in each value of the iterator.
* \param entArr_iterator (Out) Iterator returned from function.
* \param err (Out) Error code.
*/
void iMeshP_initEntArrIter( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntitySetHandle entity_set,
const int requested_entity_type,
const int requested_entity_topology,
const int requested_array_size,
iBase_EntityArrIterator* entArr_iterator,
int* err );
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/* Entity Functionality */
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/** \brief Return the part ID of the part owning an entity.
*
* Given an entity handle and a partition handle, return the part ID
* of the part that owns the entity.
* Return an error code if an entity is not in the partition.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param entity (In) Entity whose owning part is to be
* returned.
* \param part_id (Out) Part ID of the part owning
* the entity.
* \param err (Out) Error code.
*/
void iMeshP_getEntOwnerPart( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle entity,
iMeshP_Part* part_id,
int* err );
/** \brief Return the part IDs of the parts owning the given entities.
*
* Given an array of entity handles and a partition handle, return for each
* entity handle the part ID of the part that owns the entity.
* Return an error code if an entity is not in the partition.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param entities (In) Entity whose owning part is to be
* returned.
* \param entities_size (In) Number of entities in
* entities array.
* \param part_ids (Out) Part IDs of the parts owning
* the entities.
* \param part_ids_allocated (In/Out) Allocated size of part_ids array.
* \param part_ids_size (Out) Occupied size of part_ids array.
* \param err (Out) Error code.
*/
void iMeshP_getEntOwnerPartArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle* entities,
const int entities_size,
iMeshP_Part** part_ids,
int* part_ids_allocated,
int* part_ids_size,
int* err );
/** \brief Test for entity ownership with respect to a part.
*
* Given a partition handle, a part handle, and an entity handle, return a
* flag indicating whether the entity is owned by the part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity (In) Entity whose ownership is being tested.
* \param is_owner (Out) Flag indicating whether the given part
* is the owner of the given entity.
* \param err (Out) Error code.
*/
void iMeshP_isEntOwner( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntityHandle entity,
int* is_owner,
int* err );
/** \brief Test for entity ownership of many entities with respect to a part.
*
* Given a partition handle, a part handle, and an array of entity handles,
* return for each entity handle a flag indicating whether the entity
* is owned by the part.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entities (In) Entities whose ownership is
* being tested.
* \param entities_size (In) Number of entity handles in
* entities.
* \param is_owner (Out) Flag for each entity indicating
* whether the given part is the
* owner of the given entity.
* \param is_owner_allocated (In/Out) Allocated size of is_owner array.
* \param is_owner_size (Out) Occupied size of is_owner array.
* \param err (Out) Error code.
*/
void iMeshP_isEntOwnerArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntityHandle* entities,
const int entities_size,
int** is_owner,
int* is_owner_allocated,
int* is_owner_size,
int* err );
/** \brief Return entity status (Internal, boundary, ghost).
*
* Given a partition handle, a part handle, and an entity handle, return a
* flag indicating whether the entity is strictly internal, is on a
* part boundary, or is a ghost with respect to the given part.
* The returned value is a member of the iMeshP_EntStatus enumerated type.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entity (In) Entity whose status is being tested.
* \param par_status (Out) Value indicating the status of the
* is the entity with respect to the part.
* \param err (Out) Error code.
*/
void iMeshP_getEntStatus( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntityHandle entity,
int* par_status,
int* err );
/** \brief Return entity status (Internal, boundary, ghost).
*
* Given a partition handle, a part handle, and an array of entity handles,
* return for each entity handle a flag indicating whether the entity is
* strictly internal, is on a part boundary, or is a ghost with respect
* to the given part.
* The returned value is a member of the iMeshP_EntStatus enumerated type.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param part (In) The part being queried.
* \param entities (In) Entities whose status is
* being tested.
* \param entities_size (In) Number of entity handles in
* entities.
* \param par_status (Out) Value for each entity indicating
* the status of the entity with
* respect to the part.
* \param par_status_allocated (In/Out) Allocated size of par_status array.
* \param par_status_size (Out) Occupied size of par_status array.
* \param err (Out) Error code.
*/
void iMeshP_getEntStatusArr( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_PartHandle part,
const iBase_EntityHandle* entities,
const int entities_size,
int** par_status, /* enum iMeshP_EntStatus */
int* par_status_allocated,
int* par_status_size,
int* err );
/** \brief Return the number of copies of an entity that exist in the partition.
*
* Given a partition handle and an entity handle, return the number
* of copies of the entity in the partition.
* If the given entity is an owned entity or boundary entity,
* the number of copies will be complete.
* If the given entity is a ghost entity, the number of copies will be two
* (the ghost and its owner).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param entity (In) Entity whose copy info is requested.
* \param num_copies_ent (Out) Number of copies of the entity that
* exist in the partition.
* \param err (Out) Error code.
*/
void iMeshP_getNumCopies( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle entity,
int* num_copies_ent,
int* err );
/** \brief Return the part IDs of parts having copies of a given entity.
*
* Given a partition handle and an entity handle, return the part IDs
* of copies of the entity in the partition.
* If the given entity is an owned entity or boundary entity,
* the number of copies considered will be complete.
* If the given entity is a ghost entity, the number of copies considered
* will be two (the ghost and its owner).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param entity (In) Entity whose copy info
* is requested.
* \param part_ids (Out) Part IDs of parts having copies
* of the given entity.
* \param part_ids_allocated (In/Out) Allocated size of part_ids array.
* \param part_ids_size (Out) Occupied size of part_ids array.
* \param err (Out) Error code.
*/
void iMeshP_getCopyParts( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle entity,
iMeshP_Part** part_ids,
int* part_ids_allocated,
int* part_ids_size,
int* err );
/** \brief Get (remote) entity handles of copies of a given entity.
*
* Given a partition handle and an entity handle, return (remote) entity
* handles and part IDs of all copies of the entity.
* If the given entity is an owned entity or boundary entity,
* the number of copies considered will be complete.
* If the given entity is a ghost entity, the number of copies considered
* will be two (the ghost and its owner).
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param entity (In) Entity whose copy info
* is requested.
* \param part_ids (Out) Part IDs of parts having copies
* of the given entity.
* \param part_ids_allocated (In/Out) Allocated size of part_ids array.
* \param part_ids_size (Out) Occupied size of part_ids array.
* \param copies (Out) (Remote) entity handles of the
* entity copies.
* \param copies_allocated (In/Out) Allocated size of copies.
* \param copies_size (Out) Occupied size of copies.
* \param err (Out) Error code.
*/
void iMeshP_getCopies( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle entity,
iMeshP_Part** part_ids,
int* part_ids_allocated,
int* part_ids_size,
iBase_EntityHandle** copies,
int* copies_allocated,
int* copies_size,
int* err );
/** \brief Get the entity handle of a copy of a given entity in a given part.
*
* Given a partition handle, an entity handle and a part ID,
* return the (remote) entity handle of the copy of the entity in that part.
* Return an error if the entity does not exist in the specified part.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param entity (In) Entity whose copy info
* is requested.
* \param part_id (In) Part ID of part whose copy
* of the given entity is requested.
* \param copy_entity (Out) (Remote) entity handle of the
* entity copy from the given part.
* \param err (Out) Error code.
*/
void iMeshP_getCopyOnPart( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle entity,
const iMeshP_Part part_id,
iBase_EntityHandle* copy_entity,
int* err );
/** \brief Get the entity handle of a copy of a given entity in its owner part.
*
* Given a partition handle and an entity handle, return the (remote)
* entity handle of the copy of the entity in its owner part.
*
* COMMUNICATION: None++.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param entity (In) Entity whose copy info
* is requested.
* \param owner_part_id (Out) Part ID of the entity's owner part.
* \param owner_entity (Out) (Remote) entity handle of the
* entity copy from the owner part.
* \param err (Out) Error code.
*/
void iMeshP_getOwnerCopy( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle entity,
iMeshP_Part* owner_part_id,
iBase_EntityHandle* owner_entity,
int* err );
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/*------- COMMUNICATION ----------*/
/*------------------------------------------------------------------------*/
/*------------------------------------------------------------------------*/
/**\brief Wait for a specific iMeshP request to complete.
*
* Given an iMeshP_RequestHandle, wait for the request to complete.
*
* COMMUNICATION: Blocking point-to-point.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param request (In) iMeshP request for whose completion
* we should wait.
* \param err (Out) Error code.
*/
void iMeshP_waitForRequest( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_RequestHandle request,
int* err );
/**\brief Wait for any of the specified iMeshP requests to complete.
*
* Given an array of iMeshP_RequestHandles, wait for any one of the requests
* to complete.
*
* COMMUNICATION: Blocking point-to-point.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param requests (In) iMeshP requests for which we wait
* until one request completes.
* \param requests_size (In) Number of requests in requests.
* \param index (Out) Index of the request that completed.
* \param err (Out) Error code.
*/
void iMeshP_waitForAnyRequest( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_RequestHandle* requests,
int requests_size,
int* index,
int* err );
/**\brief Wait for all of the specified iMeshP requests to complete.
*
* Given an array of iMeshP_RequestHandles, wait for all of the requests
* to complete.
*
* COMMUNICATION: Blocking point-to-point.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param requests (In) iMeshP requests for which we wait
* until completion.
* \param requests_size (In) Number of requests in requests.
* \param err (Out) Error code.
*/
void iMeshP_waitForAllRequests( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_RequestHandle* requests,
int requests_size,
int* err );
/**\brief Wait for a specific request to complete; return entities received.
*
* Given an iMeshP_RequestHandle, wait for the request to complete. Return
* entities for which information was received.
*
* COMMUNICATION: Blocking point-to-point.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param request (In) iMeshP request for whose completion
* we should wait.
* \param out_entities (Out) Entities for which information was
* received.
* \param out_entities_allocated (In/Out) Allocated size of out_entities.
* \param out_entities_size (Out) Occupied size of out_entities.
* \param err (Out) Error code.
*/
void iMeshP_waitForRequestEnt( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_RequestHandle request,
iBase_EntityHandle** out_entities,
int* out_entities_allocated,
int* out_entities_size,
int* err );
/**\brief Test whether a specific request has completed.
*
* Given an iMeshP_RequestHandle, test whether the request has completed.
* This function will not wait until the request completes; it will only
* return the completion status (complete = 1 or 0).
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param request (In) iMeshP request for whose completion
* we should test.
* \param completed (Out) Flag indicating whether (1) or
* not (0) the given request has
* completed.
* \param err (Out) Error code.
*/
void iMeshP_testRequest( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_RequestHandle request,
int* completed,
int* err );
/** \brief Poll for outstanding requests.
*
* Check for outstanding requests from other parts, handle any requests
* found, and return an array of requests that have been handled. If
* the array has a size allocated already, then the implementation stops
* working when it has generated that many completed requests, even if there
* are more requests waiting.
*
* COMMUNICATION: non-blocking; point-to-point.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition being queried.
* \param requests_completed (Out) Requests that were completed.
* \param requests_completed_allocated (In/Out) Allocated size of
* requests_completed.
* \param requests_completed_size (Out) Occupied size of
* requests_completed.
* \param err (Out) Error code.
*/
void iMeshP_pollForRequests( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iMeshP_PartitionHandle partition,
iMeshP_RequestHandle** requests_completed,
int* requests_completed_allocated,
int* requests_completed_size,
int* err );
/*--------------------------------------------------------------------
------- Requests for off-processor mesh modification -------
--------------------------------------------------------------------*/
/** \brief Add entities to on-process and/or off-process parts.
*
* Given a partition and a list of entities, add those entities to the
* target parts. The entities can be added as copies or migrated entirely
* (i.e., change ownership of the entities)
* to the parts. The entities' downward adjacencies are also copied and/or
* migrated as appropriate to support the entities.
* This function is a collective, non-blocking operation
* to be called by all processes in the partition's communicator.
* An iMeshP_RequestHandle is returned; any of the
* iMeshP_wait* functions can be used to block until the request is completed.
*
* COMMUNICATION: Collective. Non-blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) Handle for the partition being queried.
* \param entities (In) Entities to be sent.
* \param entities_size (In) Number of entities to be sent.
* \param target_part_ids (In) Array of size entities_size listing
* the parts to which the entities should
* be sent.
* \param command_code (In) Flag indicating whether to migrate
* the entities or only make copies.
* \param update_ghost (In) Flag indicating whether (1) or not (0)
* ghost copies of the entities should be
* updated with new owner information.
* \param request (Out) iMeshP RequestHandle returned; can be used
* for blocking until this send is complete.
* \param err (Out) Error code.
*/
void iMeshP_exchEntArrToPartsAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle* entities,
const int entities_size,
const iMeshP_Part* target_part_ids,
int command_code,
int update_ghost,
iMeshP_RequestHandle* request,
int* err );
/** \brief Request in-migration of an entity and its upward adjacencies.
*
* This function is a "pull" migration, where a part requests to become the
* owner of an entity that is owned by another part (so that the part has
* the right to modify the entity). The requested
* entity must be on the part boundary and is identified by a local handle
* (i.e., an entity part-boundary copy). This operation may require multiple
* rounds of communication, and at some times, certain entities may be
* locked (unavailable for local modification) while info about their
* remote copies is still in question. Tags and parallel set membership
* are migrated as well as the appropriate adjacency info.
* An iMeshP request handle is returned.
*
* COMMUNICATION: point-to-point, non-blocking, pull.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param part (In) The part to which the entity is migrated.
* \param local_entity (In) The local entity copy for the entity to be
* migrated.
* \param request (Out) The iMeshP request handle returned.
* \param err (Out) Error code.
*/
void iMeshP_migrateEntity( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iMeshP_PartHandle part,
iBase_EntityHandle local_entity,
iMeshP_RequestHandle* request,
int* err );
/** \brief Update vertex coordinates for vertex copies.
*
* For a given vertex, update its copies with the vertex's coordinates.
* This function assumes that a local vertex's coordinates were updated
* through a call to iMesh_setVtxCoords. This function then updates all
* copies of the vertex with the updated coordinates.
* The communication here is push-and-forget; as such,
* no request handle needs to be returned.
*
* COMMUNICATION: point-to-point, non-blocking, push-and-forget.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param local_vertex (In) The vertex whose copies should be updated.
* \param err (Out) Error code.
*/
void iMeshP_updateVtxCoords( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle local_vertex,
int* err );
/** \brief Replace entities on the part boundary.
*
* This function performs changes on the part boundary where the
* calling application can ensure that things are done
* identically on both sides and that the arguments are passed in an order
* that can be matched. (Specifically, matching new entities should appear in
* the same order in the call array.) An example is creation of new
* boundary edges during edge splitting.
* Communication here could be a
* two-way push-and-forget, or some variant on push-and-confirm.
* CHANGES: At Onkar's suggestion, added an offset array (similar to array
* adjacency requests) so that a single call can easily handle coordination
* with multiple entities on part-boundary.
*
* COMMUNICATION: point-to-point, non-blocking, push-and-forget.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param old_entities (In) The entities to be replaced.
* \param old_entities_size (In) The number of entities to be replaced.
* \param new_entities (In) The entities that replace the old entities.
* \param new_entities_size (In) The number of entities in new_entities.
* \param offset (In) Index into new_entities; old_entities[i]
* is replaced by new_entities[offset[i]] to
* new_entities[offset[i+1]-1].
* \param offset_size (In) The number of entries in offset.
* \param err (Out) Error code.
*/
void iMeshP_replaceOnPartBdry( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntityHandle* old_entities,
const int old_entities_size,
const iBase_EntityHandle* new_entities,
const int new_entities_size,
const int* offset,
const int offset_size,
int* err );
/** \brief Push ghost copies of individual entities onto other parts.
*
* Given an entity and a target part, create a ghost copy of the entity on
* the target part.
*
* Communication here is push-and-confirm (so that the original knows remote
* entity handle of the created ghosts). The closure of a new ghost is pushed
* automatically as part of the underlying communication.
*
* COMMUNICATION: point-to-point, non-blocking, push.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param target_part_id (In) The part to receive the new ghost.
* \param entity_to_copy (In) The entity to be copied in target_part_id.
* \param request (Out) The iMeshP request handle returned.
* \param err (Out) Error code.
*/
void iMeshP_addGhostOf( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_Part target_part_id,
iBase_EntityHandle entity_to_copy,
iMeshP_RequestHandle* request,
int* err );
/** \brief Remove ghost copies of individual entities from other parts.
*
* Given an entity and a target part, remove the ghost copy of the entity on
* the target part.
*
* Communication is push-and-forget; as such, no request handle is needed.
* The remote part will clean up the closure of the removed ghost
* as appropriate during deletion.
*
* COMMUNICATION: point-to-point, non-blocking, push-and-forget.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param target_part_id (In) The part to lose the ghost.
* \param copy_to_purge (In) The entity whose ghost is removed from
* target_part_id.
* \param err (Out) Error code.
*/
void iMeshP_rmvGhostOf( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iMeshP_Part target_part_id,
iBase_EntityHandle copy_to_purge,
int* err );
/** \brief Indicate completion of mesh modification.
*
* Calling this function indicates that the user is finished with mesh
* modification for now. With mesh modification complete, the implementation
* can update ghost, partition, boundary, and other information to
* re-establish a valid distributed mesh. This function waits for all
* message traffic to clear and rebuilds ghost information that was
* allowed to go obsolete during mesh modification.
*
* COMMUNICATION: collective.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param err (Out) Error code.
*/
void iMeshP_syncMeshAll( iMesh_Instance instance, iMeshP_PartitionHandle partition, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/*--------------------------------------------------------------------------*/
/* Functions to send Tag data from owning entities to copies. */
/*--------------------------------------------------------------------------*/
/**\brief Synchronously send tag data for given entity types and topologies.
*
* Send tag information for shared entities of specified type and
* topology. The tag data is "pushed" from the owner entities to all copies.
* This version operates on all shared entities of specified type and topology
* (or all types/topologies if iBase_ALL_TYPES/iMesh_ALL_TOPOLOGIES are
* given). This function assumes tag handles given on various
* calling parts are consistent; i.e. they have the same name,
* data type, size, etc. This call blocks until communication is
* completed.
*
* COMMUNICATION: point-to-point, blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param source_tag (In) Tag handle for the sending entities.
* \param dest_tag (In) Tag handle for the receiving entities.
* \param entity_type (In) Tag data is exchanged only for this
* entity type.
* \param entity_topo (In) Tag data is exchanged only for this
* entity topology.
* \param err (Out) Error code.
*/
void iMeshP_pushTags( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iBase_TagHandle source_tag,
iBase_TagHandle dest_tag,
int entity_type,
int entity_topo,
int* err );
/**\brief Synchronously send tag data for individual entities.
*
* Send tag information for the specified entities.
* The tag data is "pushed" from the owner entities to all copies.
* This function assumes tag handles given on various
* calling parts are consistent; i.e. they have the same name,
* data type, size, etc. This call blocks until communication is
* completed.
*
* COMMUNICATION: point-to-point, blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param source_tag (In) Tag handle for the sending entities.
* \param dest_tag (In) Tag handle for the receiving entities.
* \param entities (In) Owned entities for which to send data.
* \param entities_size (In) The number of entities for which to send data.
* \param err (Out) Error code.
*/
void iMeshP_pushTagsEnt( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iBase_TagHandle source_tag,
iBase_TagHandle dest_tag,
const iBase_EntityHandle* entities,
int entities_size,
int* err );
/**\brief Asynchronously send tag data for given entity types and topologies.
*
* Send tag information for shared entities of specified type and
* topology. The tag data is "pushed" from the owner entities to all copies.
* This version operates on all shared entities of specified type and topology
* (or all types/topologies if iBase_ALL_TYPES/iMesh_ALL_TOPOLOGIES are
* given). This function assumes tag handles given on various
* calling parts are consistent; i.e. they have the same name,
* data type, size, etc.
* This call does not block; applications should call
* iMeshP_waitForRequest (or a similar wait function)
* to block until this push is completed.
*
* COMMUNICATION: point-to-point, non-blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param source_tag (In) Tag handle for the sending entities.
* \param dest_tag (In) Tag handle for the receiving entities.
* \param entity_type (In) Tag data is exchanged only for this
* entity type.
* \param entity_topo (In) Tag data is exchanged only for this
* entity topology.
* \param request (Out) The iMeshP request handle returned.
* \param err (Out) Error code.
*/
void iMeshP_iPushTags( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iBase_TagHandle source_tag,
iBase_TagHandle dest_tag,
int entity_type,
int entity_topo,
iMeshP_RequestHandle* request,
int* err );
/**\brief Asynchronously send tag data for individual entities.
*
* Send tag information for the specified entities.
* The tag data is "pushed" from the owner entities to all copies.
* This function assumes tag handles given on various
* calling parts are consistent; i.e. they have the same name,
* data type, size, etc.
* This call does not block; applications should call
* iMeshP_waitForRequest (or a similar wait function)
* to block until this push is completed.
*
* COMMUNICATION: point-to-point, non-blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being queried.
* \param source_tag (In) Tag handle for the sending entities.
* \param dest_tag (In) Tag handle for the receiving entities.
* \param entities (In) Owned entities for which to send data.
* \param entities_size (In) The number of entities for which to send data.
* \param request (Out) The iMeshP request handle returned.
* \param err (Out) Error code.
*/
void iMeshP_iPushTagsEnt( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
iBase_TagHandle source_tag,
iBase_TagHandle dest_tag,
const iBase_EntityHandle* entities,
int entities_size,
iMeshP_RequestHandle* request,
int* err );
/*------------------------------------------------------------*
* GHOSTING *
*------------------------------------------------------------*/
/* \brief Create ghost entities between parts.
*
* Ghost entities are specified similar to 2nd-order adjacencies, i.e.,
* through a "bridge" dimension. The number of layers is measured from
* the inter-part interfaces. For example, to get two layers of region
* entities in the ghost layer, measured from faces on the interface,
* use ghost_dim=3, bridge_dim=2, and num_layers=2.
* The number of layers specified is with respect to the global mesh;
* that is, ghosting may extend beyond a single neighboring processor if the
* number of layers is high.
*
* Ghost information is cached in the partition.
* The triplet describing a ghosting "rule" (ghost dim, bridge dim, #
* layers) is stored in the partition; ghosting that became incorrect
* due to mesh modification or redistribution of mesh entities is
* re-established using these rules by the end
* of iMeshP_syncPartitionAll and iMeshP_syncMeshAll.
* Implementations can choose to keep ghosting consistent throughout
* mesh modification, but ghosts are not required to be consistent until
* the end of these two functions.
* iMeshP_createGhostEntsAll is cumulative; that is, multiple calls can only
* add more ghosts, not eliminate previous ghosts.
*
* COMMUNICATION: Collective. Blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition in which to create ghosts.
* \param ghost_type (In) Entity type of entities to be ghosted.
* \param bridge_type (In) Entity type through which bridge
* adjacencies are found.
* \param num_layers (In) Number of layers of ghost entities.
* \param include_copies (In) Flag indicating whether to create ghosts
* of non-owned part boundary entities
* (YES=1, NO=0).
* \param err (Out) Error code.
*/
void iMeshP_createGhostEntsAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iMeshP_PartitionHandle partition,
int ghost_type,
int bridge_type,
int num_layers,
int include_copies,
int* err );
/* \brief Delete all ghost entities between parts.
*
* Given a partition, delete all ghost entities in that partition of the mesh.
*
* COMMUNICATION: Collective. Blocking.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition from which to delete ghosts.
* \param err (Out) Error code.
*
*/
void iMeshP_deleteGhostEntsAll( iMesh_Instance instance, iMeshP_PartitionHandle partition, int* err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
/** \brief Return information about all ghosting on a partition.
*
* Return the ghosting rules established through calls to
* iMeshP_createGhostEntsAll.
*
* COMMUNICATION: None.
*
* \param instance (In) Mesh instance containing the
* partition.
* \param partition (In) The partition to be queried.
* \param ghost_rules_allocated (In/Out) Allocated size of ghost_type,
* bridge_type and num_layers.
* \param ghost_rules_size (Out) Occupied size of ghost_type,
* bridge_type and num_layers;
* equal to the number of ghosting
* rules currently registered in
* the partition.
* \param ghost_type (Out) Entity type of ghost entities
* for each rule.
* \param bridge_type (Out) Entity type of bridge entities
* for each rule.
* \param num_layers (Out) Number of layers of ghosts in each
* rule.
* \param err (Out) Error code.
*/
void iMeshP_ghostEntInfo( const iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
int* ghost_rules_allocated,
int* ghost_rules_size,
int** ghost_type,
int** bridge_type,
int** num_layers,
int* err );
/*--------------------------------------------------------------------------
FILE I/O
--------------------------------------------------------------------------*/
/* iMeshP file I/O closely aligns with iMesh file I/O. The major
* change is the addition of a iMeshP_PartitionHandle argument to both
* iMeshP_loadAll and iMeshP_saveAll, enabling I/O from parallel processes.
* For now, individual implementations will support different sets of
* options; Tim and Ken will work to unify the options by SC08.
*/
/** \brief Populate a mesh instance and a partition by reading data from files.
*
* Before calling iMeshP_loadAll, the application creates both a mesh
* instance and a partition handle. iMeshP_loadAll then reads the
* specified file, inserts entities into the mesh instance, constructs
* parts within the partition, and inserts entities into the parts.
* Options allow n>=1 files on p processes.
* Optional capabilities of iMeshP_loadAll include computing an initial
* partition (e.g., if a serial mesh file without part assignments is read)
* and creating ghost entities as requested by the application; the
* availability of these options is implementation dependent.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance to contain the data.
* \param partition (In) The newly populated partition.
* \param entity_set (In) Set to which the mesh will be added.
* \param name (in) File name from which mesh data is read.
* \param options (In) Implementation-specific options string.
* \param err (Out) Error code.
* \param name_len (In) Length of the file name character string.
* \param options_len (In) Length of the options character string.
*/
void iMeshP_loadAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntitySetHandle entity_set,
const char* name,
const char* options,
int* err,
int name_len,
int options_len );
/** \brief Write data from a mesh instance and a partition to files.
*
* iMeshP_saveAll writes mesh and partition data to the specified file.
* Options allow n>=1 files on p processes.
*
* COMMUNICATION: Collective.
*
* \param instance (In) Mesh instance containing the partition.
* \param partition (In) The partition being saved.
* \param entity_set (In) Set from which data will be saved.
* \param name (in) File name to which mesh data is written.
* \param options (In) Implementation-specific options string.
* \param err (Out) Error code.
* \param name_len (In) Length of the file name character string.
* \param options_len (In) Length of the options character string.
*/
void iMeshP_saveAll( iMesh_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iMeshP_PartitionHandle partition,
const iBase_EntitySetHandle entity_set,
const char* name,
const char* options,
int* err,
const int name_len,
int options_len );
/*
------------------------------------------------
Major Items left to do:
- Support for multiple partitions.
We discussed designating a given partition as
the "active" partition; i.e., the partition that is actually used in
the distribution of mesh data in distributed memory. We were concerned
that when multiple partitions were used, multiple copies of mesh
entities would be needed to fully support multiple partitions at the
same time. Designating one partition as "active" would store data
with respect to only one partition.
- File I/O support.
Need common set of options to allow interoperability.
Support single files, N << P files on P processes, and P files.
Support reading and writing partition information.
Support initial parallel partitioning of serial file data.
Support storing mapping of parts to processes in files.
------------------------------------------------
Minor Items left to do:
- Determine which capabilities need both "getNumX" and "getX" functions.
That is, when would an application need "getNumX" to allocate memory
for "getX" or separately from "getX". When could we use only "getX"
and return numX as a byproduct.
- Determine with functions need "Ent" and "EntArr" versions, or whether
we should adopt only the more general "EntArr" version.
- Determine whether to revise iMeshP_createPartition to make it less MPI
specific. We don't want to require applications to link with MPI if the
implementation doesn't require it. We may define an ITAPS_Comm name
typedef'ed appropriately.
- iMeshP_getOwnerCopy could be achieved by calling iMeshP_getOwnerPart
followed by iMeshP_getCopyOnPart. Do we want to keep iMeshP_getOwnerCopy?
- Need function to receive tag data from part-boundary entities in owner.
Possible options: return the tag data values received directly, or
include a mathematical operation (similar to MPI_SUM). 9/15/08
------------------------------------------------
Comments and resolved questions:
- Applications will build partitions by (1) creating a partition handle
on each process to be included in the partition; (2) adding parts to
the partition handle within the process; (3) populating the parts with
entities, and (4) calling iMeshP_syncPartitionAll to allow the
implementation to compute global data for the partition.
- For now, we will not include an iterator over local (to a
process) parts within a partition. If it is needed, it can be added
later.
- We will not provide capability to move entire parts to new
processes; instead, the new process must create the part in its
partition handle and then receive (perhaps in bulk) the entities to
populate the part. In other words, parts can be added to only a local
partition handle.
- Currently, iMesh doesn't have the functionality to get entities or
entity sets by type and tag in serial. Should it?
Many people said it would be useful; others said it could be costly
(in parallel) or numerically difficult (for floating point values).
This issue is an iMesh issue, not a parallel interface issue, so
for this document, the issue is resolved. The resolution: If
iMesh adopts this capability, we will add it to the
parallel interface.
- We will not include functions that return all entities with
given characteristics within a partition; the memory use of these
functions can be large. Instead, we will return entity information
with respect to parts and/or mesh instances. If the user wants such
info, he should go through the mechanics of gathering it himself so
that he is painfully aware of how much memory he is allocating.
Removed the following global queries:
+ All tag names over the partition;
+ All entities in this partition having a given type, tag and/or
tag name.
+ All entity sets in this partition having a given
type, tag and/or tag name.
- We will not include functions that return information about each
part and/or process in a partition. Such functions limit memory
scalability for large numbers of parts. If the user wants such
info, he should go through the mechanics of gathering it himself so
that he is painfully aware of how much memory he is allocating.
Removed the following global queries:
+ The number of entities in each part of the partition;
+ The number of entity sets in each part of the partition;
+ The number of entities with given type, tag, and/or
tag name in each part of the partition;
+ The number of entity sets with given type, tag,
and/or tag name in each part of the partition;
+ All tag names in each part of the partition;
- For functions that replace a set handle with a part handle, return
all appropriate entities in a part, whether they are owned or are
copies. The application can test for ownership if needed.
- Part assignments computed with respect to a set of
entities induce part assignments to adjacent entities in an
implementation-dependent fashion. That is, if a partition is computed
with respect to regions, queries about ownership of faces and vertices
are valid.
------------------------------------------------
Discussed but unresolved questions:
- We discussed adding functions that give
hints to an implementation about which data mappings the application
will use, allowing the implementation to pre-compute them if it chooses
to. The example discussed was mapping between entities and parts, but
other examples in iMesh may also exist.
- We discussed adding an iterator over entities
with given type/topology in a set or part. We have non-iterator
functionality, but not an iterator.
KDD: Is this true? What is iMesh_initEntIter (and its analogous
KDD: iMeshP_initEntIter)?
- We discussed storing in a partition
information about which "objects" were used in computing the partition.
These objects can be single entities or groups of entities.
KDD: Perhaps this capability should be part of the load-balancing service.
- We discussed designating a given partition as
the "active" partition; i.e., the partition that is actually used in
the distribution of mesh data in distributed memory. We were concerned
that when multiple partitions were used, multiple copies of mesh
entities would be needed to fully support multiple partitions at the
same time. Designating one partition as "active" would store data
with respect to only one partition.
------------------------------------------------
Not-yet-discussed, unresolved questions
Entity questions:
- From Carl: "getTag*Operate: Again, we haven't got this in serial. Does
the existence of such operations imply that we expect to implement
fields as tags? (Because that wasn't what I was assuming about field
implementations at all, personally...) Note that I'm not opposed to
this sort of global reduction operation, I just wonder whether it'll see
use outside of field-like situations. If not, then it should be in
parallel fields, not parallel mesh, and usage for
fields-implemented-as-tags should be handled there."
*/
/*--------------------------------*/
/* NOTES FROM BOOTCAMP MARCH 2008 */
/*--------------------------------*/
/*
- Changed getPartRank to getRankOfPart. (Carl)
- Made sure iMeshP_getNumOfTypeAll and iMeshP_getNumOfTopoAll were
documented as collective operations. (Carl)
- Changed suffix "Par" to "All". (Lori)
- Added iMeshP_testPart() to test status of part handle, returning
LOCAL, REMOTE, or INVALID. (Mark M, Lori).
6/25/08: Removed this function since part handles can no longer be remote.
If an application wants to test the validity of a part handle, it can try
to compute its Part ID.
- Changed iMeshP_addCopyOf and iMeshP_rmvCopyOf back to
iMeshP_addGhostOf and iMeshP_rmvGhostOf. If we wanted to use these
functions for adding boundary copies, we'd have to include a list of
already existing remote copies in the arguments, as well as
communicate with parts already owning copies to let them know a ghost
copy has been made. Actually, this raises an interesting question:
does a boundary copy need to know about all ghost copies of it?
- Change getEntParStatus to getEntStatus. (Lori)
- Changed sendEntArrToPartsPar to exchEntArrToPartsAll. (Lori,Tim)
Parts and Processes:
- Martin argued for consecutive unique Part IDs in addition to or
instead of Part handles. He will send use cases. If we decide to
add them back to the interface, we could compute them in
iMeshP_syncPartitionAll rather than in iMeshP_createPart. That is, an
application couldn't access them until after iMeshP_syncPartitionAll.
6/25/08: On follow-up, Martin couldn't recall why having consecutive
PartIDs was necessary. While we all agree they are conceptually nice,
they are difficult to implement and not really necessary. Part IDs will
be globally unique but not necessarily consecutive.
- Are part handles globally unique? They probably need to be
globally unique in order for them to be useful as remote part
handles. Also, does the process rank need to be encoded in the part
handle in order to map from parts to processes for communication?
6/25/08: DECIDED: We will have globally unique part IDs. Part handles
will be valid for only local parts. Accessing remote parts must be done
via Part IDs.
- If in iMeshP_syncPartitionAll, we computed a mapping from part
handles to integers 0,..., k-1, we could store only ranges of
integers to achieve the part-to-process and process-to-parts mappings;
this would require O(P) storage per process for P processes.
6/5/08: DECIDED: Do not need getPartOnRank or getNumPartOnRank. These
functions were troublesome due to their storage or communication requirements.
We decided to remove them.
- Alternatively, the mapping of all parts to processes can be stored
in O(k) total memory, distributed across processors (e.g., a
distributed data directory) but interrogating the directory requires
communication.
6/5/08: See note above.
- iMeshP_getPartsOnRank created discussion and needs to be resolved.
IMeshP_getPartsOnRank would likely require either O(k) storage per
process for k parts or communication. For other points, please see
Mark M's 3/12/08 email.
6/5/08: See note above.
CreateEnt:
- Carl asked if we should have a version of createEnt that accepts a
part handle. Should this function be used only for creating owned
entities? How do you envision creating part boundary entities when a
parallel mesh is initially loaded?
Ghost entities:
- We currently have a mechanism only for pushing ghosts onto other
parts. Will we want a mechanism for pulling them, too? (E.g., a
part says, "I want ghosts for this entity.")
PartNbor functions:
- Did we agree to remove the entity type from these functions? That
is, do we want to return the part IDs for all parts that have
any copies? The entity type was intended to allow us to get the part
IDs for all parts that have copies of a given type (perhaps
ALL_TYPES).
Functions handling both Parts and Entity Sets:
- Tim said these function names (e.g., iMeshP_getNumOfType,
iMeshP_getAllVtxCoord) are too close to existing iMesh function
names, even though the argument lists would be different. He agreed
to email suggestions for better names.
Copies:
- Functions getNumCopies, getCopies, getCopyParts, and getCopyOnPart
have different behavior for ghost and part-boundary copies. Ghosts
will return only itself and its owner in getCopies; part-boundary
entities will return copies on other parts as well.
- Tim envisions applications (e.g., FETI methods) updating tag data
in their copies that they would like to accumulate back to the
owner. Xiaolin said that he writes in his ghosts, but doesn't send
those values back to the owner. Currently, we have the ability
to send tag data only from owners to ghosts. Tim will look at this issue
and propose a solution.
Communication:
- Although we should think in terms of parts, communication really
occurs with respect to processes. We need to make sure all our
communication routines make sense with respect to both processes and
parts, and perhaps, revise their descriptions. Also, if we send to
parts, the implementation really does need the mapping of parts to
processes.
Entity Owner/Status Queries:
- Should we combine functions getEntOwnerPart and getEntStatus into
one function? Or should we combine functions getOwnerCopy and
getEntOwner into one function? Or should we remove getOwnerCopy and
make applications call getOwnerPart followed by getCopyOnPart?
Reducing storage:
- Mark Miller proposed allowing the user to specify the amount of
copying done by the implementation, depending on applications' needs.
For example, for a static viz application, every boundary entity may not
need to know where all its copies are, so the implementation would not
have to store them. Can the implementations accept a flag advising them how
much copying is needed? If so, the implementations could choose to
optimize storage or ignore the flag.
*/
/*--------------------------------------------------------------------
* SVN File Information
*
* $SVN:Author$
* $SVN:Date$
* $SVN:Revision$
*--------------------------------------------------------------------
*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* !defined(_ITAPS_iMeshP) */
|