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
|
/* 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$
*
* Additional copyrights may follow
*
* $HEADER$
*
* Function: - OS, CPU and compiler dependent configuration
*/
#ifndef OPAL_CONFIG_H
#define OPAL_CONFIG_H
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* enable openib BTL failover */
#undef BTL_OPENIB_FAILOVER_ENABLED
/* Whether the openib BTL malloc hooks are enabled */
#undef BTL_OPENIB_MALLOC_HOOKS_ENABLED
/* BLCR cr_request_file check */
#undef CRS_BLCR_HAVE_CR_REQUEST
/* BLCR cr_request_checkpoint check */
#undef CRS_BLCR_HAVE_CR_REQUEST_CHECKPOINT
/* BLCRs cr_checkpoint_info.requester member availability */
#undef CRS_BLCR_HAVE_INFO_REQUESTER
/* 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 `backtrace' function. */
#undef HAVE_BACKTRACE
/* Define to 1 if the system has the type `CACHE_DESCRIPTOR'. */
#undef HAVE_CACHE_DESCRIPTOR
/* Define to 1 if the system has the type `CACHE_RELATIONSHIP'. */
#undef HAVE_CACHE_RELATIONSHIP
/* Define to 1 if you have the <catamount/cnos_mpi_os.h> header file. */
#undef HAVE_CATAMOUNT_CNOS_MPI_OS_H
/* Define to 1 if you have the <catamount/dclock.h> header file. */
#undef HAVE_CATAMOUNT_DCLOCK_H
/* Define to 1 if you have the `ceil' function. */
#undef HAVE_CEIL
/* Define to 1 if you have the `clz' function. */
#undef HAVE_CLZ
/* Define to 1 if you have the `clzl' function. */
#undef HAVE_CLZL
/* Define to 1 if you have the <cnos_mpi_os.h> header file. */
#undef HAVE_CNOS_MPI_OS_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 `cr_request_checkpoint' function. */
#undef HAVE_CR_REQUEST_CHECKPOINT
/* Define to 1 if you have the `cr_request_file' function. */
#undef HAVE_CR_REQUEST_FILE
/* uDAPL DAT_MEM_TYPE_SO_VIRTUAL check */
#undef HAVE_DAT_MEM_TYPE_SO_VIRTUAL
/* 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 `CTL_HW', and to 0 if you don't.
*/
#undef HAVE_DECL_CTL_HW
/* Define to 1 if you have the declaration of `HW_NCPU', and to 0 if you
don't. */
#undef HAVE_DECL_HW_NCPU
/* Define to 1 if you have the declaration of `HZ', and to 0 if you don't. */
#undef HAVE_DECL_HZ
/* Define to 1 if you have the declaration of `IBV_ACCESS_SO', and to 0 if you
don't. */
#undef HAVE_DECL_IBV_ACCESS_SO
/* Define to 1 if you have the declaration of `IBV_EVENT_CLIENT_REREGISTER',
and to 0 if you don't. */
#undef HAVE_DECL_IBV_EVENT_CLIENT_REREGISTER
/* Define to 1 if you have the declaration of `IBV_LINK_LAYER_ETHERNET', and
to 0 if you don't. */
#undef HAVE_DECL_IBV_LINK_LAYER_ETHERNET
/* Define to 1 if you have the declaration of `MPOL_MF_MOVE', and to 0 if you
don't. */
#undef HAVE_DECL_MPOL_MF_MOVE
/* Define to 1 if you have the declaration of `PCI_LOOKUP_NO_NUMBERS', and to
0 if you don't. */
#undef HAVE_DECL_PCI_LOOKUP_NO_NUMBERS
/* 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 `pthread_getaffinity_np', and to
0 if you don't. */
#undef HAVE_DECL_PTHREAD_GETAFFINITY_NP
/* Define to 1 if you have the declaration of `pthread_setaffinity_np', and to
0 if you don't. */
#undef HAVE_DECL_PTHREAD_SETAFFINITY_NP
/* 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_NPROC', and to 0 if you
don't. */
#undef HAVE_DECL_RLIMIT_NPROC
/* Define to 1 if you have the declaration of `sbrk', and to 0 if you don't.
*/
#undef HAVE_DECL_SBRK
/* Define to 1 if you have the declaration of `_SC_LARGE_PAGESIZE', and to 0
if you don't. */
#undef HAVE_DECL__SC_LARGE_PAGESIZE
/* Define to 1 if you have the declaration of `_SC_NPROCESSORS_CONF', and to 0
if you don't. */
#undef HAVE_DECL__SC_NPROCESSORS_CONF
/* Define to 1 if you have the declaration of `_SC_NPROCESSORS_ONLN', and to 0
if you don't. */
#undef HAVE_DECL__SC_NPROCESSORS_ONLN
/* Define to 1 if you have the declaration of `_SC_NPROC_CONF', and to 0 if
you don't. */
#undef HAVE_DECL__SC_NPROC_CONF
/* Define to 1 if you have the declaration of `_SC_NPROC_ONLN', and to 0 if
you don't. */
#undef HAVE_DECL__SC_NPROC_ONLN
/* Define to 1 if you have the declaration of `__func__', and to 0 if you
don't. */
#undef HAVE_DECL___FUNC__
/* Define if /dev/poll is available */
#undef HAVE_DEVPOLL
/* Define to 1 if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* Define to 1 if you have the `dirname' function. */
#undef HAVE_DIRNAME
/* 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 `double _Complex'. */
#undef HAVE_DOUBLE__COMPLEX
/* Define if your system supports the epoll interface */
#undef HAVE_EPOLL
/* Define to 1 if you have the `epoll_ctl' function. */
#undef HAVE_EPOLL_CTL
/* Define to 1 if you have the <err.h> header file. */
#undef HAVE_ERR_H
/* Define if your system supports event ports */
#undef HAVE_EVENT_PORTS
/* 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' function. */
#undef HAVE_FCNTL
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if you have the `ffs' function. */
#undef HAVE_FFS
/* Define to 1 if you have the `ffsl' function. */
#undef HAVE_FFSL
/* Define to 1 if the system has the type `float _Complex'. */
#undef HAVE_FLOAT__COMPLEX
/* Define to 1 if you have the `fls' function. */
#undef HAVE_FLS
/* Define to 1 if you have the `flsl' function. */
#undef HAVE_FLSL
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE
/* Define to 1 if you have the `getpwuid' function. */
#undef HAVE_GETPWUID
/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Define to 1 if the system has the type `GROUP_AFFINITY'. */
#undef HAVE_GROUP_AFFINITY
/* Define to 1 if the system has the type `GROUP_RELATIONSHIP'. */
#undef HAVE_GROUP_RELATIONSHIP
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* Define to 1 if you have the <hostLib.h> header file. */
#undef HAVE_HOSTLIB_H
/* Define to 1 if you have the `host_info' function. */
#undef HAVE_HOST_INFO
/* Define to 1 if you have the `ibv_create_xrc_rcv_qp' function. */
#undef HAVE_IBV_CREATE_XRC_RCV_QP
/* Define to 1 if you have the `ibv_fork_init' function. */
#undef HAVE_IBV_FORK_INIT
/* Define to 1 if you have the `ibv_get_device_list' function. */
#undef HAVE_IBV_GET_DEVICE_LIST
/* Define to 1 if you have the `ibv_resize_cq' function. */
#undef HAVE_IBV_RESIZE_CQ
/* Define to 1 if you have the <ifaddrs.h> header file. */
#undef HAVE_IFADDRS_H
/* Define to 1 if you have the <infiniband/driver.h> header file. */
#undef HAVE_INFINIBAND_DRIVER_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 the system has the type `KAFFINITY'. */
#undef HAVE_KAFFINITY
/* Define to 1 if you have the `kqueue' function. */
#undef HAVE_KQUEUE
/* Define to 1 if you have the <kstat.h> header file. */
#undef HAVE_KSTAT_H
/* Define to 1 if we have -lgdi32 */
#undef HAVE_LIBGDI32
/* Define to 1 if you have the <libgen.h> header file. */
#undef HAVE_LIBGEN_H
/* Define to 1 if we have -lkstat */
#undef HAVE_LIBKSTAT
/* Define to 1 if we have -llgrp */
#undef HAVE_LIBLGRP
/* Define to 1 if you have the `nsl' library (-lnsl). */
#undef HAVE_LIBNSL
/* Define to 1 if you have the `pci' library (-lpci). */
#undef HAVE_LIBPCI
/* Define to 1 if you have the `socket' library (-lsocket). */
#undef HAVE_LIBSOCKET
/* Define to 1 if you have the <libutil.h> header file. */
#undef HAVE_LIBUTIL_H
/* Define to 1 if the system has the type `LOGICAL_PROCESSOR_RELATIONSHIP'. */
#undef HAVE_LOGICAL_PROCESSOR_RELATIONSHIP
/* 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_host.h> header file. */
#undef HAVE_MACH_MACH_HOST_H
/* Define to 1 if you have the <mach/mach_init.h> header file. */
#undef HAVE_MACH_MACH_INIT_H
/* 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 <mach/mach_vm.h> header file. */
#undef HAVE_MACH_MACH_VM_H
/* Define to 1 if you have the `mach_vm_read' function. */
#undef HAVE_MACH_VM_READ
/* Define to 1 if you have the `mach_vm_region' function. */
#undef HAVE_MACH_VM_REGION
/* Define to 1 if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define to 1 if you have the `memalign' function. */
#undef HAVE_MEMALIGN
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_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 the system has the type `mode_t'. */
#undef HAVE_MODE_T
/* Define to 1 if you have the <mx_extensions.h> header file. */
#undef HAVE_MX_EXTENSIONS_H
/* Define to 1 if you have the `mx_forget' function. */
#undef HAVE_MX_FORGET
/* Define to 1 if you have the `mx_register_unexp_handler' function. */
#undef HAVE_MX_REGISTER_UNEXP_HANDLER
/* 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 <numaif.h> header file. */
#undef HAVE_NUMAIF_H
/* Define to 1 if the system has the type `NUMA_NODE_RELATIONSHIP'. */
#undef HAVE_NUMA_NODE_RELATIONSHIP
/* Define to 1 if you have the `openat' function. */
#undef HAVE_OPENAT
/* Define to 1 if you have the `openpty' function. */
#undef HAVE_OPENPTY
/* Define to 1 if you have the <pci/pci.h> header file. */
#undef HAVE_PCI_PCI_H
/* Define to 1 if you have the `pipe' function. */
#undef HAVE_PIPE
/* Define to 1 if you have the <pmapi.h> header file. */
#undef HAVE_PMAPI_H
/* Define to 1 if you have the <pmi.h> header file. */
#undef HAVE_PMI_H
/* Define to 1 if you have the `pm_cycles' function. */
#undef HAVE_PM_CYCLES
/* Define to 1 if you have the `poll' function. */
#undef HAVE_POLL
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H
/* Define to 1 if you have the `port_create' function. */
#undef HAVE_PORT_CREATE
/* Define to 1 if you have the `posix_memalign' function. */
#undef HAVE_POSIX_MEMALIGN
/* Define to 1 if `srr0' is a member of `ppc_thread_state_t'. */
#undef HAVE_PPC_THREAD_STATE_T_SRR0
/* Define to 1 if you have the `printstack' function. */
#undef HAVE_PRINTSTACK
/* Define to 1 if the system has the type `PROCESSOR_CACHE_TYPE'. */
#undef HAVE_PROCESSOR_CACHE_TYPE
/* Define to 1 if the system has the type `PROCESSOR_GROUP_INFO'. */
#undef HAVE_PROCESSOR_GROUP_INFO
/* Define to 1 if the system has the type `PROCESSOR_RELATIONSHIP'. */
#undef HAVE_PROCESSOR_RELATIONSHIP
/* Define to 1 if the system has the type `PSAPI_WORKING_SET_EX_BLOCK'. */
#undef HAVE_PSAPI_WORKING_SET_EX_BLOCK
/* Define to 1 if the system has the type `PSAPI_WORKING_SET_EX_INFORMATION'.
*/
#undef HAVE_PSAPI_WORKING_SET_EX_INFORMATION
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H
/* Define to 1 if you have the <pthread_np.h> header file. */
#undef HAVE_PTHREAD_NP_H
/* Define to 1 if the system has the type `pthread_t'. */
#undef HAVE_PTHREAD_T
/* 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 <rdma/rdma_cma.h> header file. */
#undef HAVE_RDMA_RDMA_CMA_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 the system has the type `RelationProcessorPackage'. */
#undef HAVE_RELATIONPROCESSORPACKAGE
/* Define if your system supports POSIX realtime signals */
#undef HAVE_RTSIG
/* Define to 1 if you have the <sched.h> header file. */
#undef HAVE_SCHED_H
/* Define to 1 if you have the `sched_yield' function. */
#undef HAVE_SCHED_YIELD
/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT
/* Define if F_SETFD is defined in <fcntl.h> */
#undef HAVE_SETFD
/* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE
/* 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 `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 <signal.h> header file. */
#undef HAVE_SIGNAL_H
/* Define to 1 if you have the `sigtimedwait' function. */
#undef HAVE_SIGTIMEDWAIT
/* 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 <stdarg.h> header file. */
#undef HAVE_STDARG_H
/* Define to 1 if you have the <stdbool.h> header file. */
#undef HAVE_STDBOOL_H
/* Define to 1 if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_H
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the `strftime' function. */
#undef HAVE_STRFTIME
/* 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 `strncasecmp' function. */
#undef HAVE_STRNCASECMP
/* Define to 1 if you have the `strncpy_s' function. */
#undef HAVE_STRNCPY_S
/* 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 you have the `strtoll' function. */
#undef HAVE_STRTOLL
/* Define to 1 if `d_type' is a member of `struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_TYPE
/* Define to 1 if `transport_type' is a member of `struct ibv_device'. */
#undef HAVE_STRUCT_IBV_DEVICE_TRANSPORT_TYPE
/* 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 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 `sysctl' function. */
#undef HAVE_SYSCTL
/* Define to 1 if you have the `sysctlbyname' function. */
#undef HAVE_SYSCTLBYNAME
/* 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 the system has the type
`SYSTEM_LOGICAL_PROCESSOR_INFORMATION'. */
#undef HAVE_SYSTEM_LOGICAL_PROCESSOR_INFORMATION
/* Define to 1 if the system has the type
`SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX'. */
#undef HAVE_SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX
/* Define to 1 if you have the <sys/cpuset.h> header file. */
#undef HAVE_SYS_CPUSET_H
/* Define to 1 if you have the <sys/devpoll.h> header file. */
#undef HAVE_SYS_DEVPOLL_H
/* Define to 1 if you have the <sys/epoll.h> header file. */
#undef HAVE_SYS_EPOLL_H
/* Define to 1 if you have the <sys/event.h> header file. */
#undef HAVE_SYS_EVENT_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/lgrp_user.h> header file. */
#undef HAVE_SYS_LGRP_USER_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/poll.h> header file. */
#undef HAVE_SYS_POLL_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/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/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 if TAILQ_FOREACH is defined in <sys/queue.h> */
#undef HAVE_TAILQFOREACH
/* 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 if timeradd is defined in <sys/time.h> */
#undef HAVE_TIMERADD
/* Define to 1 if you have the <time.h> header file. */
#undef HAVE_TIME_H
/* Define to 1 if you have the <ucontext.h> header file. */
#undef HAVE_UCONTEXT_H
/* 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 `uname' function. */
#undef HAVE_UNAME
/* 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 `vm_read_overwrite' function. */
#undef HAVE_VM_READ_OVERWRITE
/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the `waitpid' function. */
#undef HAVE_WAITPID
/* Define if kqueue works correctly with pipes */
#undef HAVE_WORKING_KQUEUE
/* Whether poll works for file descriptors and devices */
#undef HAVE_WORKING_POLL
/* Define if realtime signals work on pipes */
#undef HAVE_WORKING_RTSIG
/* Define to 1 if you have the `_NSGetEnviron' function. */
#undef HAVE__NSGETENVIRON
/* Define to 1 if you have the `_strdup' function. */
#undef HAVE__STRDUP
/* Define to 1 if you have the `__mmap' function. */
#undef HAVE___MMAP
/* Define to 1 if you have the `__munmap' function. */
#undef HAVE___MUNMAP
/* Define to 1 on AIX */
#undef HWLOC_AIX_SYS
/* Whether C compiler supports symbol visibility or not */
#undef HWLOC_C_HAVE_VISIBILITY
/* Define to 1 on Darwin */
#undef HWLOC_DARWIN_SYS
/* Whether we are in debugging mode or not */
#undef HWLOC_DEBUG
/* Version of hwloc */
#undef HWLOC_EXTERNAL_HWLOC_VERSION
/* Define to 1 on *FREEBSD */
#undef HWLOC_FREEBSD_SYS
/* Whether your compiler has __attribute__ or not */
#undef HWLOC_HAVE_ATTRIBUTE
/* Whether your compiler has __attribute__ aligned or not */
#undef HWLOC_HAVE_ATTRIBUTE_ALIGNED
/* Whether your compiler has __attribute__ always_inline or not */
#undef HWLOC_HAVE_ATTRIBUTE_ALWAYS_INLINE
/* Whether your compiler has __attribute__ cold or not */
#undef HWLOC_HAVE_ATTRIBUTE_COLD
/* Whether your compiler has __attribute__ const or not */
#undef HWLOC_HAVE_ATTRIBUTE_CONST
/* Whether your compiler has __attribute__ deprecated or not */
#undef HWLOC_HAVE_ATTRIBUTE_DEPRECATED
/* Whether your compiler has __attribute__ format or not */
#undef HWLOC_HAVE_ATTRIBUTE_FORMAT
/* Whether your compiler has __attribute__ hot or not */
#undef HWLOC_HAVE_ATTRIBUTE_HOT
/* Whether your compiler has __attribute__ malloc or not */
#undef HWLOC_HAVE_ATTRIBUTE_MALLOC
/* Whether your compiler has __attribute__ may_alias or not */
#undef HWLOC_HAVE_ATTRIBUTE_MAY_ALIAS
/* Whether your compiler has __attribute__ nonnull or not */
#undef HWLOC_HAVE_ATTRIBUTE_NONNULL
/* Whether your compiler has __attribute__ noreturn or not */
#undef HWLOC_HAVE_ATTRIBUTE_NORETURN
/* Whether your compiler has __attribute__ no_instrument_function or not */
#undef HWLOC_HAVE_ATTRIBUTE_NO_INSTRUMENT_FUNCTION
/* Whether your compiler has __attribute__ packed or not */
#undef HWLOC_HAVE_ATTRIBUTE_PACKED
/* Whether your compiler has __attribute__ pure or not */
#undef HWLOC_HAVE_ATTRIBUTE_PURE
/* Whether your compiler has __attribute__ sentinel or not */
#undef HWLOC_HAVE_ATTRIBUTE_SENTINEL
/* Whether your compiler has __attribute__ unused or not */
#undef HWLOC_HAVE_ATTRIBUTE_UNUSED
/* Whether your compiler has __attribute__ warn unused result or not */
#undef HWLOC_HAVE_ATTRIBUTE_WARN_UNUSED_RESULT
/* Whether your compiler has __attribute__ weak alias or not */
#undef HWLOC_HAVE_ATTRIBUTE_WEAK_ALIAS
/* Define to 1 if your `ffs' function is known to be broken. */
#undef HWLOC_HAVE_BROKEN_FFS
/* Define to 1 if you have the `clz' function. */
#undef HWLOC_HAVE_CLZ
/* Define to 1 if you have the `clzl' function. */
#undef HWLOC_HAVE_CLZL
/* Define to 1 if you have cpuid */
#undef HWLOC_HAVE_CPUID
/* Define to 1 if the CPU_SET macro works */
#undef HWLOC_HAVE_CPU_SET
/* Define to 1 if the CPU_SET_S macro works */
#undef HWLOC_HAVE_CPU_SET_S
/* Define to 1 if function `clz' is declared by system headers */
#undef HWLOC_HAVE_DECL_CLZ
/* Define to 1 if function `clzl' is declared by system headers */
#undef HWLOC_HAVE_DECL_CLZL
/* Define to 1 if function `ffs' is declared by system headers */
#undef HWLOC_HAVE_DECL_FFS
/* Define to 1 if function `ffsl' is declared by system headers */
#undef HWLOC_HAVE_DECL_FFSL
/* Define to 1 if function `fls' is declared by system headers */
#undef HWLOC_HAVE_DECL_FLS
/* Define to 1 if function `flsl' is declared by system headers */
#undef HWLOC_HAVE_DECL_FLSL
/* Define to 1 if you have the `ffs' function. */
#undef HWLOC_HAVE_FFS
/* Define to 1 if you have the `ffsl' function. */
#undef HWLOC_HAVE_FFSL
/* Define to 1 if you have the `fls' function. */
#undef HWLOC_HAVE_FLS
/* Define to 1 if you have the `flsl' function. */
#undef HWLOC_HAVE_FLSL
/* Define to 1 if you have the `libpci' library. */
#undef HWLOC_HAVE_LIBPCI
/* Define to 1 if you have the `libxml2' library. */
#undef HWLOC_HAVE_LIBXML2
/* Define to 1 if mbind is available. */
#undef HWLOC_HAVE_MBIND
/* Define to 1 if migrate_pages is available. */
#undef HWLOC_HAVE_MIGRATE_PAGES
/* Define to 1 if glibc provides the old prototype (without length) of
sched_setaffinity() */
#undef HWLOC_HAVE_OLD_SCHED_SETAFFINITY
/* Define to 1 if struct pci_dev has a `device_class' field. */
#undef HWLOC_HAVE_PCIDEV_DEVICE_CLASS
/* Define to 1 if struct pci_dev has a `domain' field. */
#undef HWLOC_HAVE_PCIDEV_DOMAIN
/* Define to 1 if `libpci' has the `pci_find_cap' function. */
#undef HWLOC_HAVE_PCI_FIND_CAP
/* `Define to 1 if you have pthread_getthrds_np' */
#undef HWLOC_HAVE_PTHREAD_GETTHRDS_NP
/* Define to 1 if glibc provides a prototype of sched_setaffinity() */
#undef HWLOC_HAVE_SCHED_SETAFFINITY
/* Define to 1 if set_mempolicy is available. */
#undef HWLOC_HAVE_SET_MEMPOLICY
/* Define to 1 if you have the <stdint.h> header file. */
#undef HWLOC_HAVE_STDINT_H
/* Define to 1 if you have the `windows.h' header. */
#undef HWLOC_HAVE_WINDOWS_H
/* Define to 1 if the _syscall3 macro works */
#undef HWLOC_HAVE__SYSCALL3
/* Define to 1 on HP-UX */
#undef HWLOC_HPUX_SYS
/* Version of hwloc */
#undef HWLOC_HWLOC132_HWLOC_VERSION
/* Define to 1 on Irix */
#undef HWLOC_IRIX_SYS
/* Define to 1 on Linux */
#undef HWLOC_LINUX_SYS
/* Define to 1 on OSF */
#undef HWLOC_OSF_SYS
/* The size of `unsigned int', as computed by sizeof */
#undef HWLOC_SIZEOF_UNSIGNED_INT
/* The size of `unsigned long', as computed by sizeof */
#undef HWLOC_SIZEOF_UNSIGNED_LONG
/* Define to 1 on Solaris */
#undef HWLOC_SOLARIS_SYS
/* The hwloc symbol prefix */
#undef HWLOC_SYM_PREFIX
/* The hwloc symbol prefix in all caps */
#undef HWLOC_SYM_PREFIX_CAPS
/* Whether we need to re-define all the hwloc public symbols or not */
#undef HWLOC_SYM_TRANSFORM
/* Define to 1 on unsupported systems */
#undef HWLOC_UNSUPPORTED_SYS
/* Define to 1 on WINDOWS */
#undef HWLOC_WIN_SYS
/* Define to 1 on x86_32 */
#undef HWLOC_X86_32_ARCH
/* Define to 1 on x86_64 */
#undef HWLOC_X86_64_ARCH
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR
/* Header to include for hwloc implementation */
#undef MCA_hwloc_IMPLEMENTATION_HEADER
/* Complete set of command line arguments given to ROMIOs configure script */
#undef MCA_io_romio_COMPLETE_CONFIGURE_FLAGS
/* Set of user-defined configure flags given to ROMIOs configure script via
--with-io-romio-flags */
#undef MCA_io_romio_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 mtl should use direct calls instead of components */
#undef MCA_mtl_DIRECT_CALL
/* name of component to use for direct calls, if MCA_mtl_DIRECT_CALL is 1 */
#undef MCA_mtl_DIRECT_CALL_COMPONENT
/* Header mtl includes to be direct called */
#undef MCA_mtl_DIRECT_CALL_HEADER
/* Defined to 1 if pml should use direct calls instead of components */
#undef MCA_pml_DIRECT_CALL
/* name of component to use for direct calls, if MCA_pml_DIRECT_CALL is 1 */
#undef MCA_pml_DIRECT_CALL_COMPONENT
/* Header pml includes to be direct called */
#undef MCA_pml_DIRECT_CALL_HEADER
/* Header to include for timer implementation */
#undef MCA_timer_IMPLEMENTATION_HEADER
/* Whether ptmalloc2 is supported on this system or not */
#undef MEMORY_LINUX_PTMALLOC2
/* Whether ummunotify is supported on this system or not */
#undef MEMORY_LINUX_UMMUNOTIFY
/* Whether we want to check MPI parameters always, never, or decide at
run-time */
#undef MPI_PARAM_CHECK
/* MX installation provide access to the mx_open_board and
mx__get_mapper_state functions */
#undef MX_HAVE_MAPPER_STATE
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
#undef NO_MINUS_C_MINUS_O
/* Alignment of Fortran 77 CHARACTER */
#undef OMPI_ALIGNMENT_FORTRAN_CHARACTER
/* Alignment of Fortran 77 COMPLEX */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX
/* Alignment of Fortran 77 COMPLEX*16 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX16
/* Alignment of Fortran 77 COMPLEX*32 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX32
/* Alignment of Fortran 77 COMPLEX*8 */
#undef OMPI_ALIGNMENT_FORTRAN_COMPLEX8
/* Alignment of Fortran 77 DOUBLE COMPLEX */
#undef OMPI_ALIGNMENT_FORTRAN_DOUBLE_COMPLEX
/* Alignment of Fortran 77 DOUBLE PRECISION */
#undef OMPI_ALIGNMENT_FORTRAN_DOUBLE_PRECISION
/* Alignment of Fortran 77 INTEGER */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER
/* Alignment of Fortran 77 INTEGER*1 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER1
/* Alignment of Fortran 77 INTEGER*16 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER16
/* Alignment of Fortran 77 INTEGER*2 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER2
/* Alignment of Fortran 77 INTEGER*4 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER4
/* Alignment of Fortran 77 INTEGER*8 */
#undef OMPI_ALIGNMENT_FORTRAN_INTEGER8
/* Alignment of Fortran 77 LOGICAL */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL
/* Alignment of Fortran 77 LOGICAL*1 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL1
/* Alignment of Fortran 77 LOGICAL*2 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL2
/* Alignment of Fortran 77 LOGICAL*4 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL4
/* Alignment of Fortran 77 LOGICAL*8 */
#undef OMPI_ALIGNMENT_FORTRAN_LOGICAL8
/* Alignment of Fortran 77 REAL */
#undef OMPI_ALIGNMENT_FORTRAN_REAL
/* Alignment of Fortran 77 REAL*16 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL16
/* Alignment of Fortran 77 REAL*2 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL2
/* Alignment of Fortran 77 REAL*4 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL4
/* Alignment of Fortran 77 REAL*8 */
#undef OMPI_ALIGNMENT_FORTRAN_REAL8
/* If knem support can be enabled */
#undef OMPI_BTL_SM_HAVE_KNEM
/* OMPI underlying C++ compiler */
#undef OMPI_CXX
/* Whether C++ compiler supports DEC style inline assembly */
#undef OMPI_CXX_DEC_INLINE_ASSEMBLY
/* Whether C++ compiler supports GCC style inline assembly */
#undef OMPI_CXX_GCC_INLINE_ASSEMBLY
/* Whether C++ compiler supports __builtin_expect */
#undef OMPI_CXX_HAVE_BUILTIN_EXPECT
/* Whether C++ compiler supports __builtin_prefetch */
#undef OMPI_CXX_HAVE_BUILTIN_PREFETCH
/* Whether a const_cast on a 2-d array will work with the C++ compiler */
#undef OMPI_CXX_SUPPORTS_2D_CONST_CAST
/* Whether C++ compiler supports XLC style inline assembly */
#undef OMPI_CXX_XLC_INLINE_ASSEMBLY
/* Enable contributed software package libompitrace */
#undef OMPI_ENABLE_CONTRIB_libompitrace
/* Enable contributed software package vt */
#undef OMPI_ENABLE_CONTRIB_vt
/* Enable features required for dynamic SL support */
#undef OMPI_ENABLE_DYNAMIC_SL
/* Whether we want MPI profiling or not */
#undef OMPI_ENABLE_MPI_PROFILING
/* Enable MPI_THREAD_MULTIPLE */
#undef OMPI_ENABLE_THREAD_MULTIPLE
/* MPI Extended Interface Components */
#undef OMPI_EXT_COMPONENTS
/* OMPI underlying F77 compiler */
#undef OMPI_F77
/* Whether fortran symbols are all caps or not */
#undef OMPI_F77_CAPS
/* Whether fortran symbols have a trailing double underscore or not */
#undef OMPI_F77_DOUBLE_UNDERSCORE
/* Whether fortran symbols have no trailing underscore or not */
#undef OMPI_F77_PLAIN
/* Whether fortran symbols have a trailing underscore or not */
#undef OMPI_F77_SINGLE_UNDERSCORE
/* OMPI underlying F90 compiler */
#undef OMPI_F90
/* Max handle value for fortran MPI handles, effectively min(INT_MAX, max
fortran INTEGER value) */
#undef OMPI_FORTRAN_HANDLE_MAX
/* Fortran value for LOGICAL .TRUE. value */
#undef OMPI_FORTRAN_VALUE_TRUE
/* Greek - alpha, beta, etc - release number of Open MPI */
#undef OMPI_GREEK_VERSION
/* Wether we want sparse process groups */
#undef OMPI_GROUP_SPARSE
/* whether to use cnos_barrier or not */
#undef OMPI_GRPCOMM_CNOS_HAVE_BARRIER
/* Enable features required for ConnectX XRC support */
#undef OMPI_HAVE_CONNECTX_XRC
/* Whether or not we have compiled with C++ exceptions support */
#undef OMPI_HAVE_CXX_EXCEPTION_SUPPORT
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_CHARACTER
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_COMPLEX
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_COMPLEX16
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_COMPLEX32
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_COMPLEX8
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_DOUBLE_COMPLEX
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_DOUBLE_PRECISION
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_INTEGER
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_INTEGER1
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_INTEGER16
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_INTEGER2
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_INTEGER4
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_INTEGER8
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_LOGICAL
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_LOGICAL1
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_LOGICAL2
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_LOGICAL4
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_LOGICAL8
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_REAL
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_REAL16
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_REAL2
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_REAL4
/* Whether we have Fortran 90 $ofc_fortran_type or not */
#undef OMPI_HAVE_F90_REAL8
/* Whether we have Fortran 77 CHARACTER or not */
#undef OMPI_HAVE_FORTRAN_CHARACTER
/* Whether we have Fortran 77 COMPLEX or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX
/* Whether we have Fortran 77 COMPLEX*16 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX16
/* Whether we have Fortran 77 COMPLEX*32 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX32
/* Whether we have Fortran 77 COMPLEX*8 or not */
#undef OMPI_HAVE_FORTRAN_COMPLEX8
/* Whether we have Fortran 77 DOUBLE COMPLEX or not */
#undef OMPI_HAVE_FORTRAN_DOUBLE_COMPLEX
/* Whether we have Fortran 77 DOUBLE PRECISION or not */
#undef OMPI_HAVE_FORTRAN_DOUBLE_PRECISION
/* Whether we have Fortran 77 INTEGER or not */
#undef OMPI_HAVE_FORTRAN_INTEGER
/* Whether we have Fortran 77 INTEGER*1 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER1
/* Whether we have Fortran 77 INTEGER*16 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER16
/* Whether we have Fortran 77 INTEGER*2 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER2
/* Whether we have Fortran 77 INTEGER*4 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER4
/* Whether we have Fortran 77 INTEGER*8 or not */
#undef OMPI_HAVE_FORTRAN_INTEGER8
/* Whether we have Fortran 77 LOGICAL or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL
/* Whether we have Fortran 77 LOGICAL*1 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL1
/* Whether we have Fortran 77 LOGICAL*2 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL2
/* Whether we have Fortran 77 LOGICAL*4 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL4
/* Whether we have Fortran 77 LOGICAL*8 or not */
#undef OMPI_HAVE_FORTRAN_LOGICAL8
/* Whether we have Fortran 77 REAL or not */
#undef OMPI_HAVE_FORTRAN_REAL
/* Whether we have Fortran 77 REAL*16 or not */
#undef OMPI_HAVE_FORTRAN_REAL16
/* Whether we have Fortran 77 REAL*2 or not */
#undef OMPI_HAVE_FORTRAN_REAL2
/* Whether we have Fortran 77 REAL*4 or not */
#undef OMPI_HAVE_FORTRAN_REAL4
/* Whether we have Fortran 77 REAL*8 or not */
#undef OMPI_HAVE_FORTRAN_REAL8
/* If PTHREADS implementation supports PTHREAD_MUTEX_ERRORCHECK */
#undef OMPI_HAVE_PTHREAD_MUTEX_ERRORCHECK
/* If PTHREADS implementation supports PTHREAD_MUTEX_ERRORCHECK_NP */
#undef OMPI_HAVE_PTHREAD_MUTEX_ERRORCHECK_NP
/* Whether RDMA CM is available or not */
#undef OMPI_HAVE_RDMACM
/* Enable RDMAoE support */
#undef OMPI_HAVE_RDMAOE
/* Number of arguments to ibv_create_cq */
#undef OMPI_IBV_CREATE_CQ_ARGS
/* Major release number of Open MPI */
#undef OMPI_MAJOR_VERSION
/* False if you can use iovec's directly with SCTP BTL */
#undef OMPI_MCA_BTL_SCTP_CONCATENATES_IOVS
/* Default value for socket style to use with SCTP BTL */
#undef OMPI_MCA_BTL_SCTP_USE_ONE_TO_ONE_SOCKET
/* Whether any opal memory mca components were found */
#undef OMPI_MEMORY_HAVE_COMPONENT
/* Minor release number of Open MPI */
#undef OMPI_MINOR_VERSION
/* Size of the MPI_Offset */
#undef OMPI_MPI_OFFSET_SIZE
/* Type of MPI_Offset -- has to be defined here and typedef'ed later because
mpi.h does not get AC SUBST's */
#undef OMPI_MPI_OFFSET_TYPE
/* MPI datatype corresponding to MPI_Offset */
#undef OMPI_OFFSET_DATATYPE
/* Add padding bytes to the openib control header */
#undef OMPI_OPENIB_PAD_HDR
/* Use the Cray XT-3 implementation of Portals */
#undef OMPI_PORTALS_CRAYXT3
/* Use the Cray XT-3 implementation of Portals using Modex */
#undef OMPI_PORTALS_CRAYXT3_MODEX
/* Does Portals send a PTL_EVENT_UNLINK event */
#undef OMPI_PORTALS_HAVE_EVENT_UNLINK
/* Use the UTCP reference implementation of Portals */
#undef OMPI_PORTALS_UTCP
/* Whether OMPI should provide MPI File interface */
#undef OMPI_PROVIDE_MPI_FILE_INTERFACE
/* 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
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_CHARACTER
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_COMPLEX
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_COMPLEX16
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_COMPLEX32
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_COMPLEX8
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_DOUBLE_COMPLEX
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_DOUBLE_PRECISION
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_INTEGER
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_INTEGER1
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_INTEGER16
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_INTEGER2
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_INTEGER4
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_INTEGER8
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_LOGICAL
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_LOGICAL1
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_LOGICAL2
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_LOGICAL4
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_LOGICAL8
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_REAL
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_REAL16
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_REAL2
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_REAL4
/* Size of Fortran 77 $ofc_fortran_type */
#undef OMPI_SIZEOF_F90_REAL8
/* Size of Fortran 77 CHARACTER */
#undef OMPI_SIZEOF_FORTRAN_CHARACTER
/* Size of Fortran 77 COMPLEX */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX
/* Size of Fortran 77 COMPLEX*16 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX16
/* Size of Fortran 77 COMPLEX*32 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX32
/* Size of Fortran 77 COMPLEX*8 */
#undef OMPI_SIZEOF_FORTRAN_COMPLEX8
/* Size of Fortran 77 DOUBLE COMPLEX */
#undef OMPI_SIZEOF_FORTRAN_DOUBLE_COMPLEX
/* Size of Fortran 77 DOUBLE PRECISION */
#undef OMPI_SIZEOF_FORTRAN_DOUBLE_PRECISION
/* Size of Fortran 77 INTEGER */
#undef OMPI_SIZEOF_FORTRAN_INTEGER
/* Size of Fortran 77 INTEGER*1 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER1
/* Size of Fortran 77 INTEGER*16 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER16
/* Size of Fortran 77 INTEGER*2 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER2
/* Size of Fortran 77 INTEGER*4 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER4
/* Size of Fortran 77 INTEGER*8 */
#undef OMPI_SIZEOF_FORTRAN_INTEGER8
/* Size of Fortran 77 LOGICAL */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL
/* Size of Fortran 77 LOGICAL*1 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL1
/* Size of Fortran 77 LOGICAL*2 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL2
/* Size of Fortran 77 LOGICAL*4 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL4
/* Size of Fortran 77 LOGICAL*8 */
#undef OMPI_SIZEOF_FORTRAN_LOGICAL8
/* Size of Fortran 77 REAL */
#undef OMPI_SIZEOF_FORTRAN_REAL
/* Size of Fortran 77 REAL*16 */
#undef OMPI_SIZEOF_FORTRAN_REAL16
/* Size of Fortran 77 REAL*2 */
#undef OMPI_SIZEOF_FORTRAN_REAL2
/* Size of Fortran 77 REAL*4 */
#undef OMPI_SIZEOF_FORTRAN_REAL4
/* Size of Fortran 77 REAL*8 */
#undef OMPI_SIZEOF_FORTRAN_REAL8
/* Complete release number of Open MPI */
#undef OMPI_VERSION
/* Whether we want MPI C++ support or not */
#undef OMPI_WANT_CXX_BINDINGS
/* Whether we want the MPI f77 bindings or not */
#undef OMPI_WANT_F77_BINDINGS
/* Whether we want the MPI f90 bindings or not */
#undef OMPI_WANT_F90_BINDINGS
/* if the memory and buffer checking should be enabled */
#undef OMPI_WANT_MEMCHECKER
/* do we want to try to work around C++ bindings SEEK_* issue? */
#undef OMPI_WANT_MPI_CXX_SEEK
/* Enable warnings in wrong usage (e.g. deprecated) in user-level code */
#undef OMPI_WANT_MPI_INTERFACE_WARNING
/* if the peruse interface should be enabled */
#undef OMPI_WANT_PERUSE
/* Alignment of type _Bool */
#undef OPAL_ALIGNMENT_BOOL
/* Alignment of type char */
#undef OPAL_ALIGNMENT_CHAR
/* Alignment of type bool */
#undef OPAL_ALIGNMENT_CXX_BOOL
/* Alignment of type double */
#undef OPAL_ALIGNMENT_DOUBLE
/* Alignment of type double _Complex */
#undef OPAL_ALIGNMENT_DOUBLE_COMPLEX
/* Alignment of type float */
#undef OPAL_ALIGNMENT_FLOAT
/* Alignment of type float _Complex */
#undef OPAL_ALIGNMENT_FLOAT_COMPLEX
/* Alignment of type int */
#undef OPAL_ALIGNMENT_INT
/* Alignment of type int128_t */
#undef OPAL_ALIGNMENT_INT128
/* Alignment of type int16_t */
#undef OPAL_ALIGNMENT_INT16
/* Alignment of type int32_t */
#undef OPAL_ALIGNMENT_INT32
/* Alignment of type int64_t */
#undef OPAL_ALIGNMENT_INT64
/* Alignment of type int8_t */
#undef OPAL_ALIGNMENT_INT8
/* Alignment of type long */
#undef OPAL_ALIGNMENT_LONG
/* Alignment of type long double */
#undef OPAL_ALIGNMENT_LONG_DOUBLE
/* Alignment of type long double _Complex */
#undef OPAL_ALIGNMENT_LONG_DOUBLE_COMPLEX
/* Alignment of type long long */
#undef OPAL_ALIGNMENT_LONG_LONG
/* Alignment of type short */
#undef OPAL_ALIGNMENT_SHORT
/* Alignment of type void * */
#undef OPAL_ALIGNMENT_VOID_P
/* Alignment of type wchar_t */
#undef OPAL_ALIGNMENT_WCHAR
/* 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
/* Assembly align directive expects logarithmic value */
#undef OPAL_ASM_ALIGN_LOG
/* What ARM assembly version to use */
#undef OPAL_ASM_ARM_VERSION
/* Assembly directive for exporting symbols */
#undef OPAL_ASM_GLOBAL
/* Assembly prefix for gsym labels */
#undef OPAL_ASM_GSYM
/* Assembly suffix for labels */
#undef OPAL_ASM_LABEL_SUFFIX
/* Assembly prefix for lsym labels */
#undef OPAL_ASM_LSYM
/* Do we need to give a .size directive */
#undef OPAL_ASM_SIZE
/* Whether we can do 64bit assembly operations or not. Should not be used
outside of the assembly header files */
#undef OPAL_ASM_SUPPORT_64BIT
/* Assembly directive for setting text section */
#undef OPAL_ASM_TEXT
/* How to set function type in .type directive */
#undef OPAL_ASM_TYPE
/* Architecture type of assembly to use for atomic operations */
#undef OPAL_ASSEMBLY_ARCH
/* Format of assembly file */
#undef OPAL_ASSEMBLY_FORMAT
/* 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_FAMILYNAME
/* The compiler $lower which OMPI was built with */
#undef OPAL_BUILD_PLATFORM_COMPILER_VERSION
/* The compiler $lower which OMPI was built with */
#undef OPAL_BUILD_PLATFORM_COMPILER_VERSION_STR
/* OMPI underlying C compiler */
#undef OPAL_CC
/* Use static const char[] strings for C files */
#undef OPAL_CC_USE_CONST_CHAR_IDENT
/* Use #ident strings for C files */
#undef OPAL_CC_USE_IDENT
/* Use #pragma comment for C files */
#undef OPAL_CC_USE_PRAGMA_COMMENT
/* Use #pragma ident strings for C files */
#undef OPAL_CC_USE_PRAGMA_IDENT
/* OPAL underlying C++ compiler */
#undef OPAL_CXX
/* Use static const char[] strings for C++ files */
#undef OPAL_CXX_USE_CONST_CHAR_IDENT
/* Use #ident strings for C++ files */
#undef OPAL_CXX_USE_IDENT
/* Use #pragma comment for C++ files */
#undef OPAL_CXX_USE_PRAGMA_COMMENT
/* Use #pragma ident strings for C++ files */
#undef OPAL_CXX_USE_PRAGMA_IDENT
/* Whether C compiler supports DEC style inline assembly */
#undef OPAL_C_DEC_INLINE_ASSEMBLY
/* Whether C compiler supports GCC style inline assembly */
#undef OPAL_C_GCC_INLINE_ASSEMBLY
/* 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 XLC style inline assembly */
#undef OPAL_C_XLC_INLINE_ASSEMBLY
/* 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 checkpoint/restart components and logic */
#undef OPAL_ENABLE_FT_CR
/* Enable fault tolerance thread in Open PAL */
#undef OPAL_ENABLE_FT_THREAD
/* 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 should enable OPAL support for threads */
#undef OPAL_ENABLE_MULTI_THREADS
/* Hardcode the OPAL progress thread to be off */
#undef OPAL_ENABLE_PROGRESS_THREADS
/* Whether user wants PTY support or not */
#undef OPAL_ENABLE_PTY_SUPPORT
/* Enable run-time tracing of internal functions */
#undef OPAL_ENABLE_TRACE
/* Greek - alpha, beta, etc - release number of Open Portable Access Layer */
#undef OPAL_GREEK_VERSION
/* Whether there is an atomic assembly file available */
#undef OPAL_HAVE_ASM_FILE
/* 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__ 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__ 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__ 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__ 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 qsort is broken or not */
#undef OPAL_HAVE_BROKEN_QSORT
/* Whether we have hwloc support or not */
#undef OPAL_HAVE_HWLOC
/* Do not use outside of mpi.h. Define to 1 if the system has the type `long
long'. */
#undef OPAL_HAVE_LONG_LONG
/* Whether libltdl appears to have the lt_dladvise interface */
#undef OPAL_HAVE_LTDL_ADVISE
/* Do we have POSIX threads */
#undef OPAL_HAVE_POSIX_THREADS
/* Whether we have SA_RESTART in <signal.h> or not */
#undef OPAL_HAVE_SA_RESTART
/* Do we have native Solaris threads */
#undef OPAL_HAVE_SOLARIS_THREADS
/* 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
/* Whether we are using the internal libltdl or not */
#undef OPAL_LIBLTDL_INTERNAL
/* 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
/* Minor release number of Open Portable Access Layer */
#undef OPAL_MINOR_VERSION
/* Whether the C compiler supports "bool" without any other help (such as
<stdbool.h>) */
#undef OPAL_NEED_C_BOOL
/* package/branding string for Open MPI */
#undef OPAL_PACKAGE_STRING
/* Whether r notation is used for ppc registers */
#undef OPAL_POWERPC_R_REGISTERS
/* type to use for ptrdiff_t */
#undef OPAL_PTRDIFF_TYPE
/* Release date of Open Portable Access Layer */
#undef OPAL_RELEASE_DATE
/* Release release number of Open Portable Access Layer */
#undef OPAL_RELEASE_VERSION
/* 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 we have shared memory support for POSIX or not */
#undef OPAL_SHMEM_WINDOWS
/* Do not use outside of mpi.h. Define to 1 if you have the ANSI C header
files. */
#undef OPAL_STDC_HEADERS
/* Do threads have different pids (pthreads on linux) */
#undef OPAL_THREADS_HAVE_DIFFERENT_PIDS
/* Whether to use <stdbool.h> or not */
#undef OPAL_USE_STDBOOL_H
/* Complete release number of Open Portable Access Layer */
#undef OPAL_VERSION
/* Enable per-user config files */
#undef OPAL_WANT_HOME_CONFIG_FILES
/* Whether to include support for libltdl or not */
#undef OPAL_WANT_LIBLTDL
/* if want pretty-print stack trace feature */
#undef OPAL_WANT_PRETTY_PRINT_STACKTRACE
/* whether we want to have smp locks in atomic ops or not */
#undef OPAL_WANT_SMP_LOCKS
/* Specific ps command to use in orte-clean */
#undef ORTE_CLEAN_PS_CMD
/* Build full RTE support */
#undef ORTE_DISABLE_FULL_SUPPORT
/* Greek - alpha, beta, etc - release number of Open MPI Run-Time Environment
*/
#undef ORTE_GREEK_VERSION
/* Major release number of Open MPI Run-Time Environment */
#undef ORTE_MAJOR_VERSION
/* Whether we have CNOS support in alps ess or not */
#undef ORTE_MCA_ESS_ALPS_HAVE_CNOS
/* Minor release number of Open MPI Run-Time Environment */
#undef ORTE_MINOR_VERSION
/* Release date of Open MPI Run-Time Environment */
#undef ORTE_RELEASE_DATE
/* Release release number of Open MPI Run-Time Environment */
#undef ORTE_RELEASE_VERSION
/* Complete release number of Open MPI Run-Time Environment */
#undef ORTE_VERSION
/* Whether we want orterun to effect "--prefix $prefix" by default */
#undef ORTE_WANT_ORTERUN_PREFIX_BY_DEFAULT
/* 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 `bool', as computed by sizeof. */
#undef SIZEOF_BOOL
/* 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 `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 `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
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
/* Enable extensions on HP-UX. */
#ifndef _HPUX_SOURCE
# undef _HPUX_SOURCE
#endif
/* 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 GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable threading extensions on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif
/* Whether we want to use Cray PMI2 extensions */
#undef WANT_CRAY_PMI2_EXT
/* Whether we want PMI support */
#undef WANT_PMI_SUPPORT
/* 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
/* Additional CFLAGS to pass through the wrapper compilers */
#undef WRAPPER_EXTRA_CFLAGS
/* Additional CXXFLAGS to pass through the wrapper compilers */
#undef WRAPPER_EXTRA_CXXFLAGS
/* Additional FCFLAGS to pass through the wrapper compilers */
#undef WRAPPER_EXTRA_FCFLAGS
/* Additional FFLAGS to pass through the wrapper compilers */
#undef WRAPPER_EXTRA_FFLAGS
/* Additional LDFLAGS to pass through the wrapper compilers */
#undef WRAPPER_EXTRA_LDFLAGS
/* Additional LIBS to pass through the wrapper compilers */
#undef WRAPPER_EXTRA_LIBS
/* 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
/* Are we building for HP-UX? */
#undef _HPUX_SOURCE
/* Define to 1 if on MINIX. */
#undef _MINIX
/* Define to 2 if the system does not provide POSIX.1 features except with
this defined. */
#undef _POSIX_1_SOURCE
/* Define to 1 if you need to in order for `stat' and other things to work. */
#undef _POSIX_SOURCE
/* Define this to the process ID type */
#undef hwloc_pid_t
/* Define this to either strncasecmp or strncmp */
#undef hwloc_strncasecmp
/* Define this to the thread ID type */
#undef hwloc_thread_t
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
#undef inline
#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 77 CHARACTER */
#undef ompi_fortran_character_t
/* C type corresponding to Fortran 77 COMPLEX*16 */
#undef ompi_fortran_complex16_t
/* C type corresponding to Fortran 77 COMPLEX*32 */
#undef ompi_fortran_complex32_t
/* C type corresponding to Fortran 77 COMPLEX*8 */
#undef ompi_fortran_complex8_t
/* C type corresponding to Fortran 77 COMPLEX */
#undef ompi_fortran_complex_t
/* C type corresponding to Fortran 77 DOUBLE COMPLEX */
#undef ompi_fortran_double_complex_t
/* C type corresponding to Fortran 77 DOUBLE PRECISION */
#undef ompi_fortran_double_precision_t
/* C type corresponding to Fortran 77 INTEGER*16 */
#undef ompi_fortran_integer16_t
/* C type corresponding to Fortran 77 INTEGER*1 */
#undef ompi_fortran_integer1_t
/* C type corresponding to Fortran 77 INTEGER*2 */
#undef ompi_fortran_integer2_t
/* C type corresponding to Fortran 77 INTEGER*4 */
#undef ompi_fortran_integer4_t
/* C type corresponding to Fortran 77 INTEGER*8 */
#undef ompi_fortran_integer8_t
/* C type corresponding to Fortran 77 INTEGER */
#undef ompi_fortran_integer_t
/* C type corresponding to Fortran 77 LOGICAL*1 */
#undef ompi_fortran_logical1_t
/* C type corresponding to Fortran 77 LOGICAL*2 */
#undef ompi_fortran_logical2_t
/* C type corresponding to Fortran 77 LOGICAL*4 */
#undef ompi_fortran_logical4_t
/* C type corresponding to Fortran 77 LOGICAL*8 */
#undef ompi_fortran_logical8_t
/* C type corresponding to Fortran 77 LOGICAL */
#undef ompi_fortran_logical_t
/* C type corresponding to Fortran 77 REAL*16 */
#undef ompi_fortran_real16_t
/* C type corresponding to Fortran 77 REAL*2 */
#undef ompi_fortran_real2_t
/* C type corresponding to Fortran 77 REAL*4 */
#undef ompi_fortran_real4_t
/* C type corresponding to Fortran 77 REAL*8 */
#undef ompi_fortran_real8_t
/* C type corresponding to Fortran 77 REAL */
#undef ompi_fortran_real_t
/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t
/* Define to the equivalent of the C99 'restrict' keyword, or to
nothing if this is not supported. Do not define if restrict is
supported directly. */
#undef restrict
/* Work around a bug in Sun C++: it does not support _Restrict or
__restrict__, even though the corresponding Sun C compiler ends up with
"#define restrict _Restrict" or "#define restrict __restrict__" in the
previous line. Perhaps some future version of Sun C++ will work with
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
#if defined __SUNPRO_CC && !defined __RESTRICT
# define _Restrict
# define __restrict__
#endif
/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t
#include "opal_config_bottom.h"
#endif /* OPAL_CONFIG_H */
|