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
|
.TH Constants 3 "11/21/2018" " " "MPI"
.SH NAME
Constants \- Meaning of MPI's defined constants
.SH DATA TYPES
Note that the Fortran types should only be used in Fortran programs,
and the C types should only be used in C programs. For example,
it is in error to use
.I MPI_INT
for a Fortran INTEGER.
Datatypes are of type
.I MPI_Datatype
in C, type
.I INTEGER
in Fortran,
and
.I Type(MPI_Datatype)
in Fortran08
.SH C DATATYPES
MPI_CHAR - char
.PD 0
.TP
.B MPI_SIGNED_CHAR
- signed char
.PD 1
.PD 0
.TP
.B MPI_UNSIGNED_CHAR
- unsigned char
.PD 1
.PD 0
.TP
.B MPI_BYTE
- See standard; like unsigned char
.PD 1
.PD 0
.TP
.B MPI_WCHAR
- wide character (wchar_t)
.PD 1
.PD 0
.TP
.B MPI_SHORT
- short
.PD 1
.PD 0
.TP
.B MPI_UNSIGNED_SHORT
- unsigned short
.PD 1
.PD 0
.TP
.B MPI_INT
- int
.PD 1
.PD 0
.TP
.B MPI_UNSIGNED
- unsigned int
.PD 1
.PD 0
.TP
.B MPI_LONG
- long
.PD 1
.PD 0
.TP
.B MPI_UNSIGNED_LONG
- unsigned long
.PD 1
.PD 0
.TP
.B MPI_LONG_LONG_INT
- long long
.PD 1
.PD 0
.TP
.B MPI_LONG_LONG
- synonyn for
.I MPI_LONG_LONG_INT
.PD 1
.PD 0
.TP
.B MPI_UNSIGNED_LONG_LONG
- unsigned long long
.PD 1
.PD 0
.TP
.B MPI_FLOAT
- float
.PD 1
.PD 0
.TP
.B MPI_DOUBLE
- double
.PD 1
.PD 0
.TP
.B MPI_LONG_DOUBLE
- long double (some systems may not implement this)
.PD 1
.PD 0
.TP
.B MPI_INT8_T
- int8_t
.PD 1
.PD 0
.TP
.B MPI_INT16_T
- int16_t
.PD 1
.PD 0
.TP
.B MPI_INT32_T
- int32_t
.PD 1
.PD 0
.TP
.B MPI_INT64_T
- int64_t
.PD 1
.PD 0
.TP
.B MPI_UINT8_T
- uint8_t
.PD 1
.PD 0
.TP
.B MPI_UINT16_T
- uint16_t
.PD 1
.PD 0
.TP
.B MPI_UINT32_T
- uint32_t
.PD 1
.PD 0
.TP
.B MPI_UINT64_T
- uint64_t
.PD 1
.PD 0
.TP
.B MPI_C_BOOL
- _Bool
.PD 1
.PD 0
.TP
.B MPI_C_FLOAT_COMPLEX
- float _Complex
.PD 1
.PD 0
.TP
.B MPI_C_COMPLEX
- float _Complex
.PD 1
.PD 0
.TP
.B MPI_C_DOUBLE_COMPLEX
- double _Complex
.PD 1
.PD 0
.TP
.B MPI_C_LONG_DOUBLE_COMPLEX
- long double _Complex
.PD 1
The following are datatypes for the MPI functions
.I MPI_MAXLOC
and
.I MPI_MINLOC
\&.
MPI_FLOAT_INT -
.I struct { float, int }
.PD 0
.TP
.B MPI_LONG_INT
-
.I struct { long, int }
.PD 1
.PD 0
.TP
.B MPI_DOUBLE_INT
-
.I struct { double, int }
.PD 1
.PD 0
.TP
.B MPI_SHORT_INT
-
.I struct { short, int }
.PD 1
.PD 0
.TP
.B MPI_2INT
-
.I struct { int, int }
.PD 1
.PD 0
.TP
.B MPI_LONG_DOUBLE_INT
-
.I struct { long double, int }
; this
is an
.B optional
type, and may be set to
.I MPI_DATATYPE_NULL
.PD 1
Special datatypes for C and Fortran
MPI_PACKED - For
.I MPI_Pack
and
.I MPI_Unpack
.PD 0
.TP
.B MPI_UB
- For
.I MPI_Type_struct
; an upper-bound indicator. Removed in MPI 3
.PD 1
.PD 0
.TP
.B MPI_LB
- For
.I MPI_Type_struct
; a lower-bound indicator. Removed in MPI 3
.PD 1
.SH FORTRAN DATATYPES
MPI_REAL -
.I REAL
.PD 0
.TP
.B MPI_INTEGER
-
.I INTEGER
.PD 1
.PD 0
.TP
.B MPI_LOGICAL
-
.I LOGICAL
.PD 1
.PD 0
.TP
.B MPI_DOUBLE_PRECISION
-
.I DOUBLE PRECISION
.PD 1
.PD 0
.TP
.B MPI_COMPLEX
-
.I COMPLEX
.PD 1
.PD 0
.TP
.B MPI_DOUBLE_COMPLEX
-
.I complex*16
(or
.I complex*32
) where supported.
.PD 1
The following datatypes are optional
MPI_INTEGER1 -
.I integer*1
if supported
.PD 0
.TP
.B MPI_INTEGER2
-
.I integer*2
if supported
.PD 1
.PD 0
.TP
.B MPI_INTEGER4
-
.I integer*4
if supported
.PD 1
.PD 0
.TP
.B MPI_INTEGER8
-
.I integer*8
if supported
.PD 1
.PD 0
.TP
.B MPI_INTEGER16
-
.I integer*16
if supported
.PD 1
.PD 0
.TP
.B MPI_REAL4
-
.I real*4
if supported
.PD 1
.PD 0
.TP
.B MPI_REAL8
-
.I real*8
if supported
.PD 1
.PD 0
.TP
.B MPI_REAL16
-
.I real*16
if supported
.PD 1
.PD 0
.TP
.B MPI_COMPLEX8
-
.I complex*8
if supported
.PD 1
.PD 0
.TP
.B MPI_COMPLEX16
-
.I complex*16
if supported
.PD 1
.PD 0
.TP
.B MPI_COMPLEX32
-
.I complex*32
if supported
.PD 1
The following are datatypes for the MPI functions
.I MPI_MAXLOC
and
.I MPI_MINLOC
\&.
In Fortran, these datatype always consist of
two elements of the same Fortran type.
MPI_2INTEGER -
.I INTEGER,INTEGER
.PD 0
.TP
.B MPI_2REAL
-
.I REAL, REAL
.PD 1
.PD 0
.TP
.B MPI_2DOUBLE_PRECISION
-
.I DOUBLE PRECISION, DOUBLE PRECISION
.PD 1
MPI Datatypes for MPI Types
MPI_AINT - Datatype for an
.I MPI_Aint
.PD 0
.TP
.B MPI_OFFSET
- Datatype for an
.I MPI_Offset
.PD 1
.PD 0
.TP
.B MPI_COUNT
- Datatype for an
.I MPI_Count
.PD 1
.SH MPI DATATYPE COMBINER NAMES
MPI_COMBINER_NAMED - a named predefined datatype
.PD 0
.TP
.B MPI_COMBINER_DUP
- MPI_TYPE_DUP
.PD 1
.PD 0
.TP
.B MPI_COMBINER_CONTIGUOUS
- MPI_TYPE_CONTIGUOUS
.PD 1
.PD 0
.TP
.B MPI_COMBINER_VECTOR
- MPI_TYPE_VECTOR
.PD 1
.PD 0
.TP
.B MPI_COMBINER_HVECTOR_INTEGER
- Removed in MPI-3
.PD 1
.PD 0
.TP
.B MPI_COMBINER_HVECTOR
- MPI_TYPE_CREATE_HVECTOR
.PD 1
.PD 0
.TP
.B MPI_COMBINER_INDEXED
- MPI_TYPE_INDEXED
.PD 1
.PD 0
.TP
.B MPI_COMBINER_HINDEXED_INTEGER
- Removed in MPI-3
.PD 1
.PD 0
.TP
.B MPI_COMBINER_HINDEXED
- MPI_TYPE_CREATE_HINDEXED
.PD 1
.PD 0
.TP
.B MPI_COMBINER_INDEXED_BLOCK
- MPI_TYPE_CREATE_INDEXED_BLOCK
.PD 1
.PD 0
.TP
.B MPI_COMBINER_STRUCT_INTEGER
- Removed in MPI-3
.PD 1
.PD 0
.TP
.B MPI_COMBINER_STRUCT
- MPI_TYPE_CREATE_STRUCT
.PD 1
.PD 0
.TP
.B MPI_COMBINER_SUBARRAY
- MPI_TYPE_CREATE_SUBARRAY
.PD 1
.PD 0
.TP
.B MPI_COMBINER_DARRAY
- MPI_TYPE_CREATE_DARRAY
.PD 1
.PD 0
.TP
.B MPI_COMBINER_F90_REAL
- MPI_TYPE_CREATE_F90_REAL
.PD 1
.PD 0
.TP
.B MPI_COMBINER_F90_COMPLEX
- MPI_TYPE_CREATE_F90_COMPLEX
.PD 1
.PD 0
.TP
.B MPI_COMBINER_F90_INTEGER
- MPI_TYPE_CREATE_F90_INTEGER
.PD 1
.PD 0
.TP
.B MPI_COMBINER_RESIZED
- MPI_TYPE_CREATE_RESIZED
.PD 1
.PD 0
.TP
.B MPI_COMBINER_HINDEXED_BLOCK
- MPI_TYPE_CREATE_HINDEXED_BLOCK
.PD 1
.SH MPI DATATYPE TYPE CLASSES
MPI Type classes used with routines to return Fortran types with defined
precision and range
MPI_TYPECLASS_REAL -
.I REAL
.PD 0
.TP
.B MPI_TYPECLASS_INTEGER
-
.I INTEGER
.PD 1
.PD 0
.TP
.B MPI_TYPECLASS_COMPLEX
-
.I COMPLEX
.PD 1
.SH MPI DARRAY AND SUBARRAY VALUES
These values are used to create a datatype with the
.I DARRAY
and
.I SUBARRAY
constructors.
MPI_ORDER_C - Row-major order (as used by C)
.PD 0
.TP
.B MPI_ORDER_FORTRAN
- Column-major order (as used by Fortran)
.PD 1
.PD 0
.TP
.B MPI_DISTRIBUTE_BLOCK
- Block distribution
.PD 1
.PD 0
.TP
.B MPI_DISTRIBUTE_CYCLIC
- Cyclic distribution
.PD 1
.PD 0
.TP
.B MPI_DISTRIBUTE_NONE
- This dimension is not distributed
.PD 1
.PD 0
.TP
.B MPI_DISTRIBUTE_DFLT_DARG
- Use the default distribution
.PD 1
.SH COMMUNICATORS
Communicators are of type
.I MPI_Comm
in C,
.I INTEGER
in Fortran, and
.I Type(MPI_Comm)
in Fortran08
MPI_COMM_WORLD - Contains all of the processes
.PD 0
.TP
.B MPI_COMM_SELF
- Contains only the calling process
.PD 1
.SH KIND OF COMMUNICATOR FOR 'MPI_COMM_SPLIT_TYPE'
MPI_COMM_TYPE_SHARED - All processes that can share memory are grouped into
the same communicator.
.SH GROUPS
Groups are of type
.I MPI_Group
in C,
.I INTEGER
in Fortran,
and
.I Type(MPI_Group)
in Fortran08
MPI_GROUP_EMPTY - A group containing no members.
.SH RESULTS OF THE COMPARE OPERATIONS ON GROUPS AND COMMUNICATORS
MPI_IDENT - Identical
.PD 0
.TP
.B MPI_CONGRUENT
- (only for
.I MPI_COMM_COMPARE
) The groups are identical
.PD 1
.PD 0
.TP
.B MPI_SIMILAR
- Same members, but in a different order
.PD 1
.PD 0
.TP
.B MPI_UNEQUAL
- Different
.PD 1
.SH COLLECTIVE OPERATIONS
The collective combination operations (e.g.,
.I MPI_REDUCE
,
.I MPI_ALLREDUCE
,
.I MPI_REDUCE_SCATTER
, and
.I MPI_SCAN
) take a combination operation.
This operation is of type
.I MPI_Op
in C and of type
.I INTEGER
in Fortran.
The predefined operations are
MPI_MAX - return the maximum
.PD 0
.TP
.B MPI_MIN
- return the minumum
.PD 1
.PD 0
.TP
.B MPI_SUM
- return the sum
.PD 1
.PD 0
.TP
.B MPI_PROD
- return the product
.PD 1
.PD 0
.TP
.B MPI_LAND
- return the logical and
.PD 1
.PD 0
.TP
.B MPI_BAND
- return the bitwise and
.PD 1
.PD 0
.TP
.B MPI_LOR
- return the logical or
.PD 1
.PD 0
.TP
.B MPI_BOR
- return the bitwise of
.PD 1
.PD 0
.TP
.B MPI_LXOR
- return the logical exclusive or
.PD 1
.PD 0
.TP
.B MPI_BXOR
- return the bitwise exclusive or
.PD 1
.PD 0
.TP
.B MPI_MINLOC
- return the minimum and the location (actually, the value of
the second element of the structure where the minimum of
the first is found)
.PD 1
.PD 0
.TP
.B MPI_MAXLOC
- return the maximum and the location
.PD 1
.PD 0
.TP
.B MPI_REPLACE
- replace b with a
.PD 1
.PD 0
.TP
.B MPI_NO_OP
- perform no operation
.PD 1
.SH NOTES ON COLLECTIVE OPERATIONS
The reduction functions (
.I MPI_Op
) do not return an error value. As a result,
if the functions detect an error, all they can do is either call
.I MPI_Abort
or silently skip the problem. Thus, if you change the error handler from
.I MPI_ERRORS_ARE_FATAL
to something else, for example,
.I MPI_ERRORS_RETURN
,
then no error may be indicated.
The reason for this is the performance problems in ensuring that
all collective routines return the same error value.
Note that not all datatypes are valid for these functions. For example,
.I MPI_COMPLEX
is not valid for
.I MPI_MAX
and
.I MPI_MIN
\&.
In addition, the MPI
1.1 standard did not include the C types
.I MPI_CHAR
and
.I MPI_UNSIGNED_CHAR
among the lists of arithmetic types for operations like
.I MPI_SUM
\&.
However,
since the C type
.I char
is an integer type (like
.I short
), it should have been
included. The MPI Forum will probably include
.I char
and
.I unsigned char
as a clarification to MPI 1.1; until then, users are advised that MPI
implementations may not accept
.I MPI_CHAR
and
.I MPI_UNSIGNED_CHAR
as valid
datatypes for
.I MPI_SUM
,
.I MPI_PROD
, etc. MPICH does allow these datatypes.
.SH PERMANENT KEY VALUES
These are the same in C and Fortran
MPI_TAG_UB - Largest tag value
.PD 0
.TP
.B MPI_HOST
- Rank of process that is host, if any
.PD 1
.PD 0
.TP
.B MPI_IO
- Rank of process that can do I/O
.PD 1
.PD 0
.TP
.B MPI_WTIME_IS_GLOBAL
- Has value 1 if
.I MPI_WTIME
is globally synchronized.
.PD 1
.PD 0
.TP
.B MPI_UNIVERSE_SIZE
- Number of available processes. See the standard for
a description of limitations on this value
.PD 1
.PD 0
.TP
.B MPI_LASTUSEDCODE
- Last used MPI error code (check - code or class?)
.PD 1
.PD 0
.TP
.B MPI_APPNUM
- Application number, starting from 0. See the standard for
.I MPI_COMM_SPAWN_MULTIPLE
and
.I mpiexec
for details
.PD 1
.SH NULL OBJECTS
MPI_COMM_NULL - Null communicator
.PD 0
.TP
.B MPI_OP_NULL
- Null operation
.PD 1
.PD 0
.TP
.B MPI_GROUP_NULL
- Null group
.PD 1
.PD 0
.TP
.B MPI_DATATYPE_NULL
- Null datatype
.PD 1
.PD 0
.TP
.B MPI_REQUEST_NULL
- Null request
.PD 1
.PD 0
.TP
.B MPI_ERRHANDLER_NULL
- Null error handler
.PD 1
.PD 0
.TP
.B MPI_WIN_NULL
- Null window handle
.PD 1
.PD 0
.TP
.B MPI_FILE_NULL
- Null file handle
.PD 1
.PD 0
.TP
.B MPI_INFO_NULL
- Null info handle
.PD 1
.PD 0
.TP
.B MPI_MESSAGE_NULL
- Null message handle
.PD 1
.PD 0
.TP
.B MPI_ARGV_NULL
- Empty ARGV value for spawn commands
.PD 1
.PD 0
.TP
.B MPI_ARGVS_NULL
- Empty ARGV array for spawn-multiple command
.PD 1
.PD 0
.TP
.B MPI_T_ENUM_NULL
- Null MPI_T enum
.PD 1
.PD 0
.TP
.B MPI_T_CVAR_HANDLE_NULL
- Null MPI_T control variable handle
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_HANDLE_NULL
- Null MPI_T performance variable handle
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_SESSION_NULL
- Null MPI_T performance variable session handle
.PD 1
.SH PREDEFINED CONSTANTS
MPI_MAX_PROCESSOR_NAME - Maximum length of name returned by
.I MPI_GET_PROCESSOR_NAME
.PD 0
.TP
.B MPI_MAX_ERROR_STRING
- Maximum length of string return by
.I MPI_ERROR_STRING
.PD 1
.PD 0
.TP
.B MPI_MAX_LIBRARY_VERSION_STRING
- Maximum length of string returned by
.I MPI_GET_LIBRARY_VERSION_STRING
???
.PD 1
.PD 0
.TP
.B MPI_MAX_PORT_NAME
- Maximum length of a port
.PD 1
.PD 0
.TP
.B MPI_MAX_OBJECT_NAME
- Maximum length of an object (?)
.PD 1
.PD 0
.TP
.B MPI_MAX_INFO_KEY
- Maximum length of an info key
.PD 1
.PD 0
.TP
.B MPI_MAX_INFO_VAL
- Maximum length of an info value
.PD 1
.PD 0
.TP
.B MPI_UNDEFINED
- Used by many routines to indicated
undefined or unknown integer value
.PD 1
.PD 0
.TP
.B MPI_UNDEFINED_RANK
- Unknown rank
.PD 1
.PD 0
.TP
.B MPI_KEYVAL_INVALID
- Special keyval that may be used to detect
uninitialized keyvals.
.PD 1
.PD 0
.TP
.B MPI_BSEND_OVERHEAD
- Add this to the size of a
.I MPI_BSEND
buffer for each outstanding message
.PD 1
.PD 0
.TP
.B MPI_PROC_NULL
- This rank may be used to send or receive from no-one.
.PD 1
.PD 0
.TP
.B MPI_ANY_SOURCE
- In a receive, accept a message from anyone.
.PD 1
.PD 0
.TP
.B MPI_ANY_TAG
- In a receive, accept a message with any tag value.
.PD 1
.PD 0
.TP
.B MPI_BOTTOM
- May be used to indicate the bottom of the address space
.PD 1
.PD 0
.TP
.B MPI_IN_PLACE
- Special location for buffer in some
collective communication routines
.PD 1
.PD 0
.TP
.B MPI_VERSION
- Numeric value of MPI version (e.g., 3)
.PD 1
.PD 0
.TP
.B MPI_SUBVERSION
- Numeric value of MPI subversion (e.g., 1)
.PD 1
.SH TOPOLOGY TYPES
MPI_CART - Cartesian grid
.PD 0
.TP
.B MPI_GRAPH
- General graph
.PD 1
.PD 0
.TP
.B MPI_DIST_GRAPH
- General distributed graph
.PD 1
.SH SPECIAL VALUES FOR DISTRIBUTED GRAPH
MPI_UNWEIGHTED - Indicates that the edges are unweighted
.PD 0
.TP
.B MPI_WEIGHTS_EMPTY
- Special address that indicates no array of weights
information
.PD 1
.SH FILE MODES
MPI_MODE_RDONLY - Read only
.PD 0
.TP
.B MPI_MODE_RDWR
- Read and write
.PD 1
.PD 0
.TP
.B MPI_MODE_WRONLY
- Write only
.PD 1
.PD 0
.TP
.B MPI_MODE_CREATE
- Create the file if it does not exist
.PD 1
.PD 0
.TP
.B MPI_MODE_EXCL
- It is an error if creating a file that already
exists
.PD 1
.PD 0
.TP
.B MPI_MODE_DELETE_ON_CLOSE
- Delete the file on close
.PD 1
.PD 0
.TP
.B MPI_MODE_UNIQUE_OPEN
- The file will not be concurrently opened elsewhere
.PD 1
.PD 0
.TP
.B MPI_MODE_APPEND
- The initial position of all file pointers is at
the end of the file
.PD 1
.PD 0
.TP
.B MPI_MODE_SEQUENTIAL
- File will only be accessed sequentially
.PD 1
.SH FILE DISPLACEMENT
MPI_DISPLACEMENT_CURRENT - Use with files opened with mode
.I MPI_MODE_SEQUENTIAL
in calls to
.I MPI_FILE_SET_VIEW
.SH FILE POSITIONING
MPI_SEEK_SET - Set the pointer to
.I offset
.PD 0
.TP
.B MPI_SEEK_CUR
- Set the pointer to the current position plus
.I offset
.PD 1
.PD 0
.TP
.B MPI_SEEK_END
- Set the pointer to the end of the file plus
.I offset
.PD 1
.SH WINDOW ATTRIBUTES
MPI_WIN_BASE - window base address.
.PD 0
.TP
.B MPI_WIN_SIZE
- window size, in bytes
.PD 1
.PD 0
.TP
.B MPI_WIN_DISP_UNIT
- displacement unit associated with the window
.PD 1
.PD 0
.TP
.B MPI_WIN_CREATE_FLAVOR
- how the window was created
.PD 1
.PD 0
.TP
.B MPI_WIN_MODEL
- memory model for window
.PD 1
.SH WINDOW FLAVORS
MPI_WIN_FLAVOR_CREATE - Window was created with MPI_WIN_CREATE.
.PD 0
.TP
.B MPI_WIN_FLAVOR_ALLOCATE
- Window was created with MPI_WIN_ALLOCATE.
.PD 1
.PD 0
.TP
.B MPI_WIN_FLAVOR_DYNAMIC
- Window was created with MPI_WIN_CREATE_DYNAMIC.
.PD 1
.PD 0
.TP
.B MPI_WIN_FLAVOR_SHARED
- Window was created with MPI_WIN_ALLOCATE_SHARED.
.PD 1
.SH WINDOW MEMORY MODEL
MPI_WIN_SEPARATE - Separate public and private copies of window memory
.PD 0
.TP
.B MPI_WIN_UNIFIED
- The publich and private copies are identical (by which
we mean that updates are eventually observed without additional RMA operations)
.PD 1
.SH WINDOW LOCK TYPES
MPI_LOCK_EXCLUSIVE - Only one process at a time will execute accesses
within the lock
.PD 0
.TP
.B MPI_LOCK_SHARED
- Not exclusive; multiple processes may execute accesses
within the lock
.PD 1
.SH WINDOW ASSERTIONS
See section 11.5 in MPI 3.1 for a detailed description of each of these
assertion values.
MPI_MODE_NOCHECK - The matching calls to MPI_WIN_POST or MPI_WIN_START
have already completed, or no process holds or will attempt to acquire, a
conflicting lock.
.PD 0
.TP
.B MPI_MODE_NOSTORE
- The local window has not been updated by stores
since the last synchronization
.PD 1
.PD 0
.TP
.B MPI_MODE_NOPUT
- The local window will not be updated by put or
accumulate until the next synchronization
.PD 1
.PD 0
.TP
.B MPI_MODE_NOPRECEDE
- The fence does not complete any locally issued RMA
calls
.PD 1
.PD 0
.TP
.B MPI_MODE_NOSUCCEED
- The fence does not start any locally issued RMA calls
.PD 1
.SH PREDEFINED INFO OBJECT
MPI_INFO_ENV - Contains the execution environment
.SH MPI STATUS
The
.I MPI_Status
datatype is a structure in C. The three elements for use
by programmers are
MPI_SOURCE - Who sent the message
.PD 0
.TP
.B MPI_TAG
- What tag the message was sent with
.PD 1
.PD 0
.TP
.B MPI_ERROR
- Any error return (only when the error returned by the routine
has error class
.I MPI_ERR_IN_STATUS
)
.PD 1
MPI_STATUS_IGNORE - Ignore a single
.I MPI_Status
argument
.PD 0
.TP
.B MPI_STATUSES_IGNORE
- Ignore an array of
.I MPI_Status
.PD 1
.SH SPECIAL VALUE FOR ERROR CODES ARRAY
MPI_ERRCODES_IGNORE - Ignore an array of error codes
.SH MPI_T CONSTANTS
MPI_T_VERBOSITY_USER_BASIC - Basic information of interest to users
.PD 0
.TP
.B MPI_T_VERBOSITY_USER_DETAIL
- Detailed information of interest to users
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_USER_ALL
- All remaining information of interest to users
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_TUNER_BASIC
- Basic information required for tuning
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_TUNER_DETAIL
- Detailed information required for tuning
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_TUNER_ALL
- All remaining information required for tuning
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_MPIDEV_BASIC
- Basic information for MPI implementors
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_MPIDEV_DETAIL
- Detailed information for MPI implementors
.PD 1
.PD 0
.TP
.B MPI_T_VERBOSITY_MPIDEV_ALL
- All remaining information for MPI implementors
.PD 1
.PD 0
.TP
.B MPI_T_BIND_NO_OBJECT
- Applies globally to entire MPI process
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_COMM
- MPI communicators
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_DATATYPE
- MPI datatypes
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_ERRHANDLER
- MPI error handlers
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_FILE
- MPI file handles
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_GROUP
- MPI groups
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_OP
- MPI reduction operators
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_REQUEST
- MPI requests
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_WIN
- MPI windows for one-sided communication
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_MESSAGE
- MPI message object
.PD 1
.PD 0
.TP
.B MPI_T_BIND_MPI_INFO
- MPI info object
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_CONSTANT
- read-only, value is constant
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_READONLY
- read-only, cannot be written, but can
change
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_LOCAL
- may be writeable, writing is a local
operation
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_GROUP
- may be writeable, must be done to a
group of processes, all processes in a group must be set to consistent values
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_GROUP_EQ
- may be writeable, must be done to a
group of processes, all processes in a group must be set to the same value
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_ALL
- may be writeable, must be done to all
processes, all connected processes must be set to consistent values
.PD 1
.PD 0
.TP
.B MPI_T_SCOPE_ALL_EQ
- may be writeable, must be done to all
processes, all connected processes must be set to the same value
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_STATE
- set of discrete states (MPI_INT)
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_LEVEL
- utilization level of a resource
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_SIZE
- size of a resource
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_PERCENTAGE
- percentage utilization of a resource
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_HIGHWATERMARK
- high watermark of a resource
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_LOWWATERMARK
- low watermark of a resource
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_COUNTER
- number of occurances of an event
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_AGGREGATE
- aggregate value over an event (e.g.,
sum of all memory allocations)
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_TIMER
- aggretate time spent executing event
.PD 1
.PD 0
.TP
.B MPI_T_PVAR_CLASS_GENERIC
- used for any other time of performance
variable
.PD 1
.SH THREAD LEVELS
MPI_THREAD_SINGLE - Only one thread executes
.PD 0
.TP
.B MPI_THREAD_FUNNELED
- Only the main thread makes MPI calls
.PD 1
.PD 0
.TP
.B MPI_THREAD_SERIALIZED
- Only one thread at a time makes MPI calls
.PD 1
.PD 0
.TP
.B MPI_THREAD_MULTIPLE
- Multiple threads may make MPI calls
.PD 1
.SH SPECIAL MPI TYPES AND FUNCTIONS
MPI_Aint - C type that holds any valid address.
.PD 0
.TP
.B MPI_Count
- C type that holds any valid count.
.PD 1
.PD 0
.TP
.B MPI_Offset
- C type that holds any valid file offset.
.PD 1
.PD 0
.TP
.B MPI_Handler_function
- C function for handling errors (see
.I MPI_Errhandler_create
) .
.PD 1
.PD 0
.TP
.B MPI_User_function
- C function to combine values (see collective operations
and
.I MPI_Op_create
)
.PD 1
.PD 0
.TP
.B MPI_Copy_function
- Function to copy attributes (see
.I MPI_Keyval_create
)
.PD 1
.PD 0
.TP
.B MPI_Delete_function
- Function to delete attributes (see
.I MPI_Keyval_create
)
.PD 1
.PD 0
.TP
.B MPI_ERRORS_ARE_FATAL
- Error handler that forces exit on error
.PD 1
.PD 0
.TP
.B MPI_ERRORS_RETURN
- Error handler that returns error codes (as value of
MPI routine in C and through last argument in Fortran)
.PD 1
.SH MPI ATTRIBUTE DEFAULT FUNCTIONS
MPI_COMM_NULL_COPY_FN - Predefined attribute copy function for communicators
.PD 0
.TP
.B MPI_COMM_NULL_DELETE_FN
- Predefined attribute delete function for communicators
.PD 1
.PD 0
.TP
.B MPI_COMM_DUP_FN
- Predefined attribute duplicate function for communicators
.PD 1
.PD 0
.TP
.B MPI_WIN_NULL_COPY_FN
- Predefined attribute copy function for windows
.PD 1
.PD 0
.TP
.B MPI_WIN_NULL_DELETE_FN
- Predefined attribute delete function for windows
.PD 1
.PD 0
.TP
.B MPI_WIN_DUP_FN
- Predefined attribute duplicate function for windows
.PD 1
.PD 0
.TP
.B MPI_TYPE_NULL_COPY_FN
- Predefined attribute copy function for datatypes
.PD 1
.PD 0
.TP
.B MPI_TYPE_NULL_DELETE_FN
- Predefined attribute delete function for datatypes
.PD 1
.PD 0
.TP
.B MPI_TYPE_DUP_FN
- Predefined attribute duplicate function for datatypes
.PD 1
.SH MPI-1 ATTRIBUTE DEFAULT FUNCTIONS
MPI_NULL_COPY_FN - Predefined copy function
.PD 0
.TP
.B MPI_NULL_DELETE_FN
- Predefined delete function
.PD 1
.PD 0
.TP
.B MPI_DUP_FN
- Predefined duplication function
.PD 1
.SH MPI ERROR CLASSES
MPI_SUCCESS - Successful return code
.PD 0
.TP
.B MPI_ERR_BUFFER
- Invalid buffer pointer
.PD 1
.PD 0
.TP
.B MPI_ERR_COUNT
- Invalid count argument
.PD 1
.PD 0
.TP
.B MPI_ERR_TYPE
- Invalid datatype argument
.PD 1
.PD 0
.TP
.B MPI_ERR_TAG
- Invalid tag argument
.PD 1
.PD 0
.TP
.B MPI_ERR_COMM
- Invalid communicator
.PD 1
.PD 0
.TP
.B MPI_ERR_RANK
- Invalid rank
.PD 1
.PD 0
.TP
.B MPI_ERR_ROOT
- Invalid root
.PD 1
.PD 0
.TP
.B MPI_ERR_GROUP
- Null group passed to function
.PD 1
.PD 0
.TP
.B MPI_ERR_OP
- Invalid operation
.PD 1
.PD 0
.TP
.B MPI_ERR_TOPOLOGY
- Invalid topology
.PD 1
.PD 0
.TP
.B MPI_ERR_DIMS
- Illegal dimension argument
.PD 1
.PD 0
.TP
.B MPI_ERR_ARG
- Invalid argument
.PD 1
.PD 0
.TP
.B MPI_ERR_UNKNOWN
- Unknown error
.PD 1
.PD 0
.TP
.B MPI_ERR_TRUNCATE
- Message truncated on receive
.PD 1
.PD 0
.TP
.B MPI_ERR_OTHER
- Other error; use Error_string
.PD 1
.PD 0
.TP
.B MPI_ERR_INTERN
- Internal error code
.PD 1
.PD 0
.TP
.B MPI_ERR_IN_STATUS
- Look in status for error value
.PD 1
.PD 0
.TP
.B MPI_ERR_PENDING
- Pending request
.PD 1
.PD 0
.TP
.B MPI_ERR_REQUEST
- Invalid mpi_request handle
.PD 1
.PD 0
.TP
.B MPI_ERR_ACCESS
- Permission denied
.PD 1
.PD 0
.TP
.B MPI_ERR_AMODE
- Error related to the amode passed to
.I MPI_FILE_OPEN
.PD 1
.PD 0
.TP
.B MPI_ERR_BAD_FILE
- Invalid file name (e.g., path name too long)
.PD 1
.PD 0
.TP
.B MPI_ERR_CONVERSION
- An error occurred in a user supplied data
conversion function
.PD 1
.PD 0
.TP
.B MPI_ERR_DUP_DATAREP
- Conversion functions could not be registered
because a data representation identifier that was already defined was passed
to
.I MPI_REGISTER_DATAREP
.PD 1
.PD 0
.TP
.B MPI_ERR_FILE_EXISTS
- File exists
.PD 1
.PD 0
.TP
.B MPI_ERR_FILE_IN_USE
- File operation could not be completed, as
the file is currently open by some process
.PD 1
.PD 0
.TP
.B MPI_ERR_FILE
- Invalid file handle
.PD 1
.PD 0
.TP
.B MPI_ERR_IO
- Other I/O error
.PD 1
.PD 0
.TP
.B MPI_ERR_NO_SPACE
- Not enough space
.PD 1
.PD 0
.TP
.B MPI_ERR_NO_SUCH_FILE
- File does not exist
.PD 1
.PD 0
.TP
.B MPI_ERR_READ_ONLY
- Read-only file or file system
.PD 1
.PD 0
.TP
.B MPI_ERR_UNSUPPORTED_DATAREP
- Unsupported datarep passed to
.I MPI_FILE_SET_VIEW
.PD 1
.PD 0
.TP
.B MPI_ERR_INFO
- Invalid info argument
.PD 1
.PD 0
.TP
.B MPI_ERR_INFO_KEY
- Key longer than MPI_MAX_INFO_KEY
.PD 1
.PD 0
.TP
.B MPI_ERR_INFO_VALUE
- Value longer than MPI_MAX_INFO_VAL
.PD 1
.PD 0
.TP
.B MPI_ERR_INFO_NOKEY
- Invalid key passed to MPI_INFO_DELETE
.PD 1
.PD 0
.TP
.B MPI_ERR_NAME
- Invalid service name passed to MPI_LOOKUP_NAME
.PD 1
.PD 0
.TP
.B MPI_ERR_NO_MEM
- Alloc_mem could not allocate memory
.PD 1
.PD 0
.TP
.B MPI_ERR_NOT_SAME
- Collective argument not identical on all
processes, or collective routines called in a different order by different
processes
.PD 1
.PD 0
.TP
.B MPI_ERR_PORT
- Invalid port name passed to MPI_COMM_CONNECT
.PD 1
.PD 0
.TP
.B MPI_ERR_QUOTA
- Quota exceeded
.PD 1
.PD 0
.TP
.B MPI_ERR_SERVICE
- Invalid service name passed to MPI_UNPUBLISH_NAME
.PD 1
.PD 0
.TP
.B MPI_ERR_SPAWN
- Error in spawning processes
.PD 1
.PD 0
.TP
.B MPI_ERR_UNSUPPORTED_OPERATION
- Unsupported operation, such as seeking on
a file which supports sequential access only
.PD 1
.PD 0
.TP
.B MPI_ERR_WIN
- Invalid win argument
.PD 1
.PD 0
.TP
.B MPI_ERR_BASE
- Invalid base passed to MPI_FREE_MEM
.PD 1
.PD 0
.TP
.B MPI_ERR_LOCKTYPE
- Invalid locktype argument
.PD 1
.PD 0
.TP
.B MPI_ERR_KEYVAL
- Erroneous attribute key
.PD 1
.PD 0
.TP
.B MPI_ERR_RMA_CONFLICT
- Conflicting accesses to window
.PD 1
.PD 0
.TP
.B MPI_ERR_RMA_SYNC
- Wrong synchronization of RMA calls
.PD 1
.PD 0
.TP
.B MPI_ERR_SIZE
- Invalid size argument
.PD 1
.PD 0
.TP
.B MPI_ERR_DISP
- Invalid disp argument
.PD 1
.PD 0
.TP
.B MPI_ERR_ASSERT
- Invalid assert argument
.PD 1
.PD 0
.TP
.B MPI_ERR_RMA_RANGE
- Target memory is not part of the window (in
the case of a window created with MPI_WIN_CREATE_DYNAMIC, target memory is
not attached)
.PD 1
.PD 0
.TP
.B MPI_ERR_RMA_ATTACH
- Memory cannot be attached (e.g., because of
resource exhaustion)
.PD 1
.PD 0
.TP
.B MPI_ERR_RMA_SHARED
- Memory cannot be shared (e.g., some process in
the group of the specified communicator cannot expose shared memory)
.PD 1
.PD 0
.TP
.B MPI_ERR_RMA_FLAVOR
- Passed window has the wrong flavor for the
called function
.PD 1
.PD 0
.TP
.B MPI_ERR_LASTCODE
- Last error code -- always at end
.PD 1
.SH ERROR CODES FOR MPI_T
MPI_T_ERR_MEMORY - Out of memory
.PD 0
.TP
.B MPI_T_ERR_NOT_INITIALIZED
- Interface not initialized
.PD 1
.PD 0
.TP
.B MPI_T_ERR_CANNOT_INIT
- Interface not in the state to be initialized
.PD 1
.PD 0
.TP
.B MPI_T_ERR_INVALID_INDEX
- The index is invalid or has been deleted
.PD 1
.PD 0
.TP
.B MPI_T_ERR_INVALID_ITEM
- Item index queried is out of range
.PD 1
.PD 0
.TP
.B MPI_T_ERR_INVALID_HANDLE
- The handle is invalid
.PD 1
.PD 0
.TP
.B MPI_T_ERR_OUT_OF_HANDLES
- No more handles available
.PD 1
.PD 0
.TP
.B MPI_T_ERR_OUT_OF_SESSIONS
- No more sessions available
.PD 1
.PD 0
.TP
.B MPI_T_ERR_INVALID_SESSION
- Session argument is not valid
.PD 1
.PD 0
.TP
.B MPI_T_ERR_CVAR_SET_NOT_NOW
- Cvar can't be set at this moment
.PD 1
.PD 0
.TP
.B MPI_T_ERR_CVAR_SET_NEVER
- Cvar can't be set until end of execution
.PD 1
.PD 0
.TP
.B MPI_T_ERR_PVAR_NO_STARTSTOP
- Pvar can't be started or stopped
.PD 1
.PD 0
.TP
.B MPI_T_ERR_PVAR_NO_WRITE
- Pvar can't be written or reset
.PD 1
.PD 0
.TP
.B MPI_T_ERR_PVAR_NO_ATOMIC
- Pvar can't be R/W atomically
.PD 1
.PD 0
.TP
.B MPI_T_ERR_INVALID_NAME
- Name doesn't match
.PD 1
.PD 0
.TP
.B MPI_T_ERR_INVALID
- Invalid use of the interface or bad parameter
values(s)
.PD 1
|