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 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448
|
/* opal/include/opal_config.h.in. Generated from configure.ac by autoheader. */
/* -*- c -*-
*
* Copyright (c) 2004-2005 The Trustees of Indiana University.
* All rights reserved.
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
* All rights reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2014 Intel, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*
* Function: - OS, CPU and compiler dependent configuration
*/
#ifndef OPAL_CONFIG_H
#define OPAL_CONFIG_H
#include "opal_config_top.h"
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* The normal alignment of `bool', in bytes. */
#undef ALIGNOF_BOOL
/* The normal alignment of `char', in bytes. */
#undef ALIGNOF_CHAR
/* The normal alignment of `double', in bytes. */
#undef ALIGNOF_DOUBLE
/* The normal alignment of `double _Complex', in bytes. */
#undef ALIGNOF_DOUBLE__COMPLEX
/* The normal alignment of `float', in bytes. */
#undef ALIGNOF_FLOAT
/* The normal alignment of `float _Complex', in bytes. */
#undef ALIGNOF_FLOAT__COMPLEX
/* The normal alignment of `int', in bytes. */
#undef ALIGNOF_INT
/* The normal alignment of `int128_t', in bytes. */
#undef ALIGNOF_INT128_T
/* The normal alignment of `int16_t', in bytes. */
#undef ALIGNOF_INT16_T
/* The normal alignment of `int32_t', in bytes. */
#undef ALIGNOF_INT32_T
/* The normal alignment of `int64_t', in bytes. */
#undef ALIGNOF_INT64_T
/* The normal alignment of `int8_t', in bytes. */
#undef ALIGNOF_INT8_T
/* The normal alignment of `long', in bytes. */
#undef ALIGNOF_LONG
/* The normal alignment of `long double', in bytes. */
#undef ALIGNOF_LONG_DOUBLE
/* The normal alignment of `long double _Complex', in bytes. */
#undef ALIGNOF_LONG_DOUBLE__COMPLEX
/* The normal alignment of `long long', in bytes. */
#undef ALIGNOF_LONG_LONG
/* The normal alignment of `opal_short_float_t', in bytes. */
#undef ALIGNOF_OPAL_SHORT_FLOAT_T
/* The normal alignment of `short', in bytes. */
#undef ALIGNOF_SHORT
/* The normal alignment of `short float', in bytes. */
#undef ALIGNOF_SHORT_FLOAT
/* The normal alignment of `short float _Complex', in bytes. */
#undef ALIGNOF_SHORT_FLOAT__COMPLEX
/* The normal alignment of `size_t', in bytes. */
#undef ALIGNOF_SIZE_T
/* The normal alignment of `void *', in bytes. */
#undef ALIGNOF_VOID_P
/* The normal alignment of `wchar_t', in bytes. */
#undef ALIGNOF_WCHAR_T
/* The normal alignment of `__float128', in bytes. */
#undef ALIGNOF___FLOAT128
/* Define to 1 if you have the `ABT_unit_get_thread' function. */
#undef HAVE_ABT_UNIT_GET_THREAD
/* Define to 1 if you have the <aio.h> header file. */
#undef HAVE_AIO_H
/* Define to 1 if you have the <alloca.h> header file. */
#undef HAVE_ALLOCA_H
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF
/* Define to 1 if you have the <complex.h> header file. */
#undef HAVE_COMPLEX_H
/* Define to 1 if you have the <crt_externs.h> header file. */
#undef HAVE_CRT_EXTERNS_H
/* Define to 1 if you have the `dbm_open' function. */
#undef HAVE_DBM_OPEN
/* Define to 1 if you have the `dbopen' function. */
#undef HAVE_DBOPEN
/* Define to 1 if you have the <db.h> header file. */
#undef HAVE_DB_H
/* Define to 1 if you have the declaration of `AF_INET6', and to 0 if you
don't. */
#undef HAVE_DECL_AF_INET6
/* Define to 1 if you have the declaration of `AF_UNSPEC', and to 0 if you
don't. */
#undef HAVE_DECL_AF_UNSPEC
/* Define to 1 if you have the declaration of `ethtool_cmd_speed', and to 0 if
you don't. */
#undef HAVE_DECL_ETHTOOL_CMD_SPEED
/* Define to 1 if you have the declaration of `FI_OPT_FI_HMEM_P2P', and to 0
if you don't. */
#undef HAVE_DECL_FI_OPT_FI_HMEM_P2P
/* Define to 1 if you have the declaration of `HWLOC_OBJ_OSDEV_COPROC', and to
0 if you don't. */
#undef HAVE_DECL_HWLOC_OBJ_OSDEV_COPROC
/* Define to 1 if you have the declaration of `open_memstream', and to 0 if
you don't. */
#undef HAVE_DECL_OPEN_MEMSTREAM
/* Define to 1 if you have the declaration of `PF_INET6', and to 0 if you
don't. */
#undef HAVE_DECL_PF_INET6
/* Define to 1 if you have the declaration of `PF_UNSPEC', and to 0 if you
don't. */
#undef HAVE_DECL_PF_UNSPEC
/* Define to 1 if you have the declaration of `PMIX_PACKAGE_RANK', and to 0 if
you don't. */
#undef HAVE_DECL_PMIX_PACKAGE_RANK
/* Define to 1 if you have the declaration of `RLIMIT_AS', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_AS
/* Define to 1 if you have the declaration of `RLIMIT_CORE', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_CORE
/* Define to 1 if you have the declaration of `RLIMIT_FSIZE', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_FSIZE
/* Define to 1 if you have the declaration of `RLIMIT_MEMLOCK', and to 0 if
you don't. */
#undef HAVE_DECL_RLIMIT_MEMLOCK
/* Define to 1 if you have the declaration of `RLIMIT_NOFILE', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_NOFILE
/* Define to 1 if you have the declaration of `RLIMIT_NPROC', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_NPROC
/* Define to 1 if you have the declaration of `RLIMIT_STACK', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_STACK
/* Define to 1 if you have the declaration of `SIOCETHTOOL', and to 0 if you
don't. */
#undef HAVE_DECL_SIOCETHTOOL
/* Define to 1 if you have the declaration of `ucm_test_events', and to 0 if
you don't. */
#undef HAVE_DECL_UCM_TEST_EVENTS
/* Define to 1 if you have the declaration of `ucm_test_external_events', and
to 0 if you don't. */
#undef HAVE_DECL_UCM_TEST_EXTERNAL_EVENTS
/* Define to 1 if you have the declaration of `UCP_ATOMIC_FETCH_OP_FAND', and
to 0 if you don't. */
#undef HAVE_DECL_UCP_ATOMIC_FETCH_OP_FAND
/* Define to 1 if you have the declaration of `UCP_ATOMIC_FETCH_OP_FOR', and
to 0 if you don't. */
#undef HAVE_DECL_UCP_ATOMIC_FETCH_OP_FOR
/* Define to 1 if you have the declaration of `UCP_ATOMIC_FETCH_OP_FXOR', and
to 0 if you don't. */
#undef HAVE_DECL_UCP_ATOMIC_FETCH_OP_FXOR
/* Define to 1 if you have the declaration of `ucp_atomic_op_nbx', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_ATOMIC_OP_NBX
/* Define to 1 if you have the declaration of `UCP_ATOMIC_POST_OP_AND', and to
0 if you don't. */
#undef HAVE_DECL_UCP_ATOMIC_POST_OP_AND
/* Define to 1 if you have the declaration of `UCP_ATOMIC_POST_OP_OR', and to
0 if you don't. */
#undef HAVE_DECL_UCP_ATOMIC_POST_OP_OR
/* Define to 1 if you have the declaration of `UCP_ATOMIC_POST_OP_XOR', and to
0 if you don't. */
#undef HAVE_DECL_UCP_ATOMIC_POST_OP_XOR
/* Define to 1 if you have the declaration of `UCP_ATTR_FIELD_MEMORY_TYPES',
and to 0 if you don't. */
#undef HAVE_DECL_UCP_ATTR_FIELD_MEMORY_TYPES
/* Define to 1 if you have the declaration of `UCP_EP_ATTR_FIELD_TRANSPORTS',
and to 0 if you don't. */
#undef HAVE_DECL_UCP_EP_ATTR_FIELD_TRANSPORTS
/* Define to 1 if you have the declaration of `ucp_ep_flush_nb', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_EP_FLUSH_NB
/* Define to 1 if you have the declaration of `ucp_ep_flush_nbx', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_EP_FLUSH_NBX
/* Define to 1 if you have the declaration of `ucp_get_nb', and to 0 if you
don't. */
#undef HAVE_DECL_UCP_GET_NB
/* Define to 1 if you have the declaration of `ucp_get_nbx', and to 0 if you
don't. */
#undef HAVE_DECL_UCP_GET_NBX
/* Define to 1 if you have the declaration of `UCP_MEM_MAP_SYMMETRIC_RKEY',
and to 0 if you don't. */
#undef HAVE_DECL_UCP_MEM_MAP_SYMMETRIC_RKEY
/* Define to 1 if you have the declaration of `UCP_OP_ATTR_FLAG_MULTI_SEND',
and to 0 if you don't. */
#undef HAVE_DECL_UCP_OP_ATTR_FLAG_MULTI_SEND
/* Define to 1 if you have the declaration of
`UCP_PARAM_FIELD_ESTIMATED_NUM_PPN', and to 0 if you don't. */
#undef HAVE_DECL_UCP_PARAM_FIELD_ESTIMATED_NUM_PPN
/* Define to 1 if you have the declaration of `ucp_put_nb', and to 0 if you
don't. */
#undef HAVE_DECL_UCP_PUT_NB
/* Define to 1 if you have the declaration of `ucp_put_nbx', and to 0 if you
don't. */
#undef HAVE_DECL_UCP_PUT_NBX
/* Define to 1 if you have the declaration of `ucp_request_check_status', and
to 0 if you don't. */
#undef HAVE_DECL_UCP_REQUEST_CHECK_STATUS
/* Define to 1 if you have the declaration of `ucp_rkey_compare', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_RKEY_COMPARE
/* Define to 1 if you have the declaration of `ucp_tag_recv_nbx', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_TAG_RECV_NBX
/* Define to 1 if you have the declaration of `ucp_tag_send_nbr', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_TAG_SEND_NBR
/* Define to 1 if you have the declaration of `ucp_tag_send_nbx', and to 0 if
you don't. */
#undef HAVE_DECL_UCP_TAG_SEND_NBX
/* Define to 1 if you have the declaration of `ucp_tag_send_sync_nbx', and to
0 if you don't. */
#undef HAVE_DECL_UCP_TAG_SEND_SYNC_NBX
/* Define to 1 if you have the declaration of
`UCP_WORKER_ATTR_FIELD_ADDRESS_FLAGS', and to 0 if you don't. */
#undef HAVE_DECL_UCP_WORKER_ATTR_FIELD_ADDRESS_FLAGS
/* Define to 1 if you have the declaration of
`UCP_WORKER_FLAG_IGNORE_REQUEST_LEAK', and to 0 if you don't. */
#undef HAVE_DECL_UCP_WORKER_FLAG_IGNORE_REQUEST_LEAK
/* Define to 1 if you have the declaration of `ucp_worker_flush_nb', and to 0
if you don't. */
#undef HAVE_DECL_UCP_WORKER_FLUSH_NB
/* Define to 1 if you have the declaration of `UCS_MEMORY_TYPE_RDMA', and to 0
if you don't. */
#undef HAVE_DECL_UCS_MEMORY_TYPE_RDMA
/* Define to 1 if you have the declaration of `UCT_CB_FLAG_SYNC', and to 0 if
you don't. */
#undef HAVE_DECL_UCT_CB_FLAG_SYNC
/* Define to 1 if you have the declaration of `UCT_PROGRESS_THREAD_SAFE', and
to 0 if you don't. */
#undef HAVE_DECL_UCT_PROGRESS_THREAD_SAFE
/* Define to 1 if you have the declaration of `__func__', and to 0 if you
don't. */
#undef HAVE_DECL___FUNC__
/* Define to 1 if you have the declaration of `__syscall', and to 0 if you
don't. */
#undef HAVE_DECL___SYSCALL
/* Define to 1 if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the `dlsym' function. */
#undef HAVE_DLSYM
/* Define to 1 if the system has the type `Dl_info'. */
#undef HAVE_DL_INFO
/* Define to 1 if the system has the type `double _Complex'. */
#undef HAVE_DOUBLE__COMPLEX
/* Define to 1 if you have the <endian.h> header file. */
#undef HAVE_ENDIAN_H
/* Define to 1 if you have the <err.h> header file. */
#undef HAVE_ERR_H
/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H
/* Define to 1 if you have the `execve' function. */
#undef HAVE_EXECVE
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if the system has the type `float _Complex'. */
#undef HAVE_FLOAT__COMPLEX
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the `getpwuid' function. */
#undef HAVE_GETPWUID
/* Define to 1 if you have the <glob.h> header file. */
#undef HAVE_GLOB_H
/* Define to 1 if you have the `GNI_GetJobResInfo' function. */
#undef HAVE_GNI_GETJOBRESINFO
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* Define to 1 if you have the `hcoll_context_free' function. */
#undef HAVE_HCOLL_CONTEXT_FREE
/* Define to 1 if you have the <hostLib.h> header file. */
#undef HAVE_HOSTLIB_H
/* Define to 1 if you have the `hwloc_topology_dup' function. */
#undef HAVE_HWLOC_TOPOLOGY_DUP
/* Define to 1 if you have the <ieee754.h> header file. */
#undef HAVE_IEEE754_H
/* Define to 1 if you have the <ifaddrs.h> header file. */
#undef HAVE_IFADDRS_H
/* Define to 1 if the system has the type `int128_t'. */
#undef HAVE_INT128_T
/* Define to 1 if the system has the type `int16_t'. */
#undef HAVE_INT16_T
/* Define to 1 if the system has the type `int32_t'. */
#undef HAVE_INT32_T
/* Define to 1 if the system has the type `int64_t'. */
#undef HAVE_INT64_T
/* Define to 1 if the system has the type `int8_t'. */
#undef HAVE_INT8_T
/* Define to 1 if the system has the type `intptr_t'. */
#undef HAVE_INTPTR_T
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <ioLib.h> header file. */
#undef HAVE_IOLIB_H
/* Define to 1 if you have the `isatty' function. */
#undef HAVE_ISATTY
/* Define to 1 if you have the <libgen.h> header file. */
#undef HAVE_LIBGEN_H
/* Define to 1 if you have the <libutil.h> header file. */
#undef HAVE_LIBUTIL_H
/* Define to 1 if you have the <linux/ethtool.h> header file. */
#undef HAVE_LINUX_ETHTOOL_H
/* Define to 1 if you have the <linux/kcmp.h> header file. */
#undef HAVE_LINUX_KCMP_H
/* Define to 1 if you have the <linux/mman.h> header file. */
#undef HAVE_LINUX_MMAN_H
/* Define to 1 if you have the <linux/sockios.h> header file. */
#undef HAVE_LINUX_SOCKIOS_H
/* Define to 1 if the system has the type `long double'. */
#undef HAVE_LONG_DOUBLE
/* Define to 1 if the system has the type `long double _Complex'. */
#undef HAVE_LONG_DOUBLE__COMPLEX
/* Define to 1 if the system has the type `long long'. */
#undef HAVE_LONG_LONG
/* Define to 1 if you have the <mach/mach_time.h> header file. */
#undef HAVE_MACH_MACH_TIME_H
/* Define to 1 if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the <minix/config.h> header file. */
#undef HAVE_MINIX_CONFIG_H
/* Define to 1 if you have the `mkfifo' function. */
#undef HAVE_MKFIFO
/* Define to 1 if you have the `mmap' function. */
#undef HAVE_MMAP
/* Define to 1 if you have the <mntent.h> header file. */
#undef HAVE_MNTENT_H
/* Define to 1 if the system has the type `mode_t'. */
#undef HAVE_MODE_T
/* Define to 1 if you have the <ndbm.h> header file. */
#undef HAVE_NDBM_H
/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define to 1 if you have the <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H
/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H
/* Define to 1 if you have the <net/uio.h> header file. */
#undef HAVE_NET_UIO_H
/* Define to 1 if you have the `on_exit' function. */
#undef HAVE_ON_EXIT
/* Define to 1 if the system has the type `opal_short_float_complex_t'. */
#undef HAVE_OPAL_SHORT_FLOAT_COMPLEX_T
/* Define to 1 if the system has the type `opal_short_float_t'. */
#undef HAVE_OPAL_SHORT_FLOAT_T
/* Define to 1 if you have the `openpty' function. */
#undef HAVE_OPENPTY
/* Define to 1 if you have the <paths.h> header file. */
#undef HAVE_PATHS_H
/* Define to 1 if you have the `pipe' function. */
#undef HAVE_PIPE
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H
/* Define to 1 if you have the `posix_memalign' function. */
#undef HAVE_POSIX_MEMALIGN
/* Define to 1 if you have the `preadv' function. */
#undef HAVE_PREADV
/* Define to 1 if you have the `printstack' function. */
#undef HAVE_PRINTSTACK
/* have PSM2_LIB_REFCOUNT_CAP in psm2.h */
#undef HAVE_PSM2_LIB_REFCOUNT_CAP
/* Define to 1 if you have the `pthread_condattr_setpshared' function. */
#undef HAVE_PTHREAD_CONDATTR_SETPSHARED
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H
/* Define to 1 if you have the `pthread_mutexattr_setpshared' function. */
#undef HAVE_PTHREAD_MUTEXATTR_SETPSHARED
/* Define to 1 if the system has the type `ptrdiff_t'. */
#undef HAVE_PTRDIFF_T
/* Define to 1 if you have the `ptsname' function. */
#undef HAVE_PTSNAME
/* Define to 1 if you have the <pty.h> header file. */
#undef HAVE_PTY_H
/* Define to 1 if you have the <pwd.h> header file. */
#undef HAVE_PWD_H
/* Define to 1 if you have the `pwritev' function. */
#undef HAVE_PWRITEV
/* Define to 1 if you have the <rdma/fi_ext.h> header file. */
#undef HAVE_RDMA_FI_EXT_H
/* Define to 1 if you have the `regcmp' function. */
#undef HAVE_REGCMP
/* Define to 1 if you have the `regexec' function. */
#undef HAVE_REGEXEC
/* Define to 1 if you have the <regex.h> header file. */
#undef HAVE_REGEX_H
/* Define to 1 if you have the `regfree' function. */
#undef HAVE_REGFREE
/* Define to 1 if you have the <sched.h> header file. */
#undef HAVE_SCHED_H
/* Define to 1 if you have the `sem_init' function. */
#undef HAVE_SEM_INIT
/* Define to 1 if you have the `sem_open' function. */
#undef HAVE_SEM_OPEN
/* Define to 1 if you have the `setenv' function. */
#undef HAVE_SETENV
/* Define to 1 if you have the `setpgid' function. */
#undef HAVE_SETPGID
/* Define to 1 if you have the `setsid' function. */
#undef HAVE_SETSID
/* Define to 1 if you have the <shlwapi.h> header file. */
#undef HAVE_SHLWAPI_H
/* Define to 1 if the system has the type `short float'. */
#undef HAVE_SHORT_FLOAT
/* Define to 1 if the system has the type `short float _Complex'. */
#undef HAVE_SHORT_FLOAT__COMPLEX
/* Define to 1 if `si_band' is a member of `siginfo_t'. */
#undef HAVE_SIGINFO_T_SI_BAND
/* Define to 1 if `si_fd' is a member of `siginfo_t'. */
#undef HAVE_SIGINFO_T_SI_FD
/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF
/* Define to 1 if you have the `socketpair' function. */
#undef HAVE_SOCKETPAIR
/* Define to 1 if the system has the type `socklen_t'. */
#undef HAVE_SOCKLEN_T
/* Define to 1 if you have the <sockLib.h> header file. */
#undef HAVE_SOCKLIB_H
/* Define to 1 if the system has the type `ssize_t'. */
#undef HAVE_SSIZE_T
/* Define to 1 if you have the `statfs' function. */
#undef HAVE_STATFS
/* Define to 1 if you have the `statvfs' function. */
#undef HAVE_STATVFS
/* Define to 1 if you have the <stdatomic.h> header file. */
#undef HAVE_STDATOMIC_H
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the <stropts.h> header file. */
#undef HAVE_STROPTS_H
/* Define to 1 if you have the `strsignal' function. */
#undef HAVE_STRSIGNAL
/* Define to 1 if `d_type' is a member of `struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_TYPE
/* Define to 1 if the system has the type `struct ethtool_cmd'. */
#undef HAVE_STRUCT_ETHTOOL_CMD
/* Define to 1 if `speed_hi' is a member of `struct ethtool_cmd'. */
#undef HAVE_STRUCT_ETHTOOL_CMD_SPEED_HI
/* Define to 1 if the system has the type `struct fi_ops_mem_monitor'. */
#undef HAVE_STRUCT_FI_OPS_MEM_MONITOR
/* Define to 1 if the system has the type `struct ifreq'. */
#undef HAVE_STRUCT_IFREQ
/* Define to 1 if `ifr_hwaddr' is a member of `struct ifreq'. */
#undef HAVE_STRUCT_IFREQ_IFR_HWADDR
/* Define to 1 if `ifr_mtu' is a member of `struct ifreq'. */
#undef HAVE_STRUCT_IFREQ_IFR_MTU
/* Define to 1 if the system has the type `struct sockaddr_in'. */
#undef HAVE_STRUCT_SOCKADDR_IN
/* Define to 1 if the system has the type `struct sockaddr_in6'. */
#undef HAVE_STRUCT_SOCKADDR_IN6
/* Define to 1 if `sa_len' is a member of `struct sockaddr'. */
#undef HAVE_STRUCT_SOCKADDR_SA_LEN
/* Define to 1 if the system has the type `struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE
/* Define to 1 if `f_fstypename' is a member of `struct statfs'. */
#undef HAVE_STRUCT_STATFS_F_FSTYPENAME
/* Define to 1 if `f_type' is a member of `struct statfs'. */
#undef HAVE_STRUCT_STATFS_F_TYPE
/* Define to 1 if `f_basetype' is a member of `struct statvfs'. */
#undef HAVE_STRUCT_STATVFS_F_BASETYPE
/* Define to 1 if `f_fstypename' is a member of `struct statvfs'. */
#undef HAVE_STRUCT_STATVFS_F_FSTYPENAME
/* Define to 1 if `tv_nsec' is a member of `struct timespec'. */
#undef HAVE_STRUCT_TIMESPEC_TV_NSEC
/* Define to 1 if you have the `syscall' function. */
#undef HAVE_SYSCALL
/* Define to 1 if you have the `sysconf' function. */
#undef HAVE_SYSCONF
/* Define to 1 if you have the <syslimits.h> header file. */
#undef HAVE_SYSLIMITS_H
/* Define to 1 if you have the `syslog' function. */
#undef HAVE_SYSLOG
/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H
/* Define to 1 if you have the <sys/fcntl.h> header file. */
#undef HAVE_SYS_FCNTL_H
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
/* Define to 1 if you have the <sys/mman.h> header file. */
#undef HAVE_SYS_MMAN_H
/* Define to 1 if you have the <sys/mount.h> header file. */
#undef HAVE_SYS_MOUNT_H
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_H
/* Define to 1 if you have the <sys/queue.h> header file. */
#undef HAVE_SYS_QUEUE_H
/* Define to 1 if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
/* Define to 1 if you have the <sys/select.h> header file. */
#undef HAVE_SYS_SELECT_H
/* Define to 1 if you have the <sys/shm.h> header file. */
#undef HAVE_SYS_SHM_H
/* Define to 1 if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H
/* Define to 1 if you have the <sys/sockio.h> header file. */
#undef HAVE_SYS_SOCKIO_H
/* Define to 1 if you have the <sys/statfs.h> header file. */
#undef HAVE_SYS_STATFS_H
/* Define to 1 if you have the <sys/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/synch.h> header file. */
#undef HAVE_SYS_SYNCH_H
/* Define to 1 if you have the <sys/syscall.h> header file. */
#undef HAVE_SYS_SYSCALL_H
/* Define to 1 if you have the <sys/sysctl.h> header file. */
#undef HAVE_SYS_SYSCTL_H
/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define to 1 if you have the <sys/tree.h> header file. */
#undef HAVE_SYS_TREE_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H
/* Define to 1 if you have the <sys/un.h> header file. */
#undef HAVE_SYS_UN_H
/* Define to 1 if you have the <sys/utsname.h> header file. */
#undef HAVE_SYS_UTSNAME_H
/* Define to 1 if you have the <sys/vfs.h> header file. */
#undef HAVE_SYS_VFS_H
/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H
/* Define to 1 if you have the <TargetConditionals.h> header file. */
#undef HAVE_TARGETCONDITIONALS_H
/* Define to 1 if you have the `tcgetpgrp' function. */
#undef HAVE_TCGETPGRP
/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H
/* Define to 1 if you have the <time.h> header file. */
#undef HAVE_TIME_H
/* Define to 1 if you have the `ucc_comm_free' function. */
#undef HAVE_UCC_COMM_FREE
/* Define to 1 if you have the <ucontext.h> header file. */
#undef HAVE_UCONTEXT_H
/* have memory types attribute */
#undef HAVE_UCP_ATTR_MEMORY_TYPES
/* Define to 1 if the system has the type `ucp_request_param_t'. */
#undef HAVE_UCP_REQUEST_PARAM_T
/* have ucp_tag_send_nbr() */
#undef HAVE_UCP_TAG_SEND_NBR
/* have worker address attribute */
#undef HAVE_UCP_WORKER_ADDRESS_FLAGS
/* Define to 1 if the system has the type `uint128_t'. */
#undef HAVE_UINT128_T
/* Define to 1 if the system has the type `uint16_t'. */
#undef HAVE_UINT16_T
/* Define to 1 if the system has the type `uint32_t'. */
#undef HAVE_UINT32_T
/* Define to 1 if the system has the type `uint64_t'. */
#undef HAVE_UINT64_T
/* Define to 1 if the system has the type `uint8_t'. */
#undef HAVE_UINT8_T
/* Define to 1 if the system has the type `uintptr_t'. */
#undef HAVE_UINTPTR_T
/* Define to 1 if you have the <ulimit.h> header file. */
#undef HAVE_ULIMIT_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* whether unix byteswap routines -- htonl, htons, nothl, ntohs -- are
available */
#undef HAVE_UNIX_BYTESWAP
/* Define to 1 if you have the `usleep' function. */
#undef HAVE_USLEEP
/* Define to 1 if you have the <util.h> header file. */
#undef HAVE_UTIL_H
/* Define to 1 if you have the <utmp.h> header file. */
#undef HAVE_UTMP_H
/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
#undef HAVE_VALGRIND_VALGRIND_H
/* Define to 1 if you have the `vasprintf' function. */
#undef HAVE_VASPRINTF
/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the `vsyslog' function. */
#undef HAVE_VSYSLOG
/* Define to 1 if you have the `waitpid' function. */
#undef HAVE_WAITPID
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* is xpmem.h available */
#undef HAVE_XPMEM_H
/* Define to 1 if the system has the type `_Float16'. */
#undef HAVE__FLOAT16
/* Define to 1 if you have the `_NSGetEnviron' function. */
#undef HAVE__NSGETENVIRON
/* Define to 1 if you have the `__clear_cache' function. */
#undef HAVE___CLEAR_CACHE
/* Define to 1 if you have the `__curbrk' function. */
#undef HAVE___CURBRK
/* Define to 1 if the system has the type `__float128'. */
#undef HAVE___FLOAT128
/* Define to 1 if the system has the type `__int128'. */
#undef HAVE___INT128
/* Define to 1 if you have the `__malloc_initialize_hook' function. */
#undef HAVE___MALLOC_INITIALIZE_HOOK
/* Define to 1 if you have the `__munmap' function. */
#undef HAVE___MUNMAP
/* Define to 1 if you have the `__syscall' function. */
#undef HAVE___SYSCALL
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Custom matching engine to use in pml/ob1 */
#undef MCA_PML_OB1_CUSTOM_MATCHING
/* Complete set of command line arguments given to ROMIOs configure script */
#undef MCA_io_romio341_COMPLETE_CONFIGURE_FLAGS
/* Set of user-defined configure flags given to ROMIOs configure script via
--with-io-romio-flags */
#undef MCA_io_romio341_USER_CONFIGURE_FLAGS
/* Header to include for memcpy implementation */
#undef MCA_memcpy_IMPLEMENTATION_HEADER
/* Header to include for parts of the memory implementation */
#undef MCA_memory_IMPLEMENTATION_HEADER
/* Defined to 1 if ompi:mtl should use direct calls instead of components */
#undef MCA_ompi_mtl_DIRECT_CALL
/* name of component to use for direct calls, if MCA_ompi_mtl_DIRECT_CALL is 1
*/
#undef MCA_ompi_mtl_DIRECT_CALL_COMPONENT
/* Header ompi:mtl includes to be direct called */
#undef MCA_ompi_mtl_DIRECT_CALL_HEADER
/* Defined to 1 if ompi:part should use direct calls instead of components */
#undef MCA_ompi_part_DIRECT_CALL
/* name of component to use for direct calls, if MCA_ompi_part_DIRECT_CALL is
1 */
#undef MCA_ompi_part_DIRECT_CALL_COMPONENT
/* Header ompi:part includes to be direct called */
#undef MCA_ompi_part_DIRECT_CALL_HEADER
/* Defined to 1 if ompi:pml should use direct calls instead of components */
#undef MCA_ompi_pml_DIRECT_CALL
/* name of component to use for direct calls, if MCA_ompi_pml_DIRECT_CALL is 1
*/
#undef MCA_ompi_pml_DIRECT_CALL_COMPONENT
/* Header ompi:pml includes to be direct called */
#undef MCA_ompi_pml_DIRECT_CALL_HEADER
/* Defined to 1 if opal:smsc should use direct calls instead of components */
#undef MCA_opal_smsc_DIRECT_CALL
/* name of component to use for direct calls, if MCA_opal_smsc_DIRECT_CALL is
1 */
#undef MCA_opal_smsc_DIRECT_CALL_COMPONENT
/* Header opal:smsc includes to be direct called */
#undef MCA_opal_smsc_DIRECT_CALL_HEADER
/* Defined to 1 if oshmem:memheap should use direct calls instead of
components */
#undef MCA_oshmem_memheap_DIRECT_CALL
/* name of component to use for direct calls, if
MCA_oshmem_memheap_DIRECT_CALL is 1 */
#undef MCA_oshmem_memheap_DIRECT_CALL_COMPONENT
/* Header oshmem:memheap includes to be direct called */
#undef MCA_oshmem_memheap_DIRECT_CALL_HEADER
/* Defined to 1 if oshmem:spml should use direct calls instead of components
*/
#undef MCA_oshmem_spml_DIRECT_CALL
/* name of component to use for direct calls, if MCA_oshmem_spml_DIRECT_CALL
is 1 */
#undef MCA_oshmem_spml_DIRECT_CALL_COMPONENT
/* Header oshmem:spml includes to be direct called */
#undef MCA_oshmem_spml_DIRECT_CALL_HEADER
/* Header to include for threads implementation */
#undef MCA_threads_base_include_HEADER
/* Header to include for mutex implementation */
#undef MCA_threads_mutex_base_include_HEADER
/* Header to include for tsd implementation */
#undef MCA_threads_tsd_base_include_HEADER
/* Header to include for timer implementation */
#undef MCA_timer_IMPLEMENTATION_HEADER
/* Macro that is set to 1 when CUDA-aware support is configured in and 0 when
it is not */
#undef MPIX_CUDA_AWARE_SUPPORT
/* Macro that is set to 1 when ROCM-aware support is configured in and 0 when
it is not */
#undef MPIX_ROCM_AWARE_SUPPORT
/* Maximum value for an MPI_Count */
#undef MPI_COUNT_MAX
/* Whether we want to check MPI parameters always, never, or decide at
run-time */
#undef MPI_PARAM_CHECK
/* MPI Standard Minor version number */
#undef MPI_SUBVERSION
/* MPI Standard Major version number */
#undef MPI_VERSION
/* Alignment of Fortran CHARACTER */
#undef OMPI_ALIGNMENT_FORTRAN_CHARACTER
/* Alignment of Fortran COMPLEX */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX
/* Alignment of Fortran COMPLEX*16 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX16
/* Alignment of Fortran COMPLEX*32 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX32
/* Alignment of Fortran COMPLEX*4 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX4
/* Alignment of Fortran COMPLEX*8 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX8
/* Alignment of Fortran DOUBLE COMPLEX */
#undef OMPI_ALIGNMENT_FORTRAN_DOUBLE_COMPLEX
/* Alignment of Fortran DOUBLE PRECISION */
#undef OMPI_ALIGNMENT_FORTRAN_DOUBLE_PRECISION
/* Alignment of Fortran INTEGER */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER
/* Alignment of Fortran INTEGER*1 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER1
/* Alignment of Fortran INTEGER*16 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER16
/* Alignment of Fortran INTEGER*2 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER2
/* Alignment of Fortran INTEGER*4 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER4
/* Alignment of Fortran INTEGER*8 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER8
/* Alignment of Fortran LOGICAL */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL
/* Alignment of Fortran LOGICAL*1 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL1
/* Alignment of Fortran LOGICAL*2 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL2
/* Alignment of Fortran LOGICAL*4 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL4
/* Alignment of Fortran LOGICAL*8 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL8
/* Alignment of Fortran REAL */
#undef OMPI_ALIGNMENT_FORTRAN_REAL
/* Alignment of Fortran REAL*16 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL16
/* Alignment of Fortran REAL*2 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL2
/* Alignment of Fortran REAL*4 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL4
/* Alignment of Fortran REAL*8 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL8
/* The level of fortran bindings to be built */
#undef OMPI_BUILD_FORTRAN_BINDINGS
/* OMPI underlying C++ compiler */
#undef OMPI_CXX
/* whether we support Grequest extensions */
#undef OMPI_ENABLE_GREQUEST_EXTENSIONS
/* whether we want MPI-1.x support */
#undef OMPI_ENABLE_MPI1_COMPAT
/* Underlying Fortran compiler */
#undef OMPI_FC
/* Absolute path to the underlying Fortran compiler found by configure */
#undef OMPI_FC_ABSOLUTE
/* Whether the mpif.h interface supports the MPI_SIZEOF interface or not */
#undef OMPI_FORTRAN_BUILD_SIZEOF
/* Whether fortran symbols are all caps or not */
#undef OMPI_FORTRAN_CAPS
/* Whether fortran symbols have a trailing double underscore or not */
#undef OMPI_FORTRAN_DOUBLE_UNDERSCORE
/* How many bytes the mpi_f08 TYPE(MPI_<foo>) handles will be aligned to */
#undef OMPI_FORTRAN_F08_HANDLE_ALIGNMENT
/* How many bytes the mpi_f08 TYPE(MPI_<foo>) handles will be */
#undef OMPI_FORTRAN_F08_HANDLE_SIZE
/* Max handle value for fortran MPI handles, effectively min(INT_MAX, max
fortran INTEGER value) */
#undef OMPI_FORTRAN_HANDLE_MAX
/* For mpi-f08-interfaces-callbacks.f90 and ompi_info: whether the compiler
supports the "abstract" keyword or not */
#undef OMPI_FORTRAN_HAVE_ABSTRACT
/* For ompi/mpi/fortran/use-mpi-f08/blah.F90 and blah.h and ompi_info: whether
the compiler supports the "asynchronous" keyword or not */
#undef OMPI_FORTRAN_HAVE_ASYNCHRONOUS
/* Whether the compiler supports Fortran ATTRIBUTES DEPRECATED or not */
#undef OMPI_FORTRAN_HAVE_ATTR_DEPRECATED
/* For ompi_info: Whether the compiler supports all forms of BIND(C) that we
need */
#undef OMPI_FORTRAN_HAVE_BIND_C
/* For ompi_info: Whether the compiler supports SUBROUTINE ... BIND(C) or not
*/
#undef OMPI_FORTRAN_HAVE_BIND_C_SUB
/* For ompi_info: Whether the compiler supports TYPE, BIND(C) or not */
#undef OMPI_FORTRAN_HAVE_BIND_C_TYPE
/* For ompi_info: Whether the compiler supports TYPE, BIND(C, NAME="name") or
not */
#undef OMPI_FORTRAN_HAVE_BIND_C_TYPE_NAME
/* For ompi/mpi/fortran/use-mpi-f08/blah.F90 and blah.h and ompi_info: whether
the compiler supports c_funloc or not */
#undef OMPI_FORTRAN_HAVE_C_FUNLOC
/* For ompi_info: Whether the Fortran compiler supports the Fortran 2008
"assumed rank" syntax or not */
#undef OMPI_FORTRAN_HAVE_F08_ASSUMED_RANK
/* Whether the Fortran compiler supports ignore TKR functionality or not */
#undef OMPI_FORTRAN_HAVE_IGNORE_TKR
/* Whether the compiler supports INTERFACE or not */
#undef OMPI_FORTRAN_HAVE_INTERFACE
/* For ompi_info: Whether the compiler supports ISO_C_BINDING or not */
#undef OMPI_FORTRAN_HAVE_ISO_C_BINDING
/* Whether the compiler supports ISO_FORTRAN_ENV or not */
#undef OMPI_FORTRAN_HAVE_ISO_FORTRAN_ENV
/* For ompi_info: whether the Fortran compiler supports optional arguments or
not */
#undef OMPI_FORTRAN_HAVE_OPTIONAL_ARGS
/* For mpif-status.h, mpi-f08-types.f90 and ompi_info: whether the compiler
supports the "private" keyword or not (used in TYPE(MPI_Status)) */
#undef OMPI_FORTRAN_HAVE_PRIVATE
/* For ompi/mpi/fortran/use-mpi-f08/blah.F90 and blah.h and ompi_info: whether
the compiler supports the "procedure" keyword or not */
#undef OMPI_FORTRAN_HAVE_PROCEDURE
/* Whether the compiler supports STORAGE_SIZE on relevant types */
#undef OMPI_FORTRAN_HAVE_STORAGE_SIZE
/* For ompi/mpi/fortran/use-mpi-f08/blah.F90 and blah.h and ompi_info: whether
the compiler supports "USE ... ONLY" notation properly or not */
#undef OMPI_FORTRAN_HAVE_USE_ONLY
/* Pre declaration for FORTRAN ignore parameter TKR behavior */
#undef OMPI_FORTRAN_IGNORE_TKR_PREDECL
/* Type declaration for FORTRAN ignore parameter TKR behavior */
#undef OMPI_FORTRAN_IGNORE_TKR_TYPE
/* Max dimension rank of Fortran arrays */
#undef OMPI_FORTRAN_MAX_ARRAY_RANK
/* Whether we are building support for the mpif.h bindings or not */
#undef OMPI_FORTRAN_MPIFH_BINDINGS
/* Whether the mpi_f08 implementation is using wrapper routines ("bad" Fortran
compiler) or weak symbols ("good" Fortran compiler) for the F08 interface
definition implementations */
#undef OMPI_FORTRAN_NEED_WRAPPER_ROUTINES
/* Whether fortran symbols have no trailing underscore or not */
#undef OMPI_FORTRAN_PLAIN
/* Whether fortran symbols have a trailing underscore or not */
#undef OMPI_FORTRAN_SINGLE_UNDERSCORE
/* The number or Fortran INTEGER in MPI Status */
#undef OMPI_FORTRAN_STATUS_SIZE
/* Whether we are building support for the "use mpif08" bindings or not */
#undef OMPI_FORTRAN_USEMPIF08_BINDINGS
/* Whether we are building support for the "use mpi" bindings or not */
#undef OMPI_FORTRAN_USEMPI_BINDINGS
/* Fortran value for LOGICAL .TRUE. value */
#undef OMPI_FORTRAN_VALUE_TRUE
/* Greek - alpha, beta, etc - release number of Open MPI */
#undef OMPI_GREEK_VERSION
/* Whether we want sparse process groups */
#undef OMPI_GROUP_SPARSE
/* Whether we have Fortran CHARACTER or not */
#undef OMPI_HAVE_FORTRAN_CHARACTER
/* Whether we have Fortran COMPLEX or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX
/* Whether we have Fortran COMPLEX*16 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX16
/* Whether we have Fortran COMPLEX*32 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX32
/* Whether we have Fortran COMPLEX*4 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX4
/* Whether we have Fortran COMPLEX*8 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX8
/* Whether we have Fortran DOUBLE COMPLEX or not */
#undef OMPI_HAVE_FORTRAN_DOUBLE_COMPLEX
/* Whether we have Fortran DOUBLE PRECISION or not */
#undef OMPI_HAVE_FORTRAN_DOUBLE_PRECISION
/* Whether we have Fortran INTEGER or not */
#undef OMPI_HAVE_FORTRAN_INTEGER
/* Whether we have Fortran INTEGER*1 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER1
/* Whether we have Fortran INTEGER*16 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER16
/* Whether we have Fortran INTEGER*2 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER2
/* Whether we have Fortran INTEGER*4 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER4
/* Whether we have Fortran INTEGER*8 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER8
/* Whether we have Fortran LOGICAL or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL
/* Whether we have Fortran LOGICAL*1 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL1
/* Whether we have Fortran LOGICAL*2 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL2
/* Whether we have Fortran LOGICAL*4 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL4
/* Whether we have Fortran LOGICAL*8 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL8
/* Whether we have Fortran REAL or not */
#undef OMPI_HAVE_FORTRAN_REAL
/* Whether we have Fortran REAL*16 or not */
#undef OMPI_HAVE_FORTRAN_REAL16
/* Whether we have Fortran REAL*2 or not */
#undef OMPI_HAVE_FORTRAN_REAL2
/* Whether we have Fortran REAL*4 or not */
#undef OMPI_HAVE_FORTRAN_REAL4
/* Whether we have Fortran REAL*8 or not */
#undef OMPI_HAVE_FORTRAN_REAL8
/* Whether or not PRRTE is available */
#undef OMPI_HAVE_PRRTE
/* Fortrn KIND number for CHARACTER */
#undef OMPI_KIND_FORTRAN_CHARACTER
/* Fortrn KIND number for COMPLEX */
#undef OMPI_KIND_FORTRAN_COMPLEX
/* Fortrn KIND number for COMPLEX*16 */
#undef OMPI_KIND_FORTRAN_COMPLEX16
/* Fortrn KIND number for COMPLEX*32 */
#undef OMPI_KIND_FORTRAN_COMPLEX32
/* Fortrn KIND number for COMPLEX*4 */
#undef OMPI_KIND_FORTRAN_COMPLEX4
/* Fortrn KIND number for COMPLEX*8 */
#undef OMPI_KIND_FORTRAN_COMPLEX8
/* Fortrn KIND number for DOUBLE COMPLEX */
#undef OMPI_KIND_FORTRAN_DOUBLE_COMPLEX
/* Fortrn KIND number for DOUBLE PRECISION */
#undef OMPI_KIND_FORTRAN_DOUBLE_PRECISION
/* Fortrn KIND number for INTEGER */
#undef OMPI_KIND_FORTRAN_INTEGER
/* Fortrn KIND number for INTEGER*1 */
#undef OMPI_KIND_FORTRAN_INTEGER1
/* Fortrn KIND number for INTEGER*16 */
#undef OMPI_KIND_FORTRAN_INTEGER16
/* Fortrn KIND number for INTEGER*2 */
#undef OMPI_KIND_FORTRAN_INTEGER2
/* Fortrn KIND number for INTEGER*4 */
#undef OMPI_KIND_FORTRAN_INTEGER4
/* Fortrn KIND number for INTEGER*8 */
#undef OMPI_KIND_FORTRAN_INTEGER8
/* Fortrn KIND number for LOGICAL */
#undef OMPI_KIND_FORTRAN_LOGICAL
/* Fortrn KIND number for LOGICAL*1 */
#undef OMPI_KIND_FORTRAN_LOGICAL1
/* Fortrn KIND number for LOGICAL*2 */
#undef OMPI_KIND_FORTRAN_LOGICAL2
/* Fortrn KIND number for LOGICAL*4 */
#undef OMPI_KIND_FORTRAN_LOGICAL4
/* Fortrn KIND number for LOGICAL*8 */
#undef OMPI_KIND_FORTRAN_LOGICAL8
/* Fortrn KIND number for REAL */
#undef OMPI_KIND_FORTRAN_REAL
/* Fortrn KIND number for REAL*16 */
#undef OMPI_KIND_FORTRAN_REAL16
/* Fortrn KIND number for REAL*2 */
#undef OMPI_KIND_FORTRAN_REAL2
/* Fortrn KIND number for REAL*4 */
#undef OMPI_KIND_FORTRAN_REAL4
/* Fortrn KIND number for REAL*8 */
#undef OMPI_KIND_FORTRAN_REAL8
/* Major release number of Open MPI */
#undef OMPI_MAJOR_VERSION
/* AVX supported in the current build */
#undef OMPI_MCA_OP_HAVE_AVX
/* AVX2 supported in the current build */
#undef OMPI_MCA_OP_HAVE_AVX2
/* AVX512 supported in the current build */
#undef OMPI_MCA_OP_HAVE_AVX512
/* NEON supported in the current build */
#undef OMPI_MCA_OP_HAVE_NEON
/* NEON FP supported in the current build */
#undef OMPI_MCA_OP_HAVE_NEON_FP
/* SSE3 supported in the current build */
#undef OMPI_MCA_OP_HAVE_SSE3
/* SSE4.1 supported in the current build */
#undef OMPI_MCA_OP_HAVE_SSE41
/* SVE supported in the current build */
#undef OMPI_MCA_OP_HAVE_SVE
/* SVE not supported */
#undef OMPI_MCA_OP_SVE_EXTRA_FLAGS
/* Minor release number of Open MPI */
#undef OMPI_MINOR_VERSION
/* MPI Extensions included in libmpi */
#undef OMPI_MPIEXT_COMPONENTS
/* Type of MPI_Aint */
#undef OMPI_MPI_AINT_TYPE
/* Size of the MPI_Count datatype */
#undef OMPI_MPI_COUNT_SIZE
/* Type of the MPI_Count datatype */
#undef OMPI_MPI_COUNT_TYPE
/* Size of the MPI_Offset */
#undef OMPI_MPI_OFFSET_SIZE
/* Type of MPI_Offset */
#undef OMPI_MPI_OFFSET_TYPE
/* Enable flow control for Portals4 MTL */
#undef OMPI_MTL_PORTALS4_FLOW_CONTROL
/* MPI datatype corresponding to MPI_Offset */
#undef OMPI_OFFSET_DATATYPE
/* Whether we want to check MPI parameters never or possible (an integer
constant) */
#undef OMPI_PARAM_CHECK
/* Index into endpoint array for BML */
#undef OMPI_PROC_ENDPOINT_TAG_BML
/* Maximum number of endpoint entries to be attached to an ompi_proc_t */
#undef OMPI_PROC_ENDPOINT_TAG_MAX
/* Index into endpoint array for MTL */
#undef OMPI_PROC_ENDPOINT_TAG_MTL
/* Index into endpoint array for PML */
#undef OMPI_PROC_ENDPOINT_TAG_PML
/* Index into endpoint array for PORTALS4 */
#undef OMPI_PROC_ENDPOINT_TAG_PORTALS4
/* Index into endpoint array for UCX */
#undef OMPI_PROC_ENDPOINT_TAG_UCX
/* Path to prterun */
#undef OMPI_PRTERUN_PATH
/* Whether Fortran REAL*16 matches the bit format of the equivalent C type */
#undef OMPI_REAL16_MATCHES_C
/* Release date of Open MPI */
#undef OMPI_RELEASE_DATE
/* Release release number of Open MPI */
#undef OMPI_RELEASE_VERSION
/* The repository version Open MPI */
#undef OMPI_REPO_REV
/* Size of Fortran CHARACTER */
#undef OMPI_SIZEOF_FORTRAN_CHARACTER
/* Size of Fortran COMPLEX */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX
/* Size of Fortran COMPLEX*16 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX16
/* Size of Fortran COMPLEX*32 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX32
/* Size of Fortran COMPLEX*4 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX4
/* Size of Fortran COMPLEX*8 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX8
/* Size of Fortran DOUBLE COMPLEX */
#undef OMPI_SIZEOF_FORTRAN_DOUBLE_COMPLEX
/* Size of Fortran DOUBLE PRECISION */
#undef OMPI_SIZEOF_FORTRAN_DOUBLE_PRECISION
/* Size of Fortran INTEGER */
#undef OMPI_SIZEOF_FORTRAN_INTEGER
/* Size of Fortran INTEGER*1 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER1
/* Size of Fortran INTEGER*16 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER16
/* Size of Fortran INTEGER*2 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER2
/* Size of Fortran INTEGER*4 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER4
/* Size of Fortran INTEGER*8 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER8
/* Size of Fortran LOGICAL */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL
/* Size of Fortran LOGICAL*1 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL1
/* Size of Fortran LOGICAL*2 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL2
/* Size of Fortran LOGICAL*4 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL4
/* Size of Fortran LOGICAL*8 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL8
/* Size of Fortran REAL */
#undef OMPI_SIZEOF_FORTRAN_REAL
/* Size of Fortran REAL*16 */
#undef OMPI_SIZEOF_FORTRAN_REAL16
/* Size of Fortran REAL*2 */
#undef OMPI_SIZEOF_FORTRAN_REAL2
/* Size of Fortran REAL*4 */
#undef OMPI_SIZEOF_FORTRAN_REAL4
/* Size of Fortran REAL*8 */
#undef OMPI_SIZEOF_FORTRAN_REAL8
/* Tarball filename version string of Open MPI */
#undef OMPI_TARBALL_VERSION
/* Whether or not we are using the internal PRRTE */
#undef OMPI_USING_INTERNAL_PRRTE
/* Complete release number of Open MPI */
#undef OMPI_VERSION
/* do we want java mpi bindings */
#undef OMPI_WANT_JAVA_BINDINGS
/* Enable warnings when using deprecated MPI functions */
#undef OMPI_WANT_MPI_INTERFACE_WARNING
/* if the peruse interface should be enabled */
#undef OMPI_WANT_PERUSE
/* CFLAGS to pass through the wrapper compilers */
#undef OMPI_WRAPPER_CFLAGS
/* CXXFLAGS to pass through the wrapper compilers */
#undef OMPI_WRAPPER_CXXFLAGS
/* FCFLAGS to pass through the wrapper compilers */
#undef OMPI_WRAPPER_FCFLAGS
/* LDFLAGS to pass through the wrapper compilers */
#undef OMPI_WRAPPER_LDFLAGS
/* LIBS to pass through the wrapper compilers */
#undef OMPI_WRAPPER_LIBS
/* Alignment of bool */
#undef OPAL_ALIGNMENT_BOOL
/* Alignment of char */
#undef OPAL_ALIGNMENT_CHAR
/* Alignment of double */
#undef OPAL_ALIGNMENT_DOUBLE
/* Alignment of double _Complex */
#undef OPAL_ALIGNMENT_DOUBLE_COMPLEX
/* Alignment of float */
#undef OPAL_ALIGNMENT_FLOAT
/* Alignment of float _Complex */
#undef OPAL_ALIGNMENT_FLOAT_COMPLEX
/* Alignment of int */
#undef OPAL_ALIGNMENT_INT
/* Alignment of int128_t */
#undef OPAL_ALIGNMENT_INT128
/* Alignment of int16_t */
#undef OPAL_ALIGNMENT_INT16
/* Alignment of int32_t */
#undef OPAL_ALIGNMENT_INT32
/* Alignment of int64_t */
#undef OPAL_ALIGNMENT_INT64
/* Alignment of int8_t */
#undef OPAL_ALIGNMENT_INT8
/* Alignment of long */
#undef OPAL_ALIGNMENT_LONG
/* Alignment of long double */
#undef OPAL_ALIGNMENT_LONG_DOUBLE
/* Alignment of long double _Complex */
#undef OPAL_ALIGNMENT_LONG_DOUBLE_COMPLEX
/* Alignment of long long */
#undef OPAL_ALIGNMENT_LONG_LONG
/* Alignment of opal_short_float_t */
#undef OPAL_ALIGNMENT_OPAL_SHORT_FLOAT_T
/* Alignment of short */
#undef OPAL_ALIGNMENT_SHORT
/* Alignment of short float */
#undef OPAL_ALIGNMENT_SHORT_FLOAT
/* Alignment of short float _Complex */
#undef OPAL_ALIGNMENT_SHORT_FLOAT_COMPLEX
/* Alignment of size_t */
#undef OPAL_ALIGNMENT_SIZE_T
/* Alignment of void * */
#undef OPAL_ALIGNMENT_VOID_P
/* Alignment of wchar_t */
#undef OPAL_ALIGNMENT_WCHAR
/* Alignment of __float128 */
#undef OPAL_ALIGNMENT___FLOAT128
/* set to 1 if word-size integers must be aligned to word-size padding to
prevent bus errors */
#undef OPAL_ALIGN_WORD_SIZE_INTEGERS
/* OMPI architecture string */
#undef OPAL_ARCH
/* Enable flow control for Portals4 BTL */
#undef OPAL_BTL_PORTALS4_FLOW_CONTROL
/* define to 1 if usnic BTL unit tests are enabled, 0 otherwise */
#undef OPAL_BTL_USNIC_UNIT_TESTS
/* The compiler $lower which OMPI was built with */
#undef OPAL_BUILD_PLATFORM_COMPILER_FAMILYID
/* The compiler $lower which OMPI was built with */
#undef OPAL_BUILD_PLATFORM_COMPILER_VERSION
/* OMPI underlying C compiler */
#undef OPAL_CC
/* If kcmp is available */
#undef OPAL_CMA_KCMP_AVAIL
/* Need CMA syscalls defined */
#undef OPAL_CMA_NEED_SYSCALL_DEFS
/* Whether we have CUDA GDR support available */
#undef OPAL_CUDA_GDR_SUPPORT
/* Whether we have CUDA cuPointerGetAttributes function available */
#undef OPAL_CUDA_GET_ATTRIBUTES
/* Whether we want cuda device pointer support */
#undef OPAL_CUDA_SUPPORT
/* Whether we have CUDA CU_POINTER_ATTRIBUTE_SYNC_MEMOPS support available */
#undef OPAL_CUDA_SYNC_MEMOPS
/* Whether we have CU_MEM_LOCATION_TYPE_HOST_NUMA support available */
#undef OPAL_CUDA_VMM_SUPPORT
/* Whether C compiler supports GCC style inline assembly */
#undef OPAL_C_GCC_INLINE_ASSEMBLY
/* Whether C compiler support atomic convenience variables in stdatomic.h */
#undef OPAL_C_HAVE_ATOMIC_CONV_VAR
/* Whether C compiler supports atomic operations on _Atomic variables without
warnings */
#undef OPAL_C_HAVE_ATOMIC_SUPPORT_FOR__ATOMIC
/* Whether C compiler supports __builtin_clz */
#undef OPAL_C_HAVE_BUILTIN_CLZ
/* Whether C compiler supports __builtin_expect */
#undef OPAL_C_HAVE_BUILTIN_EXPECT
/* Whether C compiler supports __builtin_prefetch */
#undef OPAL_C_HAVE_BUILTIN_PREFETCH
/* Whether C compiler supports symbol visibility or not */
#undef OPAL_C_HAVE_VISIBILITY
/* Whether C compiler supports __Atomic keyword */
#undef OPAL_C_HAVE__ATOMIC
/* Whether C compiler supports __Generic keyword */
#undef OPAL_C_HAVE__GENERIC
/* Whether C compiler support _Static_assert keyword */
#undef OPAL_C_HAVE__STATIC_ASSERT
/* Whether C compiler supports __Thread_local */
#undef OPAL_C_HAVE__THREAD_LOCAL
/* Whether C compiler supports __thread */
#undef OPAL_C_HAVE___THREAD
/* Whether we have lt_dladvise or not */
#undef OPAL_DL_LIBLTDL_HAVE_LT_DLADVISE
/* Whether we want developer-level debugging code or not */
#undef OPAL_ENABLE_DEBUG
/* Enable fault tolerance general components and logic */
#undef OPAL_ENABLE_FT
/* Enable fault tolerance MPI ULFM components and logic */
#undef OPAL_ENABLE_FT_MPI
/* Disable getpwuid support (default: enabled) */
#undef OPAL_ENABLE_GETPWUID
/* Enable features required for heterogeneous support */
#undef OPAL_ENABLE_HETEROGENEOUS_SUPPORT
/* Enable IPv6 support, but only if the underlying system supports it */
#undef OPAL_ENABLE_IPV6
/* Whether we want the memory profiling or not */
#undef OPAL_ENABLE_MEM_DEBUG
/* Whether we want the memory profiling or not */
#undef OPAL_ENABLE_MEM_PROFILE
/* Whether we want BTL progress threads enabled */
#undef OPAL_ENABLE_PROGRESS_THREADS
/* Whether user wants PTY support or not */
#undef OPAL_ENABLE_PTY_SUPPORT
/* Whether we want developer-level timing framework or not */
#undef OPAL_ENABLE_TIMING
/* Greek - alpha, beta, etc - release number of Open Portable Access Layer */
#undef OPAL_GREEK_VERSION
/* Whether your compiler has __attribute__ or not */
#undef OPAL_HAVE_ATTRIBUTE
/* Whether your compiler has __attribute__ aligned or not */
#undef OPAL_HAVE_ATTRIBUTE_ALIGNED
/* Whether your compiler has __attribute__ always_inline or not */
#undef OPAL_HAVE_ATTRIBUTE_ALWAYS_INLINE
/* Whether your compiler has __attribute__ cold or not */
#undef OPAL_HAVE_ATTRIBUTE_COLD
/* Whether your compiler has __attribute__ const or not */
#undef OPAL_HAVE_ATTRIBUTE_CONST
/* Whether your compiler has __attribute__ constructor or not */
#undef OPAL_HAVE_ATTRIBUTE_CONSTRUCTOR
/* Whether your compiler has __attribute__ deprecated or not */
#undef OPAL_HAVE_ATTRIBUTE_DEPRECATED
/* Whether your compiler has __attribute__ deprecated with optional argument
*/
#undef OPAL_HAVE_ATTRIBUTE_DEPRECATED_ARGUMENT
/* Whether your compiler has __attribute__ destructor or not */
#undef OPAL_HAVE_ATTRIBUTE_DESTRUCTOR
/* Whether your compiler has __attribute__ error or not */
#undef OPAL_HAVE_ATTRIBUTE_ERROR
/* Whether your compiler has __attribute__ extension or not */
#undef OPAL_HAVE_ATTRIBUTE_EXTENSION
/* Whether your compiler has __attribute__ format or not */
#undef OPAL_HAVE_ATTRIBUTE_FORMAT
/* Whether your compiler has __attribute__ format and it works on function
pointers */
#undef OPAL_HAVE_ATTRIBUTE_FORMAT_FUNCPTR
/* Whether your compiler has __attribute__ hot or not */
#undef OPAL_HAVE_ATTRIBUTE_HOT
/* Whether your compiler has __attribute__ malloc or not */
#undef OPAL_HAVE_ATTRIBUTE_MALLOC
/* Whether your compiler has __attribute__ may_alias or not */
#undef OPAL_HAVE_ATTRIBUTE_MAY_ALIAS
/* Whether your compiler has __attribute__ noinline or not */
#undef OPAL_HAVE_ATTRIBUTE_NOINLINE
/* Whether your compiler has __attribute__ nonnull or not */
#undef OPAL_HAVE_ATTRIBUTE_NONNULL
/* Whether your compiler has __attribute__ noreturn or not */
#undef OPAL_HAVE_ATTRIBUTE_NORETURN
/* Whether your compiler has __attribute__ noreturn and it works on function
pointers */
#undef OPAL_HAVE_ATTRIBUTE_NORETURN_FUNCPTR
/* Whether your compiler has __attribute__ no_instrument_function or not */
#undef OPAL_HAVE_ATTRIBUTE_NO_INSTRUMENT_FUNCTION
/* Whether your compiler has __attribute__ optnone or not */
#undef OPAL_HAVE_ATTRIBUTE_OPTNONE
/* Whether your compiler has __attribute__ packed or not */
#undef OPAL_HAVE_ATTRIBUTE_PACKED
/* Whether your compiler has __attribute__ pure or not */
#undef OPAL_HAVE_ATTRIBUTE_PURE
/* Whether your compiler has __attribute__ sentinel or not */
#undef OPAL_HAVE_ATTRIBUTE_SENTINEL
/* Whether your compiler has __attribute__ unused or not */
#undef OPAL_HAVE_ATTRIBUTE_UNUSED
/* Whether your compiler has __attribute__ visibility or not */
#undef OPAL_HAVE_ATTRIBUTE_VISIBILITY
/* Whether your compiler has __attribute__ warn unused result or not */
#undef OPAL_HAVE_ATTRIBUTE_WARN_UNUSED_RESULT
/* Whether your compiler has __attribute__ weak alias or not */
#undef OPAL_HAVE_ATTRIBUTE_WEAK_ALIAS
/* whether backtrace_execinfo is found and available */
#undef OPAL_HAVE_BACKTRACE_EXECINFO
/* whether qsort is broken or not */
#undef OPAL_HAVE_BROKEN_QSORT
/* Whether C11 atomic compare swap is both supported and lock-free on 128-bit
values */
#undef OPAL_HAVE_C11_CSWAP_INT128
/* whether ceil is found and available */
#undef OPAL_HAVE_CEIL
/* whether clock_gettime is found and available */
#undef OPAL_HAVE_CLOCK_GETTIME
/* Whether the processor supports the cmpxchg16b instruction */
#undef OPAL_HAVE_CMPXCHG16B
/* whether dirname is found and available */
#undef OPAL_HAVE_DIRNAME
/* Whether the OPAL DL framework is functional or not */
#undef OPAL_HAVE_DL_SUPPORT
/* whether fbtl_posix is found and available */
#undef OPAL_HAVE_FBTL_POSIX
/* Whether the __atomic builtin atomic compare swap is both supported and
lock-free on 128-bit values */
#undef OPAL_HAVE_GCC_BUILTIN_CSWAP_INT128
/* whether gethostbyname is found and available */
#undef OPAL_HAVE_GETHOSTBYNAME
/* Do not use outside of mpi.h. Define to 1 if the system has the type `long
long'. */
#undef OPAL_HAVE_LONG_LONG
/* whether openpty is found and available */
#undef OPAL_HAVE_OPENPTY
/* If PTHREADS implementation supports PTHREAD_MUTEX_ERRORCHECK */
#undef OPAL_HAVE_PTHREAD_MUTEX_ERRORCHECK
/* If PTHREADS implementation supports PTHREAD_MUTEX_ERRORCHECK_NP */
#undef OPAL_HAVE_PTHREAD_MUTEX_ERRORCHECK_NP
/* Whether we have SA_RESTART in <signal.h> or not */
#undef OPAL_HAVE_SA_RESTART
/* whether sched_yield is found and available */
#undef OPAL_HAVE_SCHED_YIELD
/* whether sharedfp_sm is found and available */
#undef OPAL_HAVE_SHAREDFP_SM
/* whether shmem_posix is found and available */
#undef OPAL_HAVE_SHMEM_POSIX
/* whether socket is found and available */
#undef OPAL_HAVE_SOCKET
/* Whether or not we have solaris */
#undef OPAL_HAVE_SOLARIS
/* Whether the __sync builtin atomic compare and swap supports 128-bit values
*/
#undef OPAL_HAVE_SYNC_BUILTIN_CSWAP_INT128
/* Do not use outside of mpi.h. Define to 1 if you have the <sys/synch.h>
header file. */
#undef OPAL_HAVE_SYS_SYNCH_H
/* Do not use outside of mpi.h. Define to 1 if you have the <sys/time.h>
header file. */
#undef OPAL_HAVE_SYS_TIME_H
/* Whether we have __va_copy or not */
#undef OPAL_HAVE_UNDERSCORE_VA_COPY
/* Whether we have va_copy or not */
#undef OPAL_HAVE_VA_COPY
/* Whether we have weak symbols or not */
#undef OPAL_HAVE_WEAK_SYMBOLS
/* Define to 1 ifyou have the declaration of _SC_NPROCESSORS_ONLN, and to 0
otherwise */
#undef OPAL_HAVE__SC_NPROCESSORS_ONLN
/* ident string for Open MPI */
#undef OPAL_IDENT_STRING
/* Major release number of Open Portable Access Layer */
#undef OPAL_MAJOR_VERSION
/* Maximum length of datarep strings (default is 128) */
#undef OPAL_MAX_DATAREP_STRING
/* Maximum length of error strings (default is 256) */
#undef OPAL_MAX_ERROR_STRING
/* Maximum length of info keys (default is 36) */
#undef OPAL_MAX_INFO_KEY
/* Maximum length of info vals (default is 256) */
#undef OPAL_MAX_INFO_VAL
/* Maximum length of object names (default is 64) */
#undef OPAL_MAX_OBJECT_NAME
/* Maximum length of port names (default is 1024) */
#undef OPAL_MAX_PORT_NAME
/* Maximum length of processor names (default is 256) */
#undef OPAL_MAX_PROCESSOR_NAME
/* Maximum length of pset name lens (default is 512) */
#undef OPAL_MAX_PSET_NAME_LEN
/* Maximum length of stringtag lens (default is 1024) */
#undef OPAL_MAX_STRINGTAG_LEN
/* MCA cmd line identifier */
#undef OPAL_MCA_CMD_LINE_ID
/* MCA prefix string for envars */
#undef OPAL_MCA_PREFIX
/* Whether any opal memory mca components were found */
#undef OPAL_MEMORY_HAVE_COMPONENT
/* Minor release number of Open Portable Access Layer */
#undef OPAL_MINOR_VERSION
/* check if FI_HMEM_ROCR avaiable in fi_hmem_iface */
#undef OPAL_OFI_HAVE_FI_HMEM_ROCR
/* check if iface avaiable in fi_mr_attr */
#undef OPAL_OFI_HAVE_FI_MR_IFACE
/* check if pci data is available in ofi */
#undef OPAL_OFI_PCI_DATA_AVAILABLE
/* package/branding string for Open MPI */
#undef OPAL_PACKAGE_STRING
/* Log base 2 of the maximum size in bytes of a memory descriptor. Set to 0 if
MD can bind all of memory. */
#undef OPAL_PORTALS4_MAX_MD_SIZE
/* Log base 2 of the maximum size in bytes of the user virtual address space.
Set to 0 if MD can bind all of memory. */
#undef OPAL_PORTALS4_MAX_VA_SIZE
/* Release date of Open Portable Access Layer */
#undef OPAL_RELEASE_DATE
/* Release release number of Open Portable Access Layer */
#undef OPAL_RELEASE_VERSION
/* The repository version Open Portable Access Layer */
#undef OPAL_REPO_REV
/* Disable ROCm support */
#undef OPAL_ROCM_SUPPORT
/* Whether we have shared memory support for mmap or not */
#undef OPAL_SHMEM_MMAP
/* Whether we have shared memory support for POSIX or not */
#undef OPAL_SHMEM_POSIX
/* Whether we have shared memory support for SYSV or not */
#undef OPAL_SHMEM_SYSV
/* Whether $opal_short_float_type needs __extension__ keyword */
#undef OPAL_SHORT_FLOAT_NEEDS_EXTENSION
/* User-selected alternate C type of short float (used to redefine
opal_short_float_t in opal_bottom.h) */
#undef OPAL_SHORT_FLOAT_TYPE
/* Default value for mca_base_component_show_load_errors MCA variable */
#undef OPAL_SHOW_LOAD_ERRORS_DEFAULT
/* Do not use outside of mpi.h. Define to 1 if you have the ANSI C header
files. */
#undef OPAL_STDC_HEADERS
/* Tarball filename version string of Open Portable Access Layer */
#undef OPAL_TARBALL_VERSION
/* Whether to use assembly-coded atomics for atomics implementation */
#undef OPAL_USE_ASM_ATOMICS
/* Whether to use C11 atomics for atomics implementation */
#undef OPAL_USE_C11_ATOMICS
/* Whether to use GCC-style built-in atomics for atomics implementation */
#undef OPAL_USE_GCC_BUILTIN_ATOMICS
/* Whether or not we are using the internal PMIx */
#undef OPAL_USING_INTERNAL_PMIX
/* Complete release number of Open Portable Access Layer */
#undef OPAL_VERSION
/* Enable per-user config files */
#undef OPAL_WANT_HOME_CONFIG_FILES
/* if the memory and buffer checking should be enabled */
#undef OPAL_WANT_MEMCHECKER
/* if want pretty-print stack trace feature */
#undef OPAL_WANT_PRETTY_PRINT_STACKTRACE
/* Greek - alpha, beta, etc - release number of Open SHMEM */
#undef OSHMEM_GREEK_VERSION
/* Major release number of Open SHMEM */
#undef OSHMEM_MAJOR_VERSION
/* Minor release number of Open SHMEM */
#undef OSHMEM_MINOR_VERSION
/* Whether we want to check OSHMEM parameters always or never */
#undef OSHMEM_PARAM_CHECK
/* Release date of Open SHMEM */
#undef OSHMEM_RELEASE_DATE
/* Release release number of Open SHMEM */
#undef OSHMEM_RELEASE_VERSION
/* The repository version Open SHMEM */
#undef OSHMEM_REPO_REV
/* Whether user wants OSHMEM in compatibility mode or not */
#undef OSHMEM_SPEC_COMPAT
/* Whether we have shared memory support for mmap or not */
#undef OSHMEM_SSHMEM_MMAP
/* Whether we have shared memory support for SYSV or not */
#undef OSHMEM_SSHMEM_SYSV
/* Tarball filename version string of Open SHMEM */
#undef OSHMEM_TARBALL_VERSION
/* Complete release number of Open SHMEM */
#undef OSHMEM_VERSION
/* CFLAGS to pass through the wrapper compilers */
#undef OSHMEM_WRAPPER_CFLAGS
/* CXXFLAGS to pass through the wrapper compilers */
#undef OSHMEM_WRAPPER_CXXFLAGS
/* FCFLAGS to pass through the wrapper compilers */
#undef OSHMEM_WRAPPER_FCFLAGS
/* LDFLAGS to pass through the wrapper compilers */
#undef OSHMEM_WRAPPER_LDFLAGS
/* LIBS to pass through the wrapper compilers */
#undef OSHMEM_WRAPPER_LIBS
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* The size of `atomic_int', as computed by sizeof. */
#undef SIZEOF_ATOMIC_INT
/* The size of `atomic_llong', as computed by sizeof. */
#undef SIZEOF_ATOMIC_LLONG
/* The size of `atomic_long', as computed by sizeof. */
#undef SIZEOF_ATOMIC_LONG
/* The size of `atomic_short', as computed by sizeof. */
#undef SIZEOF_ATOMIC_SHORT
/* The size of `char', as computed by sizeof. */
#undef SIZEOF_CHAR
/* The size of `double', as computed by sizeof. */
#undef SIZEOF_DOUBLE
/* The size of `double _Complex', as computed by sizeof. */
#undef SIZEOF_DOUBLE__COMPLEX
/* The size of `float', as computed by sizeof. */
#undef SIZEOF_FLOAT
/* The size of `float _Complex', as computed by sizeof. */
#undef SIZEOF_FLOAT__COMPLEX
/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of `long double', as computed by sizeof. */
#undef SIZEOF_LONG_DOUBLE
/* The size of `long double _Complex', as computed by sizeof. */
#undef SIZEOF_LONG_DOUBLE__COMPLEX
/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The size of `opal_short_float_complex_t', as computed by sizeof. */
#undef SIZEOF_OPAL_SHORT_FLOAT_COMPLEX_T
/* The size of `opal_short_float_t', as computed by sizeof. */
#undef SIZEOF_OPAL_SHORT_FLOAT_T
/* The size of `pid_t', as computed by sizeof. */
#undef SIZEOF_PID_T
/* The size of `ptrdiff_t', as computed by sizeof. */
#undef SIZEOF_PTRDIFF_T
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The size of `short float', as computed by sizeof. */
#undef SIZEOF_SHORT_FLOAT
/* The size of `short float _Complex', as computed by sizeof. */
#undef SIZEOF_SHORT_FLOAT__COMPLEX
/* The size of `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
/* The size of `ssize_t', as computed by sizeof. */
#undef SIZEOF_SSIZE_T
/* The size of `unsigned int', as computed by sizeof. */
#undef SIZEOF_UNSIGNED_INT
/* The size of `unsigned long', as computed by sizeof. */
#undef SIZEOF_UNSIGNED_LONG
/* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* The size of `wchar_t', as computed by sizeof. */
#undef SIZEOF_WCHAR_T
/* The size of `_Bool', as computed by sizeof. */
#undef SIZEOF__BOOL
/* The size of `__float128', as computed by sizeof. */
#undef SIZEOF___FLOAT128
/* If the software-based performance counters capability should be enabled. */
#undef SPC_ENABLE
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Check if float128 and float32(64,128)_complex dt are available in ucc. */
#undef UCC_HAVE_COMPLEX_AND_FLOAT128_DT
/* Whether to use the legacy Solaris munmap prototype or not */
#undef USE_SOLARIS_LEGACY_MUNMAP_PROTOTYPE
/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable general extensions on macOS. */
#ifndef _DARWIN_C_SOURCE
# undef _DARWIN_C_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable X/Open compliant socket functions that do not require linking
with -lxnet on HP-UX 11.11. */
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
# undef _HPUX_ALT_XOPEN_SOCKET_API
#endif
/* Identify the host operating system as Minix.
This macro does not affect the system headers' behavior.
A future release of Autoconf may stop defining this macro. */
#ifndef _MINIX
# undef _MINIX
#endif
/* Enable general extensions on NetBSD.
Enable NetBSD compatibility extensions on Minix. */
#ifndef _NETBSD_SOURCE
# undef _NETBSD_SOURCE
#endif
/* Enable OpenBSD compatibility extensions on NetBSD.
Oddly enough, this does nothing on OpenBSD. */
#ifndef _OPENBSD_SOURCE
# undef _OPENBSD_SOURCE
#endif
/* Define to 1 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_SOURCE
# undef _POSIX_SOURCE
#endif
/* Define to 2 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_1_SOURCE
# undef _POSIX_1_SOURCE
#endif
/* Enable POSIX-compatible threading on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
# undef __STDC_WANT_IEC_60559_BFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# undef __STDC_WANT_IEC_60559_DFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
#endif
/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
#ifndef __STDC_WANT_LIB_EXT2__
# undef __STDC_WANT_LIB_EXT2__
#endif
/* Enable extensions specified by ISO/IEC 24747:2009. */
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
# undef __STDC_WANT_MATH_SPEC_FUNCS__
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable X/Open extensions. Define to 500 only if necessary
to make mbstate_t available. */
#ifndef _XOPEN_SOURCE
# undef _XOPEN_SOURCE
#endif
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
#endif
/* Whether the wrapper compilers add rpath flags by default */
#undef WRAPPER_RPATH_SUPPORT
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
#undef YYTEXT_POINTER
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* A bogus type that allows us to have sentinel type values that are still
valid */
#undef ompi_fortran_bogus_type_t
/* C type corresponding to Fortran CHARACTER */
#undef ompi_fortran_character_t
/* C type corresponding to Fortran COMPLEX*16 */
#undef ompi_fortran_complex16_t
/* C type corresponding to Fortran COMPLEX*32 */
#undef ompi_fortran_complex32_t
/* C type corresponding to Fortran COMPLEX*4 */
#undef ompi_fortran_complex4_t
/* C type corresponding to Fortran COMPLEX*8 */
#undef ompi_fortran_complex8_t
/* C type corresponding to Fortran COMPLEX */
#undef ompi_fortran_complex_t
/* C type corresponding to Fortran DOUBLE COMPLEX */
#undef ompi_fortran_double_complex_t
/* C type corresponding to Fortran DOUBLE PRECISION */
#undef ompi_fortran_double_precision_t
/* C type corresponding to Fortran INTEGER*16 */
#undef ompi_fortran_integer16_t
/* C type corresponding to Fortran INTEGER*1 */
#undef ompi_fortran_integer1_t
/* C type corresponding to Fortran INTEGER*2 */
#undef ompi_fortran_integer2_t
/* C type corresponding to Fortran INTEGER*4 */
#undef ompi_fortran_integer4_t
/* C type corresponding to Fortran INTEGER*8 */
#undef ompi_fortran_integer8_t
/* C type corresponding to Fortran INTEGER */
#undef ompi_fortran_integer_t
/* C type corresponding to Fortran LOGICAL*1 */
#undef ompi_fortran_logical1_t
/* C type corresponding to Fortran LOGICAL*2 */
#undef ompi_fortran_logical2_t
/* C type corresponding to Fortran LOGICAL*4 */
#undef ompi_fortran_logical4_t
/* C type corresponding to Fortran LOGICAL*8 */
#undef ompi_fortran_logical8_t
/* C type corresponding to Fortran LOGICAL */
#undef ompi_fortran_logical_t
/* C type corresponding to Fortran REAL*16 */
#undef ompi_fortran_real16_t
/* C type corresponding to Fortran REAL*2 */
#undef ompi_fortran_real2_t
/* C type corresponding to Fortran REAL*4 */
#undef ompi_fortran_real4_t
/* C type corresponding to Fortran REAL*8 */
#undef ompi_fortran_real8_t
/* C type corresponding to Fortran REAL */
#undef ompi_fortran_real_t
/* User-selected alternate C type of short float _Complex */
#undef opal_short_float_complex_t
/* User-selected alternate C type of short float */
#undef opal_short_float_t
#include "opal_config_bottom.h"
#endif /* OPAL_CONFIG_H */
|