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 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573
|
# StarPU --- Runtime system for heterogeneous multicore architectures.
#
# Copyright (C) 2009-2025 University of Bordeaux, CNRS (LaBRI UMR 5800), Inria
# Copyright (C) 2018-2018 Umeà University
# Copyright (C) 2018,2020 Federal University of Rio Grande do Sul (UFRGS)
# Copyright (C) 2017-2017 Guillaume Beauchamp
# Copyright (C) 2013-2013 Thibaut Lambert
# Copyright (C) 2011-2011 Télécom Sud Paris
#
# StarPU is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or (at
# your option) any later version.
#
# StarPU is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See the GNU Lesser General Public License in COPYING.LGPL for more details.
#
AC_INIT([StarPU], [1.4.10], [starpu-devel@inria.fr], [starpu], [http://gitlab.inria.fr/starpu/starpu])
AC_CONFIG_SRCDIR(include/starpu.h)
AC_CONFIG_AUX_DIR([build-aux])
# libtool doesn't actually properly manage a space in the workdir
case `pwd` in
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
AC_MSG_ERROR([unsafe absolute working directory name]);;
esac
dnl Versioning.
STARPU_MAJOR_VERSION="`echo $PACKAGE_VERSION | cut -d . -f 1`"
STARPU_MINOR_VERSION="`echo $PACKAGE_VERSION | cut -d . -f 2`"
STARPU_RELEASE_VERSION="`echo $PACKAGE_VERSION | cut -d . -f 3`"
STARPU_RELEASE_VERSION="`echo $PACKAGE_VERSION | cut -d . -f 3| sed 's/rc.*//'`"
dnl we do not want the rcXX in the release version. we would like to use sed -r 's/[a-z]+.*//' to remove any string but the -r option is not portable
AC_SUBST([STARPU_MAJOR_VERSION])
AC_SUBST([STARPU_MINOR_VERSION])
AC_SUBST([STARPU_RELEASE_VERSION])
AC_SUBST([STARPU_EFFECTIVE_VERSION])
AC_DEFINE_UNQUOTED([STARPU_MAJOR_VERSION], [$STARPU_MAJOR_VERSION], [Major version number of StarPU.])
AC_DEFINE_UNQUOTED([STARPU_MINOR_VERSION], [$STARPU_MINOR_VERSION], [Minor version number of StarPU.])
AC_DEFINE_UNQUOTED([STARPU_RELEASE_VERSION], [$STARPU_RELEASE_VERSION], [Release version number of StarPU.])
. "$srcdir/STARPU-VERSION"
AC_SUBST([LIBSTARPU_INTERFACE_CURRENT])
AC_SUBST([LIBSTARPU_INTERFACE_REVISION])
AC_SUBST([LIBSTARPU_INTERFACE_AGE])
AC_SUBST([LIBSTARPUMPI_INTERFACE_CURRENT])
AC_SUBST([LIBSTARPUMPI_INTERFACE_REVISION])
AC_SUBST([LIBSTARPUMPI_INTERFACE_AGE])
AC_SUBST([LIBSTARPUFFT_INTERFACE_CURRENT])
AC_SUBST([LIBSTARPUFFT_INTERFACE_REVISION])
AC_SUBST([LIBSTARPUFFT_INTERFACE_AGE])
AC_SUBST([LIBSTARPURM_INTERFACE_CURRENT])
AC_SUBST([LIBSTARPURM_INTERFACE_REVISION])
AC_SUBST([LIBSTARPURM_INTERFACE_AGE])
AC_SUBST([LIBSTARPU_OPENMP_LLVM_INTERFACE_CURRENT])
AC_SUBST([LIBSTARPU_OPENMP_LLVM_INTERFACE_REVISION])
AC_SUBST([LIBSTARPU_OPENMP_LLVM_INTERFACE_AGE])
AC_SUBST([LIBSOCL_INTERFACE_CURRENT])
AC_SUBST([LIBSOCL_INTERFACE_REVISION])
AC_SUBST([LIBSOCL_INTERFACE_AGE])
AC_SUBST([LIBSTARPUJULIA_INTERFACE_CURRENT])
AC_SUBST([LIBSTARPUJULIA_INTERFACE_REVISION])
AC_SUBST([LIBSTARPUJULIA_INTERFACE_AGE])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE([1.11 -Wall -Wno-portability foreign silent-rules color-tests parallel-tests subdir-objects tar-pax])
m4_ifdef([AM_SILENT_RULES],
[AM_SILENT_RULES(yes)])
AC_PREREQ(2.64)
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CXX
AC_PROG_CPP
AC_PROG_SED
AC_PROG_LN_S
AC_PROG_F77
AC_PROG_FC
AC_PROG_GREP
AC_PROG_EGREP
AC_PROG_INSTALL
AC_PROG_MKDIR_P
AC_CHECK_PROGS(PROG_STAT,gstat stat)
AC_CHECK_PROGS(PROG_DATE,gdate date)
AC_PATH_PROGS(PROG_FIND,find)
AC_CHECK_PROGS(PROG_CLANG,clang)
AC_CACHE_CHECK([for parallel that supports semaphores with exit code], [ac_cv_path_PARALLEL],
[AC_PATH_PROGS_FEATURE_CHECK([PARALLEL], [parallel],
[[parallel --semaphore --id starpu --fg --fg-exit -j 2 exit 42 > /dev/null 2>&1
[ $? = 42 ] && ac_cv_path_PARALLEL=$ac_path_PARALLEL ac_path_PARALLEL_found=:]],
[ac_cv_path_PARALLEL=no])])
AC_SUBST([PARALLEL], [$ac_cv_path_PARALLEL])
AM_CONDITIONAL([HAVE_PARALLEL], [test "x$PARALLEL" != "xno"])
dnl locate pkg-config
PKG_PROG_PKG_CONFIG
AC_ARG_ENABLE(simgrid, [AS_HELP_STRING([--enable-simgrid],
[Enable simulating execution in simgrid])],
enable_simgrid=$enableval, enable_simgrid=no)
if test x$enable_perf_debug = xyes; then
enable_shared=no
fi
default_enable_mpi_check=no
if test x$enable_simgrid = xyes ; then
default_enable_mpi=no
else
default_enable_mpi=maybe
fi
IS_SUPPORTED_FLAG_VAR(-Wno-unused,APP)
IS_SUPPORTED_FFLAG(-Wno-unused-dummy-argument,[APP_FFLAGS="$APP_FFLAGS -Wno-unused-dummy-argument"])
IS_SUPPORTED_FCFLAG(-Wno-unused-dummy-argument,[APP_FCFLAGS="$APP_FCFLAGS -Wno-unused-dummy-argument"])
AC_SUBST(APP_CFLAGS)
AC_SUBST(APP_CXXFLAGS)
AC_SUBST(APP_FFLAGS)
AC_SUBST(APP_FCFLAGS)
AC_FUNC_MMAP
###############################################################################
# #
# Forwarded options #
# #
# Move here options whose values are needed early #
# #
###############################################################################
#
AC_ARG_ENABLE(starpupy, [AS_HELP_STRING([--enable-starpupy], [enable StarPU python interface])],
enable_starpupy=$enableval, enable_starpupy=maybe)
###############################################################################
# #
# Profiling tool support #
# #
###############################################################################
AC_ARG_ENABLE(prof-tool, [AS_HELP_STRING([--enable-prof-tool],
[enable profiling tool])],
enable_prof_tool=$enableval, enable_prof_tool=yes)
if test x$enable_prof_tool = xyes; then
AC_DEFINE(STARPU_PROF_TOOL, [1], [Define this to enable profiling tool support])
fi
AC_MSG_CHECKING([for profiling tool support])
AC_MSG_RESULT($enable_prof_tool)
###############################################################################
# #
# Hierarchical dags support #
# #
###############################################################################
AC_ARG_ENABLE(bubble, [AS_HELP_STRING([--enable-bubble],
[build the hierarchical dags (a.k.a bubble) support])],
enable_bubble=$enableval, enable_bubble=no)
AC_MSG_CHECKING([for hierarchical dags - a.k.a bubble - support])
if test x$enable_bubble = xyes; then
AC_DEFINE(STARPU_BUBBLE, [1], [Define this to enable hierarchical dags support])
fi
AM_CONDITIONAL([STARPU_BUBBLE], [test "x$enable_bubble" = "xyes"])
AC_MSG_RESULT($enable_bubble)
AC_MSG_CHECKING(whether bubble debug messages should be displayed)
AC_ARG_ENABLE(bubble-verbose, [AS_HELP_STRING([--enable-bubble-verbose],
[display verbose bubble messages])],
enable_bubble_verbose=$enableval, enable_bubble_verbose=no)
AC_MSG_RESULT($enable_bubble_verbose)
if test x$enable_bubble_verbose = xextra; then
AC_DEFINE(STARPU_BUBBLE_VERBOSE, [1], [display verbose bubble debug messages])
fi
###############################################################################
# #
# Drivers #
# #
###############################################################################
AC_ARG_ENABLE(opencl-simulator, [AS_HELP_STRING([--enable-opencl-simulator],
[Enable the use of an OpenCL simulator])],
enable_opencl_simulator=$enableval, enable_opencl_simulator=no)
if test x$enable_opencl_simulator = xyes; then
enable_simgrid=yes
AC_DEFINE(STARPU_OPENCL_SIMULATOR, [1], [Define this to enable using an OpenCL simulator])
fi
AC_ARG_WITH(simgrid-dir,
[AS_HELP_STRING([--with-simgrid-dir=<path>],
[specify SimGrid installation directory])],
[
simgrid_dir="$withval"
# in case this was not explicit yet
enable_simgrid=yes
], simgrid_dir=no)
AC_ARG_WITH(simgrid-include-dir,
[AS_HELP_STRING([--with-simgrid-include-dir=<path>],
[specify where SimGrid headers are installed])],
[
simgrid_include_dir="$withval"
# in case this was not explicit yet
enable_simgrid=yes
], [simgrid_include_dir=no])
AC_ARG_WITH(simgrid-lib-dir,
[AS_HELP_STRING([--with-simgrid-lib-dir=<path>],
[specify where SimGrid libraries are installed])],
[
simgrid_lib_dir="$withval"
# in case this was not explicit yet
enable_simgrid=yes
], [simgrid_lib_dir=no])
if test x$enable_simgrid = xyes ; then
PKG_CHECK_MODULES([SIMGRID], [simgrid], [], [:])
if test "$simgrid_include_dir" != "no" ; then
SIMGRID_CFLAGS="-I$simgrid_include_dir $SIMGRID_CFLAGS"
fi
if test "$simgrid_lib_dir" != "no" ; then
SIMGRID_LIBS="-L$simgrid_lib_dir $SIMGRID_LIBS"
fi
if test "$simgrid_dir" != "no" ; then
SIMGRID_CFLAGS="-I$simgrid_dir/include $SIMGRID_CFLAGS"
SIMGRID_LIBS="-L$simgrid_dir/lib $SIMGRID_LIBS"
else
simgrid_dir="$(pkg-config --variable=prefix simgrid)"
fi
if test -n "$SIMGRID_CFLAGS" ; then
CFLAGS="$SIMGRID_CFLAGS $CFLAGS"
CXXFLAGS="$SIMGRID_CFLAGS $CXXFLAGS"
NVCCFLAGS="$SIMGRID_CFLAGS $NVCCFLAGS"
HIPCCFLAGS="$SIMGRID_CFLAGS $HIPCCFLAGS"
fi
SAVED_LIBS="${LIBS}"
LIBS="$SIMGRID_LIBS $LIBS"
AC_HAVE_LIBRARY([simgrid], [],
[
AC_MSG_ERROR(Simgrid support needs simgrid installed)
]
)
AC_CHECK_HEADERS([simgrid/msg.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_MSG_H], [1], [Define to 1 if you have msg.h in simgrid/.])])
AC_CHECK_HEADERS([msg/msg.h], [AC_DEFINE([STARPU_HAVE_MSG_MSG_H], [1], [Define to 1 if you have msg.h in msg/.])])
AC_CHECK_HEADERS([simgrid/host.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_HOST_H], [1], [Define to 1 if you have host.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/link.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_LINK_H], [1], [Define to 1 if you have link.h in simgrid/.])])
AC_CHECK_HEADERS([xbt/base.h], [AC_DEFINE([STARPU_HAVE_XBT_BASE_H], [1], [Define to 1 if you have base.h in xbt/.])])
AC_CHECK_HEADERS([simgrid/version.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_VERSION_H], [1], [Define to 1 if you have version.h in simgrid/.])], [], [[
#ifdef STARPU_HAVE_XBT_BASE_H
#include <xbt/base.h>
#endif
]])
AC_CHECK_HEADERS([simgrid/simdag.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_SIMDAG_H], [1], [Define to 1 if you have simdag.h in simgrid/.])])
AC_CHECK_HEADERS([xbt/synchro.h], [AC_DEFINE([STARPU_HAVE_XBT_SYNCHRO_H], [1], [Define to 1 if you have synchro.h in xbt/.])])
AC_CHECK_HEADERS([xbt/config.h], [AC_DEFINE([STARPU_HAVE_XBT_CONFIG_H], [1], [Define to 1 if you have config.h in xbt/.])])
AC_CHECK_HEADERS([simgrid/actor.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_ACTOR_H], [1], [Define to 1 if you have actor.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/engine.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_ENGINE_H], [1], [Define to 1 if you have engine.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/semaphore.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_SEMAPHORE_H], [1], [Define to 1 if you have semaphore.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/mutex.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_MUTEX_H], [1], [Define to 1 if you have mutex.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/cond.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_COND_H], [1], [Define to 1 if you have cond.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/barrier.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_BARRIER_H], [1], [Define to 1 if you have barrier.h in simgrid/.])])
AC_CHECK_HEADERS([simgrid/engine.h])
AC_CHECK_HEADERS([simgrid/zone.h], [AC_DEFINE([STARPU_HAVE_SIMGRID_ZONE_H], [1], [Define to 1 if you have zone.h in simgrid/.])])
AC_CHECK_TYPES([smx_actor_t], [AC_DEFINE([STARPU_HAVE_SMX_ACTOR_T], [1], [Define to 1 if you have the smx_actor_t type.])], [], [[#include <simgrid/simix.h>]])
# Latest functions
AC_CHECK_FUNCS([MSG_process_attach sg_actor_attach sg_actor_attach_pthread sg_actor_init sg_actor_set_stacksize sg_actor_on_exit MSG_zone_get_hosts sg_zone_get_hosts sg_zone_get_all_hosts MSG_process_self_name MSG_process_userdata_init sg_actor_get_data sg_actor_set_data sg_actor_data])
AC_CHECK_FUNCS([xbt_mutex_try_acquire smpi_process_set_user_data SMPI_thread_create sg_zone_get_by_name sg_link_get_name sg_link_name sg_link_set_bandwidth sg_link_bandwidth_set sg_host_get_route sg_host_get_route_links sg_host_route sg_host_self sg_host_list sg_host_get_speed sg_host_speed simcall_process_create sg_config_continue_after_help])
AC_CHECK_FUNCS([simgrid_set_maestro])
AC_CHECK_FUNCS([simgrid_init], [AC_DEFINE([STARPU_SIMGRID_HAVE_SIMGRID_INIT], [1], [Define to 1 if you have the `simgrid_init' function.])])
AC_CHECK_FUNCS([xbt_barrier_init], [AC_DEFINE([STARPU_SIMGRID_HAVE_XBT_BARRIER_INIT], [1], [Define to 1 if you have the `xbt_barrier_init' function.])])
AC_CHECK_FUNCS([sg_actor_sleep_for sg_actor_self sg_actor_ref sg_host_get_properties sg_host_get_property_names sg_host_send_to sg_host_sendto sg_cfg_set_int sg_actor_self_execute sg_actor_execute simgrid_get_clock])
AC_CHECK_DECLS([smpi_process_set_user_data], [], [], [[#include <smpi/smpi.h>]])
# Oldies for compatibility with older simgrid
AC_CHECK_FUNCS([MSG_get_as_by_name MSG_zone_get_by_name MSG_environment_get_routing_root MSG_host_get_speed])
LIBS="${SAVED_LIBS}"
AC_DEFINE(STARPU_SIMGRID, [1], [Define this to enable simgrid execution])
# We won't bind or detect anything
with_hwloc=no
# disable mpi checks by default, they require static linking, we don't
# want that by default
default_enable_mpi_check=no
# disable MPI support by default
default_enable_mpi=no
AC_LANG_PUSH([C++])
if test x$enable_shared = xno ; then
# When linking statically, libtool does not realize we need libstdc++ for simgrid_cpp.cpp
SIMGRID_LIBS="$SIMGRID_LIBS -lstdc++"
LIBS="$LIBS -lstdc++"
fi
SIMGRID_LDFLAGS="$SIMGRID_LIBS -lsimgrid"
# Simgrid 3.12 & 3.13 need -std=c++11 to be able to build anything in C++...
case \ $CXXFLAGS\ in
*\ -std=*\ *) ;;
*)
# Make sure our C++ compiler can compile simgrid headers
SIMGRID_INCLUDES="
#ifdef STARPU_HAVE_SIMGRID_MSG_H
#include <simgrid/msg.h>
#include <simgrid/host.h>
#elif defined(STARPU_HAVE_MSG_MSG_H)
#include <msg/msg.h>
#endif
#ifdef STARPU_HAVE_XBT_BASE_H
#include <xbt/base.h>
#endif
#ifdef STARPU_HAVE_SIMGRID_VERSION_H
#include <simgrid/version.h>
#endif
#ifdef STARPU_HAVE_SIMGRID_ZONE_H
#include <simgrid/zone.h>
#endif
#ifdef STARPU_HAVE_SIMGRID_HOST_H
#include <simgrid/host.h>
#endif
#include <xbt/xbt_os_time.h>
"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[$SIMGRID_INCLUDES]])],,
CXXFLAGS="-std=c++11 $CXXFLAGS")
;;
esac
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[$SIMGRID_INCLUDES
#include <simgrid/s4u/Engine.hpp>]],
[[simgrid::s4u::Engine::on_time_advance_cb([](double delta) { });]]
)],
AC_DEFINE(STARPU_HAVE_S4U_ON_TIME_ADVANCE_CB, [1], [Define this to 1 when s4u::Engine::on_time_advance_cb is available]))
AC_LANG_POP([C++])
AC_ARG_ENABLE(simgrid-mc, [AS_HELP_STRING([--enable-simgrid-mc],
[Enable using Model Checker of simgrid])],
enable_simgrid_mc=$enableval, enable_simgrid_mc=no)
if test x$enable_simgrid_mc = xyes ; then
AC_DEFINE(STARPU_SIMGRID_MC, [1], [Define this to enable Model Checker in simgrid execution])
AC_PATH_PROG([SIMGRID_MC], [simgrid-mc], [no], [$simgrid_dir/bin:$PATH])
LDFLAGS="$LDFLAGS -Wl,-znorelro -Wl,-znoseparate-code"
# libsimgrid needs to be linked from binaries themselves for MC to work
STARPU_EXPORTED_LIBS="$STARPU_EXPORTED_LIBS $SIMGRID_LDFLAGS"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#ifdef STARPU_HAVE_XBT_BASE_H
#include <xbt/base.h>
#endif
#ifdef STARPU_HAVE_SIMGRID_VERSION_H
#include <simgrid/version.h>
#endif
#if SIMGRID_VERSION < 33100
#error no mutex support with MC
#endif
]])],,
AC_MSG_ERROR([We need simgrid >= 3.31 for MC]))
fi
fi
AM_CONDITIONAL(STARPU_SIMGRID_MC, test x$enable_simgrid_mc = xyes)
AM_CONDITIONAL(STARPU_SIMGRID, test x$enable_simgrid = xyes)
AC_SUBST(SIMGRID_CFLAGS)
AC_SUBST(SIMGRID_LDFLAGS)
AC_MSG_CHECKING(whether SimGrid is enabled)
AC_MSG_RESULT($enable_simgrid)
AC_MSG_CHECKING(whether blocking drivers should be enabled)
AC_ARG_ENABLE(blocking-drivers, [AS_HELP_STRING([--enable-blocking-drivers], [enable blocking drivers])],
enable_blocking=$enableval, enable_blocking=$enable_simgrid)
AC_MSG_RESULT($enable_blocking)
if test x$enable_blocking = xno ; then
if test x$enable_simgrid = xyes ; then
AC_MSG_ERROR([--disable-blocking-drivers cannot be used in simgrid mode])
fi
AC_DEFINE(STARPU_NON_BLOCKING_DRIVERS, [1], [drivers must progress])
fi
if test x$enable_blocking = xyes ; then
AC_MSG_CHECKING(whether worker callbacks should be enabled)
AC_ARG_ENABLE(worker-callbacks, [AS_HELP_STRING([--enable-worker-callbacks], [enable worker callbacks])],
enable_worker_cb=$enableval, enable_worker_cb=no)
AC_MSG_RESULT($enable_worker_cb)
else
# worker sleep/wake-up callbacks only make sense if blocking drivers are enabled
enable_worker_cb=no
fi
if test x$enable_worker_cb = xyes ; then
AC_DEFINE(STARPU_WORKER_CALLBACKS, [1], [workers must call callbacks on sleep/wake-up])
fi
###############################################################################
# #
# LIBTOOLS #
# #
###############################################################################
#c++11 detection
AX_CXX_COMPILE_STDCXX(11,noext,optional)
AC_SUBST([STARPU_HAVE_CXX11], $HAVE_CXX11)
AM_CONDITIONAL([STARPU_HAVE_CXX11], [test "$HAVE_CXX11" -eq 1])
if test $HAVE_CXX11 -eq 1; then
AC_DEFINE(STARPU_HAVE_CXX11, [1], [compiler supports cxx11])
fi
LT_PREREQ([2.2])
LT_INIT([win32-dll])
AC_HEADER_STDC
AC_C_RESTRICT
# Check if bash is available
AC_PATH_PROG([REALBASH], [bash], , [/bin:$PATH])
# Record git version
AC_PATH_PROG(gitcommand, git)
if test -f $srcdir/STARPU-REVISION ; then
cp $srcdir/STARPU-REVISION .
elif test "$gitcommand" = "" ; then
echo "unknown" > ./STARPU-REVISION
else
bdir=$PWD
cd $srcdir
git log -n 1 --pretty="%H%d" . > $bdir/STARPU-REVISION_tmp
cd $bdir
if test -s ./STARPU-REVISION_tmp ; then
mv ./STARPU-REVISION_tmp ./STARPU-REVISION
else
echo "unknown" > ./STARPU-REVISION
fi
fi
AM_CONDITIONAL([STARPU_CROSS_COMPILING], [test "x$cross_compiling" = "xyes"])
###############################################################################
# #
# MPI compilers #
# #
###############################################################################
#Check MPICC
if test x$enable_simgrid = xyes ; then
DEFAULT_MPICC=smpicc
else
DEFAULT_MPICC=mpicc
fi
AC_ARG_WITH(mpicc, [AS_HELP_STRING([--with-mpicc=<mpicc name or path to mpicc>], [Name or path of the mpicc compiler])], [DEFAULT_MPICC=$withval])
case $DEFAULT_MPICC in
/*) mpicc_path="$DEFAULT_MPICC" ;;
*) AC_PATH_PROG(mpicc_path, $DEFAULT_MPICC, [no], [$simgrid_dir/bin:$PATH]) ;;
esac
# We test if the MPICC compiler exists
if test ! -x $mpicc_path; then
AC_MSG_RESULT(The mpicc compiler '$mpicc_path' does not have the execute permission)
mpicc_path=no
fi
AC_MSG_CHECKING(whether mpicc is available)
AC_MSG_RESULT($mpicc_path)
AC_SUBST(MPICC, $mpicc_path)
if test x$mpicc_path != xno ; then
MPIPATH=$(dirname $mpicc_path):$PATH
else
MPIPATH=$PATH
fi
#Check MPICXX/MPIC++
if test x$enable_simgrid = xyes ; then
DEFAULT_MPICXX=smpicxx
else
DEFAULT_MPICXX=mpicxx
fi
AC_ARG_WITH(mpicxx, [AS_HELP_STRING([--with-mpicxx=<mpicxx name or path to mpicxx>], [Name or path of the mpicxx/mpic++ compiler])], [DEFAULT_MPICXX=$withval])
case $DEFAULT_MPICXX in
/*) mpicxx_path="$DEFAULT_MPICXX" ;;
*) AC_PATH_PROG(mpicxx_path, $DEFAULT_MPICXX, [no], [$MPIPATH]) ;;
esac
# try with mpic++ if mpicxx was not found
if test x$mpicxx_path = xno ; then
DEFAULT_MPICXX=mpic++
AC_PATH_PROG(mpicxx_path, $DEFAULT_MPICXX, [no], [$MPIPATH])
fi
# We test if the MPICXX/MPIC++ compiler exists
if test ! -x $mpicxx_path; then
AC_MSG_RESULT(The mpicxx compiler '$mpicxx_path' does not have the execute permission)
mpicxx_path=no
fi
AC_MSG_CHECKING(whether mpicxx is available)
AC_MSG_RESULT($mpicxx_path)
AC_SUBST(MPICXX, $mpicxx_path)
# Check if mpiexec is available
if test x$enable_simgrid = xyes ; then
DEFAULT_MPIEXEC=smpirun
AC_ARG_WITH(smpirun, [AS_HELP_STRING([--with-smpirun[=<name of smpirun or path to smpirun>]], [Name or path of the smpirun helper])], [DEFAULT_MPIEXEC=$withval])
else
DEFAULT_MPIEXEC=mpiexec
AC_ARG_WITH(mpiexec, [AS_HELP_STRING([--with-mpiexec=<name of mpiexec or path to mpiexec>], [Name or path of mpiexec])], [DEFAULT_MPIEXEC=$withval])
fi
case $DEFAULT_MPIEXEC in
/*) mpiexec_path="$DEFAULT_MPIEXEC" ;;
*) AC_PATH_PROG(mpiexec_path, $DEFAULT_MPIEXEC, [no], [$MPIPATH])
esac
AC_MSG_CHECKING(whether mpiexec is available)
AC_MSG_RESULT($mpiexec_path)
# We test if MPIEXEC exists
if test ! -x $mpiexec_path; then
AC_MSG_RESULT(The mpiexec script '$mpiexec_path' is not valid)
default_enable_mpi_check=no
mpiexec_path=""
fi
AC_SUBST(MPIEXEC,$mpiexec_path)
###############################################################################
# #
# MPI #
# #
###############################################################################
AC_ARG_ENABLE(mpi, [AS_HELP_STRING([--disable-mpi],
[Disable StarPU MPI library generation])],
[enable_mpi=$enableval],
[enable_mpi=$default_enable_mpi])
if test x$enable_mpi = xmaybe ; then
if test -x "$mpicc_path"; then
enable_mpi=yes
else
enable_mpi=no
fi
fi
# in case MPI was explicitly required, but mpicc is not available, this is an error
if test x$enable_mpi = xyes ; then
if test ! -x "$mpicc_path"; then
AC_MSG_ERROR([Compiler MPI '$mpicc_path' not valid])
fi
OLD_CC=$CC
CC=$mpicc_path
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[
#include <mpi.h>
#include <mpi-ext.h>
]],,)],
[AC_DEFINE(STARPU_HAVE_MPI_EXT, [1], [<mpi-ext.h> is available])])
AC_CHECK_FUNC([MPI_Comm_create_group], [AC_DEFINE([STARPU_HAVE_MPI_COMM_CREATE_GROUP], [1], [Define to 1 if the function MPI_Comm_create_group is available.])])
CC=$OLD_CC
fi
build_mpi_lib=$enable_mpi
AC_ARG_ENABLE(mpi-minimal-tests, [AS_HELP_STRING([--enable-mpi-minimal-tests],
[Only enable a subset of MPI tests])],
[enable_mpi_minimal_tests=$enableval],
[enable_mpi_minimal_tests=no])
AM_CONDITIONAL([STARPU_MPI_MINIMAL_TESTS], [test x$enable_mpi_minimal_tests = xyes])
###############################################################################
# #
# NEW MADELEINE #
# #
###############################################################################
AC_ARG_ENABLE(nmad, [AS_HELP_STRING([--enable-nmad],
[Enable StarPU MPI library generation using the new madeleine backend])],
[enable_nmad=$enableval],
[enable_nmad=no])
build_nmad_lib=no
AC_SUBST(CC_OR_MPICC, $cc_or_mpicc)
#We can only build StarPU MPI Library if User wants it and MPI is available
if test x$enable_mpi = xyes -a x$enable_nmad = xyes ; then
build_nmad_lib=yes
build_mpi_lib=no
PKG_CHECK_MODULES([NMAD],[nmad])
save_LIBS="$LIBS"
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $NMAD_CFLAGS"
LIBS="$LIBS $NMAD_LIBS"
AC_CHECK_FUNCS([piom_ltask_set_bound_thread_os_indexes])
AC_CHECK_FUNCS([nm_trace_add_synchro_point])
CFLAGS="$save_CFLAGS"
LIBS="$save_LIBS"
else
build_nmad_lib=no
fi
# If MadMPI is used, MadMPI can't be built with PIOman (we don't want communication progression to be done in both StarPU and MadMPI):
if test x$enable_mpi = xyes -a x$build_nmad_lib = xno -a ! -z "`$mpicc_path --showme|grep pioman`"; then
AC_MSG_WARN([Using MPI backend of StarPU with MadMPI built with PIOman: disabling PIOman's progression.])
AC_DEFINE(HAVE_PIOMAN, [1], [PIOman (from PM2) is available])
fi
###############################################################################
# #
# MPI Master Slave #
# #
###############################################################################
AC_ARG_ENABLE(mpi-master-slave, [AS_HELP_STRING([--enable-mpi-master-slave],
[Enable StarPU to run with the master-slave mode])],
use_mpi_master_slave=$enableval,
use_mpi_master_slave=no)
if test x$enable_simgrid = xyes; then
if test x$use_mpi_master_slave = xyes; then
AC_MSG_ERROR([MPI Master Slave not supported with simgrid])
fi
use_mpi_master_slave=no
fi
# in case it is explicitly required, but mpicc is not available, this is an error
if test x$use_mpi_master_slave = xyes -a ! -x "$mpicc_path"; then
AC_MSG_ERROR([Compiler MPI '$mpicc_path' not valid])
fi
#We can only build MPI Master Slave if User wants it and MPI compiler are available
if test x$use_mpi_master_slave = xyes -a x$mpicc_path != xno -a x${mpicxx_path} != xno ; then
build_mpi_master_slave=yes
else
build_mpi_master_slave=no
fi
#users cannot use both at the same time
if test x$build_mpi_master_slave = xyes -a x$enable_mpi = xyes; then
AC_MSG_WARN(StarPU-MPI and MPI Master-Slave cannot be used at the same time ! Disabling StarPU-MPI...)
build_mpi_lib=no
build_nmad_lib=no
enable_mpi=no
fi
if test x$build_mpi_master_slave = xyes; then
AC_DEFINE(STARPU_USE_MPI_MASTER_SLAVE, [1], [MPI Master Slave support is enabled])
CC=$mpicc_path
CCLD=$mpicc_path
CXX=$mpicxx_path
CXXLD=mpicxx_path
fi
AC_MSG_CHECKING(whether the MPI master-slave mode should be enabled)
AC_MSG_RESULT($build_mpi_master_slave)
AM_CONDITIONAL([STARPU_USE_MPI_MASTER_SLAVE], [test x$build_mpi_master_slave = xyes])
AC_MSG_CHECKING(maximum number of MPI master-slave devices)
AC_ARG_ENABLE(maxmpidev, [AS_HELP_STRING([--enable-maxmpidev=<number>],
[maximum number of MPI master-slave devices])],
nmaxmpidev=$enableval,
[
if test x$build_mpi_master_slave = xyes; then
nmaxmpidev=4
else
nmaxmpidev=0
fi
])
if test x$nmaxmpidev = x -o x$nmaxmpidev = xyes
then
AC_MSG_ERROR([The --enable-maxmpidev option needs to be given a number])
fi
AC_MSG_RESULT($nmaxmpidev)
AC_DEFINE_UNQUOTED(STARPU_MAXMPIDEVS, [$nmaxmpidev], [maximum number of MPI devices])
###############################################################################
# #
# TCP/IP Master Slave #
# #
###############################################################################
AC_ARG_ENABLE(tcpip-master-slave, [AS_HELP_STRING([--enable-tcpip-master-slave],
[Enable StarPU to run with the master-slave mode])],
build_tcpip_master_slave=$enableval,
build_tcpip_master_slave=no)
if test x$build_tcpip_master_slave = xyes; then
AC_CHECK_LIB([dl], [dlsym])
AC_DEFINE(STARPU_USE_TCPIP_MASTER_SLAVE, [1], [TCPIP Master Slave support is enabled])
fi
AC_MSG_CHECKING(whether the TCP/IP master-slave mode should be enabled)
AC_MSG_RESULT($build_tcpip_master_slave)
AM_CONDITIONAL([STARPU_USE_TCPIP_MASTER_SLAVE], [test x$build_tcpip_master_slave = xyes])
AC_MSG_CHECKING(maximum number of TCP/IP master-slave devices)
AC_ARG_ENABLE(maxtcpipdev, [AS_HELP_STRING([--enable-maxtcpipdev=<number>],
[maximum number of TCP/IP master-slave devices])],
nmaxtcpipdev=$enableval,
[
if test x$build_tcpip_master_slave = xyes; then
nmaxtcpipdev=4
else
nmaxtcpipdev=0
fi
])
if test x$nmaxtcpipdev = x -o x$nmaxtcpipdev = xyes
then
AC_MSG_ERROR([The --enable-maxtcpipdev option needs to be given a number])
fi
AC_MSG_RESULT($nmaxtcpipdev)
AC_DEFINE_UNQUOTED(STARPU_MAXTCPIPDEVS, [$nmaxtcpipdev], [maximum number of TCP/IP devices])
###############################################################################
# #
# Miscellaneous things for MPI #
# #
###############################################################################
AC_ARG_ENABLE(mpi-pedantic-isend, [AS_HELP_STRING([--enable-mpi-pedantic-isend],
[Prevent StarPU MPI from reading buffers while being sent over MPI])],
enable_mpi_pedantic_isend=$enableval, enable_mpi_pedantic_isend=no)
if test x$enable_mpi_pedantic_isend = xyes; then
AC_DEFINE(STARPU_MPI_PEDANTIC_ISEND, [1], [enable StarPU MPI pedantic isend])
fi
# If the user specifically asks for it, or if we are in a developer checkout, we enable mpi check
if test -d "$srcdir/.git" -o -f "$srcdir/.git" ; then
default_enable_mpi_check=$enable_mpi
fi
AC_ARG_ENABLE(mpi-check, AC_HELP_STRING([--enable-mpi-check], [Enable execution of MPI testcases]),
[enable_mpi_check=$enableval], [enable_mpi_check=$default_enable_mpi_check])
running_mpi_check=no
if test x$enable_mpi_check = xyes ; then
running_mpi_check=yes
if test x$enable_mpi = xno ; then
AC_MSG_ERROR([MPI checks requested, but MPI is disabled])
fi
fi
if test x$enable_mpi_check = xmaybe ; then
running_mpi_check=yes
fi
if test x$enable_mpi_check = xno ; then
running_mpi_check=no
fi
if test x$enable_mpi = xno ; then
running_mpi_check=no
fi
AM_CONDITIONAL(STARPU_MPI_CHECK, test x$running_mpi_check = xyes)
AC_MSG_CHECKING(whether MPI tests should be run)
AC_MSG_RESULT($running_mpi_check)
AC_MSG_CHECKING(whether the StarPU MPI library should be generated)
AC_MSG_RESULT($build_mpi_lib)
AC_MSG_CHECKING(whether the StarPU MPI nmad library should be generated)
AC_MSG_RESULT($build_nmad_lib)
if test x$build_mpi_lib = xyes -o x$build_nmad_lib = xyes ; then
AC_DEFINE(STARPU_USE_MPI,[1],[whether the StarPU MPI library is available])
if test x$build_mpi_lib = xyes ; then
AC_DEFINE(STARPU_USE_MPI_MPI,[1],[whether the StarPU MPI library (with a native MPI implementation) is available])
else
AC_DEFINE(STARPU_USE_MPI_NMAD,[1],[whether the StarPU MPI library (with a NewMadeleine implementation) is available])
fi
fi
if test x$enable_mpi = xyes ; then
if test x$enable_simgrid = xyes ; then
if test x$enable_shared = xyes ; then
AC_MSG_ERROR([MPI with simgrid can not work with shared libraries, if you need the MPI support, then use --disable-shared to fix this, else disable MPI with --disable-mpi])
else
CFLAGS="$CFLAGS -fPIC"
CXXFLAGS="$CXXFLAGS -fPIC"
NVCCFLAGS="$NVCCFLAGS --compiler-options -fPIC"
HIPCCFLAGS="$HIPCCFLAGS --compiler-options -fPIC"
FFLAGS="$FFLAGS -fPIC"
FCLAGS="$FFLAGS -fPIC"
fi
fi
enable_mpi_sync_clocks=no
PKG_CHECK_MODULES([MPI_SYNC_CLOCKS],[mpi_sync_clocks],[enable_mpi_sync_clocks=yes],[enable_mpi_sync_clocks=no])
if test x$enable_mpi_sync_clocks = xyes ; then
AC_DEFINE(STARPU_HAVE_MPI_SYNC_CLOCKS, [1], [Define to 1 if you have mpi_sync_clocks and it is meant to be used])
fi
fi
AM_CONDITIONAL(STARPU_MPI_SYNC_CLOCKS, test x$enable_mpi_sync_clocks = xyes)
AM_CONDITIONAL(STARPU_USE_MPI_MPI, test x$build_mpi_lib = xyes)
AM_CONDITIONAL(STARPU_USE_MPI_NMAD, test x$build_nmad_lib = xyes)
AM_CONDITIONAL(STARPU_USE_MPI, test x$build_nmad_lib = xyes -o x$build_mpi_lib = xyes)
###### Failure tolerance material #######
default_enable_mpi_ft=no
AC_ARG_ENABLE(mpi-ft, AC_HELP_STRING([--enable-mpi-ft], [Enable failure tolerance mechanisms provided by StarPU]),
[enable_mpi_ft=$enableval], [enable_mpi_ft=$default_enable_mpi_ft])
default_enable_mpi_ft_stats=no
use_mpi_ft_stats=no
AC_ARG_ENABLE(mpi-ft-stats, AC_HELP_STRING([--enable-mpi-ft-stats], [Enable stats for failure tolerance mechanisms]),
[enable_mpi_ft_stats=$enableval], [enable_mpi_ft_stats=$default_enable_mpi_ft_stats])
# TODO: Check MPI version to be ULFM
if test x$enable_mpi_ft = xyes ; then
if test x$build_mpi_lib != xyes ; then
AC_MSG_ERROR([Failure tolerance mechanisms only work with a particular MPI implementation: ULFM (OpenMPI based).])
else
AC_DEFINE(STARPU_USE_MPI_FT, [1], [whether the StarPU MPI failure tolerance mechanisms are requested])
use_mpi_ft=yes;
if test x$enable_mpi_ft_stats = xyes ; then
AC_DEFINE(STARPU_USE_MPI_FT_STATS, [1], [whether the StarPU MPI failure tolerance mechanisms stats are watched])
use_mpi_ft_stats=$enable_mpi_ft_stats;
fi
fi
fi
AM_CONDITIONAL(STARPU_USE_MPI_FT, [test x$use_mpi_ft = xyes])
AM_CONDITIONAL(STARPU_USE_MPI_FT_STATS, [test x$use_mpi_ft_stats = xyes])
###### End of failure tolerance material ######
AC_ARG_WITH(mpiexec-args, [AS_HELP_STRING([--with-mpiexec-args[=<arguments to give when running mpiexec>]],
[Arguments for mpiexec])],
[
mpiexec_args=$withval
])
AC_SUBST(MPIEXEC_ARGS,$mpiexec_args)
AC_MSG_CHECKING(whether MPI debug messages should be displayed)
AC_ARG_ENABLE(mpi-verbose, [AS_HELP_STRING([--enable-mpi-verbose],
[display MPI verbose debug messages (--enable-mpi-verbose=extra increase the verbosity)])],
enable_mpi_verbose=$enableval, enable_mpi_verbose=no)
AC_MSG_RESULT($enable_mpi_verbose)
if test x$enable_mpi_verbose = xyes; then
AC_DEFINE(STARPU_MPI_VERBOSE, [1], [display MPI verbose debug messages])
fi
if test x$enable_mpi_verbose = xextra; then
AC_DEFINE(STARPU_MPI_VERBOSE, [1], [display MPI verbose debug messages])
AC_DEFINE(STARPU_MPI_EXTRA_VERBOSE, [1], [display MPI verbose debug messages])
fi
if test x$enable_mpi = xyes -o x$build_mpi_master_slave = xyes ; then
cc_or_mpicc=$mpicc_path
# For some reason, libtool uses gcc instead of mpicc when linking
# libstarpumpi.
# On Darwin (and maybe other systems ?) the linker will fail (undefined
# references to MPI_*). We manually add the required flags to fix this
# issue.
# openmpi version
MPICC_LDFLAGS=`$mpicc_path --showme:link 2>/dev/null`
if test -z "$MPICC_LDFLAGS"
then
# mpich version
MPICC_LDFLAGS=`$mpicc_path -link_info | awk '{$1=""; print}'`
fi
AC_SUBST(MPICC_LDFLAGS)
else
cc_or_mpicc=$CC
fi
AC_SUBST(CC_OR_MPICC, $cc_or_mpicc)
###############################################################################
# #
# NUMA memory nodes #
# #
###############################################################################
default_nmaxnumanodes=2
AC_PATH_PROG(hwloccalccommand, hwloc-calc)
AC_MSG_CHECKING(maximum number of NUMA nodes)
AC_ARG_ENABLE(maxnumanodes, [AS_HELP_STRING([--enable-maxnumanodes=<number>],
[maximum number of NUMA nodes])],
nmaxnumanodes=$enableval, nmaxnumanodes=auto)
if test x$nmaxnumanodes = xauto
then
if test "$hwloccalccommand" = ""; then
AC_MSG_WARN([hwloc-calc not available to automatically get the number of NUMA nodes, using the default value: $default_nmaxnumanodes])
nmaxnumanodes=$default_nmaxnumanodes
else
nmaxnumanodes=$($hwloccalccommand all -N node 2>/dev/null)
if test x$nmaxnumanodes = x; then
AC_MSG_WARN([hwloc-calc could not get the number of NUMA nodes, using the default value: $default_nmaxnumanodes])
nmaxnumanodes=$default_nmaxnumanodes
fi
fi
fi
if test x$nmaxnumanodes = x -o x$nmaxnumanodes = xyes
then
AC_MSG_ERROR([The --enable-maxnumanodes option needs to be given a number])
fi
AC_MSG_RESULT($nmaxnumanodes)
AC_DEFINE_UNQUOTED(STARPU_MAXNUMANODES, [$nmaxnumanodes],
[maximum number of NUMA nodes])
###############################################################################
AC_PATH_PROGS([STARPU_MS_LIB], [lib])
AC_ARG_VAR([STARPU_MS_LIB], [Path to Microsoft's Visual Studio `lib' tool])
AM_CONDITIONAL([STARPU_HAVE_MS_LIB], [test "x$STARPU_MS_LIB" != "x"])
case "$target" in
*-*-mingw*|*-*-cygwin*|*-*-msys*)
starpu_windows=yes
libext=a
STARPU_EXPORTED_LIBS="$STARPU_EXPORTED_LIBS -lwsock32"
AC_DEFINE(STARPU_HAVE_WINDOWS, [1], [Define this on windows.])
;;
*-*-linux*)
starpu_linux=yes
AC_DEFINE(STARPU_LINUX_SYS, [1], [Define to 1 on Linux])
;;
*-*-openbsd*)
starpu_openbsd=yes
AC_DEFINE(STARPU_OPENBSD_SYS, [1], [Define to 1 on OpenBSD systems])
;;
*-*darwin*)
starpu_darwin=yes
AC_DEFINE(STARPU_HAVE_DARWIN, [1], [Define this on darwin.])
;;
esac
AM_CONDITIONAL([STARPU_HAVE_WINDOWS], [test "x$starpu_windows" = "xyes"])
AM_CONDITIONAL([STARPU_LINUX_SYS], [test "x$starpu_linux" = "xyes"])
AM_CONDITIONAL([STARPU_HAVE_DARWIN], [test "x$starpu_darwin" = "xyes"])
AM_CONDITIONAL([STARPU_OPENBSD_SYS], [test "x$starpu_openbsd" = "xyes"])
# on Darwin, GCC targets i386 by default, so we don't have atomic ops
AC_CHECK_SIZEOF([void *])
SIZEOF_VOID_P=$ac_cv_sizeof_void_p
case $SIZEOF_VOID_P in
4)
case "$target" in
i386-*darwin*) CFLAGS="$CFLAGS -march=i686" ;;
esac
STARPU_MS_LIB_ARCH=X86
;;
8)
STARPU_MS_LIB_ARCH=X64
;;
esac
AC_SUBST(STARPU_MS_LIB_ARCH)
# This will be useful for program which use CUDA (and .cubin files) which need
# some path to the CUDA code at runtime.
AC_DEFINE_UNQUOTED(STARPU_BUILD_DIR, "$PWD", [location of StarPU build directory])
AC_SUBST(STARPU_BUILD_DIR, $PWD)
case "${srcdir}" in
/*) AC_DEFINE_UNQUOTED(STARPU_SRC_DIR, "$(eval echo ${srcdir})", [location of StarPU sources])
AC_SUBST(STARPU_SRC_DIR, "$(eval echo ${srcdir})") ;;
*) AC_DEFINE_UNQUOTED(STARPU_SRC_DIR, "$(eval echo $PWD/${srcdir})", [location of StarPU sources])
AC_SUBST(STARPU_SRC_DIR, "$(eval echo $PWD/${srcdir})") ;;
esac
case "$target" in
*-*-mingw*|*-*-cygwin*)
AC_ARG_ENABLE(native-winthreads, [AS_HELP_STRING([--enable-native-winthreads],
[Use native windows threads instead of pthread])],
enable_native_winthreads=$enableval, enable_native_winthreads=no)
;;
esac
if test x"$enable_native_winthreads" != xyes ; then
INCLUDE_PTHREAD_H='#include <pthread.h>'
fi
AC_CHECK_HEADERS([unistd.h], [AC_DEFINE([STARPU_HAVE_UNISTD_H], [1], [Define to 1 if you have the <unistd.h> header file.])])
AC_CHECK_TYPE([struct timespec],
AC_DEFINE(STARPU_HAVE_STRUCT_TIMESPEC,[1],[struct timespec is defined]),
[], [
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <time.h>
$INCLUDE_PTHREAD_H
])
if test x"$enable_native_winthreads" = xyes ; then
CPPFLAGS="$CPPFLAGS -I$STARPU_SRC_DIR/include/pthread_win32"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[
#define STARPU_CONFIGURE
#include <pthread.h>
]],
[[ pthread_t t; pthread_create(&t, NULL, NULL, NULL); ]])],
AC_DEFINE(STARPU_NATIVE_WINTHREADS,[1],[Using native windows threads]),
AC_MSG_ERROR([pthread_create unavailable]))
else
AC_CHECK_LIB([pthread], [pthread_create], [
LIBS="$LIBS -lpthread"
STARPU_EXPORTED_LIBS="$STARPU_EXPORTED_LIBS -lpthread"
])
fi
AC_SEARCH_LIBS([sqrt],[m],,AC_MSG_ERROR([math library unavailable]))
AC_HAVE_LIBRARY([ws2_32])
AC_CHECK_FUNCS([sysconf])
AC_CHECK_FUNCS([getrlimit])
AC_CHECK_FUNCS([scandir])
AC_CHECK_FUNC([pthread_spin_lock], have_pthread_spin_lock=yes, have_pthread_spin_lock=no)
if test x$have_pthread_spin_lock = xyes; then
AC_DEFINE(HAVE_PTHREAD_SPIN_LOCK,[1],[pthread_spin_lock is available])
AC_DEFINE(STARPU_HAVE_PTHREAD_SPIN_LOCK,[1],[pthread_spin_lock is available])
fi
AC_CHECK_FUNC([pthread_barrier_init], have_pthread_barrier=yes, have_pthread_barrier=no)
if test x$have_pthread_barrier = xyes; then
AC_DEFINE(STARPU_HAVE_PTHREAD_BARRIER,[1],[pthread_barrier is available])
fi
# yes, that's non portable, but it's still better than sched_setaffinity
AC_CHECK_FUNCS(pthread_setaffinity_np)
AC_CHECK_FUNC([pthread_setname_np], have_pthread_setname_np=yes, have_pthread_setname_np=no)
if test x$have_pthread_setname_np = xyes; then
AC_DEFINE(STARPU_HAVE_PTHREAD_SETNAME_NP,[1],[pthread_setname_np is available])
fi
if test "x$cross_compiling" = "xno"; then
STARPU_INIT_ZERO([[#include <pthread.h>]], pthread_mutex_t, PTHREAD_MUTEX_INITIALIZER)
STARPU_INIT_ZERO([[#include <pthread.h>]], pthread_cond_t, PTHREAD_COND_INITIALIZER)
STARPU_INIT_ZERO([[#include <pthread.h>]], pthread_rwlock_t, PTHREAD_RWLOCK_INITIALIZER)
fi
# There is no posix_memalign on Mac OS X, only memalign
AC_CHECK_FUNCS([posix_memalign], [AC_DEFINE([STARPU_HAVE_POSIX_MEMALIGN], [1], [Define to 1 if you have the `posix_memalign' function.])])
AC_CHECK_FUNCS([memalign], [AC_DEFINE([STARPU_HAVE_MEMALIGN], [1], [Define to 1 if you have the `memalign' function.])])
# Some systems don't have drand48
AC_CHECK_FUNC([drand48], have_drand48=yes, have_drand48=no)
AC_CHECK_FUNC([erand48_r], have_erand48_r=yes, have_erand48_r=no)
# Maybe the user still does not want to use the provided drand48
AC_ARG_ENABLE(default-drand48, [AS_HELP_STRING([--disable-default-drand48],
[Do not use the default version of drand48])],
enable_default_drand48=$enableval, enable_default_drand48=yes)
if test x$have_drand48 = xyes -a x$enable_default_drand48 = xyes ; then
AC_DEFINE([STARPU_USE_DRAND48], [1], [Define to 1 if drandr48 is available and should be used])
fi
if test x$have_erand48_r = xyes ; then
AC_DEFINE([STARPU_USE_ERAND48_R], [1], [Define to 1 if erandr48_r is available])
fi
# Some systems do not define strerror_r
AC_CHECK_FUNC([strerror_r], [AC_DEFINE([STARPU_HAVE_STRERROR_R], [1], [Define to 1 if the function strerro_r is available.])])
# Some systems may not define setenv
AC_CHECK_FUNC([setenv], [AC_DEFINE([STARPU_HAVE_SETENV], [1], [Define to 1 if the function setenv is available.])])
# Some systems do not define unsetenv
AC_CHECK_FUNC([unsetenv], [AC_DEFINE([STARPU_HAVE_UNSETENV], [1], [Define to 1 if the function unsetenv is available.])])
# Some systems do not define nearbyintf...
AC_CHECK_FUNC([nearbyintf], [AC_DEFINE([STARPU_HAVE_NEARBYINTF], [1], [Define to 1 if the function nearbyintf is available.])])
# ... but they may define rintf.
AC_CHECK_FUNC([rintf], [AC_DEFINE([STARPU_HAVE_RINTF], [1], [Define to 1 if the function rintf is available.])])
# Define quick check
AC_ARG_ENABLE(quick-check, [AS_HELP_STRING([--enable-quick-check],
[Lower default values for the testcases run by make check to allow a faster execution])],
enable_quick_check=$enableval, enable_quick_check=no)
if test x$enable_quick_check = xyes; then
AC_DEFINE(STARPU_QUICK_CHECK, [1], [enable quick check])
fi
AM_CONDITIONAL([STARPU_QUICK_CHECK], [test "x$enable_quick_check" = "xyes"])
# Define long check
AC_ARG_ENABLE(long-check, [AS_HELP_STRING([--enable-long-check],
[Enable some exhaustive checks which take a really long time])],
enable_long_check=$enableval, enable_long_check=no)
if test x$enable_long_check = xyes; then
AC_DEFINE(STARPU_LONG_CHECK, [1], [enable long check])
fi
AM_CONDITIONAL([STARPU_LONG_CHECK], [test "x$enable_long_check" = "xyes"])
# Define new check
AC_ARG_ENABLE(new-check, [AS_HELP_STRING([--enable-new-check],
[Enable new and known-to-fail testcases])],
enable_new_check=$enableval, enable_new_check=no)
if test x$enable_new_check = xyes; then
AC_DEFINE(STARPU_NEW_CHECK, [1], [enable new check])
fi
AM_CONDITIONAL([STARPU_NEW_CHECK], [test "x$enable_new_check" = "xyes"])
AC_CHECK_HEADERS([malloc.h], [AC_DEFINE([STARPU_HAVE_MALLOC_H], [1], [Define to 1 if you have the <malloc.h> header file.])])
AC_ARG_ENABLE(valgrind, [AS_HELP_STRING([--disable-valgrind],
[Do not check the availability of valgrind.h and helgrind.h])],
enable_valgrind=$enableval, enable_valgrind=yes)
if test "$enable_valgrind" != "no" ; then
AC_CHECK_HEADERS([valgrind/valgrind.h], [AC_DEFINE([STARPU_HAVE_VALGRIND_H], [1], [Define to 1 if you have the <valgrind/valgrind.h> header file.])])
AC_CHECK_HEADERS([valgrind/memcheck.h], [AC_DEFINE([STARPU_HAVE_MEMCHECK_H], [1], [Define to 1 if you have the <valgrind/memcheck.h> header file.])])
AC_CHECK_HEADERS([valgrind/helgrind.h], [AC_DEFINE([STARPU_HAVE_HELGRIND_H], [1], [Define to 1 if you have the <valgrind/helgrind.h> header file.])])
fi
if test "$enable_valgrind" = "full" ; then
AC_DEFINE([STARPU_VALGRIND_FULL], [1], [Define to 1 to disable STARPU_SKIP_IF_VALGRIND when running tests.])
fi
AC_CHECK_FUNC([sched_yield], [AC_DEFINE([STARPU_HAVE_SCHED_YIELD], [1], [Define to 1 if the function sched_yield is available.])])
AC_CHECK_HEADERS([aio.h])
AC_CHECK_LIB([rt], [aio_read])
#AC_CHECK_HEADERS([libaio.h])
#AC_CHECK_LIB([aio], [io_setup])
AC_CHECK_FUNCS([copy_file_range])
AC_CHECK_FUNCS([mkostemp])
AC_CHECK_FUNCS([mkdtemp])
AC_CHECK_FUNCS([pread pwrite])
# Depending on the user environment, the hdf5 library may link against some
# mpi implementation, and bring surprising runtime behavior.
AC_ARG_ENABLE(hdf5, [AS_HELP_STRING([--enable-hdf5], [enable HDF5 support])],
enable_hdf5=$enableval, enable_hdf5=no)
if test "x$enable_hdf5" != xno ; then
AC_ARG_WITH(hdf5-include-dir,
[AS_HELP_STRING([--with-hdf5-include-dir=<path>],
[specify where HDF5 headers are installed])],
[
hdf5_include_dir="$withval"
], [hdf5_include_dir=""])
hdf5_inc_dir="/usr/include/hdf5 /usr/include/hdf5/serial ${hdf5_include_dir}"
enable_include_hdf5=no
for f in $hdf5_inc_dir; do
if test -n "$f" ; then
SAVED_CPPFLAGS="${CPPFLAGS}"
CPPFLAGS="$CPPFLAGS -I$f"
AC_CHECK_HEADERS([hdf5.h])
if test "$ac_cv_header_hdf5_h" = "yes" ; then
CPPFLAGS="-I${f} ${SAVED_CFLAGS}"
enable_include_hdf5=yes
break
else
CPPFLAGS=${SAVED_CPPFLAGS}
fi
unset ac_cv_header_hdf5_h
fi
done
AC_ARG_WITH(hdf5-lib-dir,
[AS_HELP_STRING([--with-hdf5-lib-dir=<path>],
[specify where HDF5 libraries are installed])],
[
hdf5_libraries_dir="$withval"
], [hdf5_libraries_dir=""])
hdf5_lib_dir="/usr/lib/x86_64-linux-gnu/hdf5 /usr/lib/x86_64-linux-gnu/hdf5/serial ${hdf5_libraries_dir}"
enable_libraries_hdf5=no
for f in $hdf5_lib_dir; do
if test -n "$f" ; then
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS=-L${f}
STARPU_HAVE_LIBRARY(HDF5, [hdf5])
if test "$ac_cv_lib_hdf5_main" = "yes" ; then
LDFLAGS="-L${f} ${SAVED_LDFLAGS} ${STARPU_HDF5_LDFLAGS}"
enable_libraries_hdf5=yes
break
else
LDFLAGS=${SAVED_LDFLAGS}
fi
unset ac_cv_lib_hdf5_main
fi
done
fi
if test "x$enable_libraries_hdf5" = "xyes" -a "x$enable_include_hdf5" = "xyes" -a "x$enable_hdf5" != "xno"; then
AC_DEFINE([STARPU_HAVE_HDF5], [1], [Define to 1 if you have the <hdf5.h> header file.])
enable_hdf5=yes
else
enable_hdf5=no
fi
AM_CONDITIONAL(STARPU_HAVE_HDF5, test "x$enable_hdf5" = "xyes")
# This defines HAVE_SYNC_VAL_COMPARE_AND_SWAP
STARPU_CHECK_SYNC_VAL_COMPARE_AND_SWAP
STARPU_CHECK_SYNC_VAL_COMPARE_AND_SWAP_8
# This defines HAVE_SYNC_BOOL_COMPARE_AND_SWAP
STARPU_CHECK_SYNC_BOOL_COMPARE_AND_SWAP
STARPU_CHECK_SYNC_BOOL_COMPARE_AND_SWAP_8
# This defines HAVE_SYNC_FETCH_AND_ADD
STARPU_CHECK_SYNC_FETCH_AND_ADD
STARPU_CHECK_SYNC_FETCH_AND_ADD_8
# This defines HAVE_SYNC_FETCH_AND_OR
STARPU_CHECK_SYNC_FETCH_AND_OR
STARPU_CHECK_SYNC_FETCH_AND_OR_8
# This defines HAVE_SYNC_LOCK_TEST_AND_SET
STARPU_CHECK_SYNC_LOCK_TEST_AND_SET
# This defines HAVE_ATOMIC_COMPARE_EXCHANGE_N
STARPU_CHECK_ATOMIC_COMPARE_EXCHANGE_N
STARPU_CHECK_ATOMIC_COMPARE_EXCHANGE_N_8
# This defines HAVE_ATOMIC_EXCHANGE_N
STARPU_CHECK_ATOMIC_EXCHANGE_N
STARPU_CHECK_ATOMIC_EXCHANGE_N_8
# This defines HAVE_ATOMIC_FETCH_ADD
STARPU_CHECK_ATOMIC_FETCH_ADD
STARPU_CHECK_ATOMIC_FETCH_ADD_8
# This defines HAVE_ATOMIC_FETCH_OR
STARPU_CHECK_ATOMIC_FETCH_OR
STARPU_CHECK_ATOMIC_FETCH_OR_8
# This defines HAVE_ATOMIC_TEST_AND_SET
STARPU_CHECK_ATOMIC_TEST_AND_SET
# This defines HAVE_SYNC_SYNCHRONIZE
STARPU_CHECK_SYNC_SYNCHRONIZE
CPPFLAGS="${CPPFLAGS} -D_GNU_SOURCE "
STARPU_SEARCH_LIBS([LIBNUMA],[set_mempolicy],[numa],[enable_libnuma=yes],[enable_libnuma=no])
AC_MSG_CHECKING(whether libnuma is available)
AC_MSG_RESULT($enable_libnuma)
if test x$enable_libnuma = xyes; then
AC_DEFINE(STARPU_HAVE_LIBNUMA,[1],[libnuma is available])
fi
AC_MSG_CHECKING(whether statement expressions are available)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
]],
[[ int x=maxint(12,42); ]])],
[statement_expressions="yes"],
[statement_expressions="no"])
AC_MSG_RESULT($statement_expressions)
if test x$statement_expressions = xyes; then
AC_DEFINE(STARPU_HAVE_STATEMENT_EXPRESSIONS,[1],[statement expressions are available])
fi
saved_LIBS="${LIBS}"
LIBS="${LIBS} -ldl"
STARPU_DLOPEN_LDFLAGS=""
AC_CHECK_FUNCS([dlopen], [STARPU_DLOPEN_LDFLAGS="-ldl"])
LIBS="$saved_LIBS"
###############################################################################
# #
# SCHED_CTX settings #
# #
###############################################################################
AC_MSG_CHECKING(maximum number of sched_ctxs)
AC_ARG_ENABLE(max_sched_ctxs, [AS_HELP_STRING([--enable-max-sched-ctxs=<number>],
[maximum number of sched_ctxs])],
max_sched_ctxs=$enableval, max_sched_ctxs=10)
if test x$max_sched_ctxs = x -o x$max_sched_ctxs = xyes
then
AC_MSG_ERROR([The --enable-max_sched_ctxs option needs to be given a number])
fi
AC_MSG_RESULT($max_sched_ctxs)
AC_DEFINE_UNQUOTED(STARPU_NMAX_SCHED_CTXS, [$max_sched_ctxs], [Maximum number of sched_ctxs supported])
AC_ARG_ENABLE([sc_hypervisor],
[AS_HELP_STRING([--enable-sc-hypervisor],
[enable resizing contexts (experimental)])],
[enable_sc_hypervisor="yes"],
[enable_sc_hypervisor="no"])
#for pkgconfig
AC_SUBST(STARPU_SC_HYPERVISOR)
if test "x$enable_sc_hypervisor" = "xyes"; then
AC_DEFINE(STARPU_USE_SC_HYPERVISOR, [1], [enable sc_hypervisor lib])
# PKG_CHECK_MODULES([SC_HYPERVISOR], [libsc_hypervisor], [], build_sc_hypervisor="yes")
STARPU_SC_HYPERVISOR="-lsc_hypervisor"
build_sc_hypervisor="yes"
else
build_sc_hypervisor="no"
fi
AM_CONDITIONAL([STARPU_BUILD_SC_HYPERVISOR], [test "x$build_sc_hypervisor" = "xyes"])
AM_CONDITIONAL([STARPU_USE_SC_HYPERVISOR], [test "x$build_sc_hypervisor" = "xyes"])
AC_ARG_ENABLE([sc_hypervisor_debug],
[AS_HELP_STRING([--enable-sc-hypervisor-debug],
[enable debug for resizing contexts (experimental)])],
[enable_sc_hypervisor_debug="yes"],
[enable_sc_hypervisor_debug="no"])
AC_SUBST(STARPU_SC_HYPERVISOR_DEBUG, $enable_sc_hypervisor_debug)
AM_CONDITIONAL([STARPU_SC_HYPERVISOR_DEBUG], [test "x$enable_sc_hypervisor_debug" = "xyes"])
if test "x$enable_sc_hypervisor_debug" = "xyes"; then
AC_DEFINE(STARPU_SC_HYPERVISOR_DEBUG, [1], [enable debug sc_hypervisor])
fi
###############################################################################
# #
# CPUs settings #
# #
###############################################################################
AC_MSG_CHECKING(maximum number of CPUs)
AC_ARG_ENABLE(maxcpus, [AS_HELP_STRING([--enable-maxcpus=<number>],
[maximum number of CPUs])],
maxcpus=$enableval, maxcpus=auto)
if test x$maxcpus = xauto
then
confcpu=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
if test x$confcpu = x
then
AC_MSG_ERROR([cannot get the number of CPUS, please specify a numerical value with --enable-maxcpus])
fi
maxcpus=2
while test $maxcpus -lt $confcpu
do
maxcpus=`expr $maxcpus \* 2`
done
fi
if test x$maxcpus = x -o x$maxcpus = xyes
then
AC_MSG_ERROR([The --enable-maxcpus option needs to be given a number])
fi
AC_MSG_RESULT($maxcpus)
AC_DEFINE_UNQUOTED(STARPU_MAXCPUS, [$maxcpus], [Maximum number of CPUs supported])
AC_MSG_CHECKING(whether CPUs should be used)
AC_ARG_ENABLE(cpu, [AS_HELP_STRING([--disable-cpu],
[do not use the CPU(s)])],
enable_cpu=$enableval, enable_cpu=yes)
AC_MSG_RESULT($enable_cpu)
AC_SUBST(STARPU_USE_CPU, $enable_cpu)
AM_CONDITIONAL(STARPU_USE_CPU, test x$enable_cpu = xyes)
if test x$enable_cpu = xyes; then
AC_DEFINE(STARPU_USE_CPU, [1], [CPU driver is activated])
fi
###############################################################################
# #
# CUDA settings #
# #
###############################################################################
AC_MSG_CHECKING(maximum number of CUDA devices)
AC_ARG_ENABLE(maxcudadev, [AS_HELP_STRING([--enable-maxcudadev=<number>],
[maximum number of CUDA devices])],
nmaxcudadev=$enableval, nmaxcudadev=4)
if test x$nmaxcudadev = x -o x$nmaxcudadev = xyes
then
AC_MSG_ERROR([The --enable-maxcudadev option needs to be given a number])
fi
AC_MSG_RESULT($nmaxcudadev)
AC_DEFINE_UNQUOTED(STARPU_MAXCUDADEVS, [$nmaxcudadev],
[maximum number of CUDA devices])
AC_ARG_ENABLE(cuda, [AS_HELP_STRING([--disable-cuda],
[do not use CUDA device(s)])],, [enable_cuda=maybe])
# We don't want to be hit by conflicts between simgrid, boost, and CUDA
if test x$enable_simgrid = xyes; then
if test x$enable_cuda = xyes; then
AC_MSG_ERROR([Building against CUDA should not be enabled with simgrid])
fi
enable_cuda=no
fi
#AC_MSG_CHECKING(whether CUDA is available)
AC_ARG_WITH(cuda-dir,
[AS_HELP_STRING([--with-cuda-dir=<path>],
[specify CUDA installation directory])],
[
cuda_dir="$withval"
# in case this was not explicit yet
enable_cuda=yes
], cuda_dir=no)
AC_ARG_WITH(cuda-include-dir,
[AS_HELP_STRING([--with-cuda-include-dir=<path>],
[specify where CUDA headers are installed])],
[
cuda_include_dir="$withval"
# in case this was not explicit yet
enable_cuda=yes
], [cuda_include_dir=no])
AC_ARG_WITH(cuda-lib-dir,
[AS_HELP_STRING([--with-cuda-lib-dir=<path>],
[specify where CUDA libraries are installed])],
[
cuda_lib_dir="$withval"
# in case this was not explicit yet
enable_cuda=yes
], [cuda_lib_dir=no])
AC_DEFUN([STARPU_CHECK_CUDA_L],
[
__cuda_L=$1
SAVED_LDFLAGS="${LDFLAGS}"
STARPU_CUDA_LDFLAGS="${__cuda_L}"
AC_MSG_CHECKING(whether CUDA library is available in $__cuda_L)
AC_MSG_RESULT()
LDFLAGS="${SAVED_LDFLAGS} ${__cuda_L}"
AC_HAVE_LIBRARY([cudart],[have_valid_cuda=yes],[have_valid_cuda=no])
unset ac_cv_lib_cudart_main
if test "$have_valid_cuda" = yes ; then
LDFLAGS="${SAVED_LDFLAGS} ${STARPU_CUDA_LDFLAGS}"
# we also check that CUBLAS is available
AC_HAVE_LIBRARY([cublas],[have_valid_cuda=yes],[have_valid_cuda=no])
unset ac_cv_lib_cublas_main
fi
LDFLAGS="${SAVED_LDFLAGS}"
])
AC_DEFUN([STARPU_CHECK_CUDA],
[
__cuda_dir=$1
__cuda_include_dir=$2
__cuda_lib_dir=$3
if test -z "$__cuda_lib_dir" ; then
__cuda_lib_dir=no
fi
if test -z "$__cuda_include_dir" ; then
__cuda_include_dir=no
fi
if test -z "$__cuda_dir" ; then
__cuda_dir=no
fi
if test "$__cuda_dir" != "no" ; then
AC_MSG_CHECKING(whether CUDA is available in $__cuda_dir, $__cuda_include_dir and $__cuda_lib_dir)
else
AC_MSG_CHECKING(whether CUDA is available)
fi
AC_MSG_RESULT()
if test "$__cuda_include_dir" = "no" -a "$__cuda_dir" != "no" ; then
__cuda_include_dir="$__cuda_dir/include"
fi
SAVED_CPPFLAGS="$CPPFLAGS"
have_valid_cuda=no
if test "$__cuda_include_dir" != "no" ; then
CPPFLAGS="${CPPFLAGS} -I$__cuda_include_dir"
fi
AC_CHECK_HEADER([cuda.h],[have_valid_cuda=yes],[have_valid_cuda=no])
unset ac_cv_header_cuda_h
if test "$have_valid_cuda" = "yes" ; then
if test "$__cuda_lib_dir" != "no" ; then
STARPU_CHECK_CUDA_L("-L${__cuda_lib_dir}")
else
if test "$__cuda_dir" != "no" ; then
for __cuda_libdir in lib64 lib lib/x64 lib/Win32 ; do
STARPU_CHECK_CUDA_L("-L${__cuda_dir}/${__cuda_libdir}")
if test "$have_valid_cuda" = yes ; then
break
fi
done
else
STARPU_CHECK_CUDA_L("")
fi
fi
fi
if test "$have_valid_cuda" = "no" ; then
CPPFLAGS="${SAVED_CPPFLAGS}"
unset STARPU_CUDA_LDFLAGS
else
if test "$NVCC" = "" ; then
AC_PATH_PROG([NVCC], [nvcc], [not-found],
[$cuda_dir/bin:$PATH:/usr/local/cuda/bin:/usr/bin:/bin])
fi
if test "x$NVCC" = "xnot-found"; then
AC_MSG_WARN(['nvcc' not found, disabling CUDA])
have_valid_cuda=no
else
# This is for very old cuda, to enable the use of double etc.
AC_MSG_CHECKING(whether nvcc supports sm_13 architecture)
OLD_NVCCFLAGS="$NVCCFLAGS"
NVCCFLAGS="$NVCCFLAGS -arch sm_13"
echo "int main(int argc, char **argv) { return 0;}" > cuda_test.cu
$NVCC $NVCCFLAGS -c cuda_test.cu >/dev/null 2>&1
if test $? -eq 0
then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
NVCCFLAGS="$OLD_NVCCFLAGS"
fi
# This is for recent cuda, which complains if we don't actually set an arch!?
AC_MSG_CHECKING(whether nvcc supports -Wno-deprecated-gpu-targets)
OLD_NVCCFLAGS="$NVCCFLAGS"
NVCCFLAGS="$NVCCFLAGS -Wno-deprecated-gpu-targets"
echo "int main(int argc, char **argv) { return 0;}" > cuda_test.cu
$NVCC $NVCCFLAGS -c cuda_test.cu >/dev/null 2>&1
if test $? -eq 0
then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
NVCCFLAGS="$OLD_NVCCFLAGS"
fi
rm -f cuda_test*
fi
if test -n "$NVCC_CC"; then
NVCCFLAGS="${NVCCFLAGS} -ccbin \${NVCC_CC}"
fi
if test "$__cuda_include_dir" != "no"; then
STARPU_CUDA_CPPFLAGS="-I$__cuda_include_dir"
NVCCFLAGS="${NVCCFLAGS} -I$__cuda_include_dir"
fi
fi
])
if test x$enable_cuda = xyes -o x$enable_cuda = xmaybe; then
STARPU_CHECK_CUDA("$cuda_dir", "$cuda_include_dir", "$cuda_lib_dir")
if test "$have_valid_cuda" = "no" ; then
STARPU_CHECK_CUDA("$CUDA_ROOT", "$CUDA_INC_PATH", "$CUDA_LIB_PATH")
fi
if test "$have_valid_cuda" = "no" ; then
if test "$NVCC" = "" ; then
AC_PATH_PROG([NVCC], [nvcc], [not-found], [$PATH:/usr/local/cuda/bin])
fi
if test "$NVCC" != not-found ; then
CUDA_ROOT="$(dirname $NVCC)/.."
# Try to find all of cuda just from the availability of nvcc in PATH
STARPU_CHECK_CUDA("$CUDA_ROOT", "$CUDA_ROOT/include", "$CUDA_ROOT/lib")
cuda_dir=$(dirname $NVCC)/..
else
unset NVCC
fi
fi
if test "$have_valid_cuda" = "no" ; then
for f in "/usr/local/cuda" "/c/cuda" "/cygdrive/c/cuda" "/opt/cuda" "$CUDA_ROOT" "$CUDA_PATH" "$CUDA_INC_PATH/.." "$CUDA_INC/.." "$CUDA_BIN/.." "$CUDA_SDK/.." "$CUDA_INSTALL_PATH" "$CUDA_TOOLKIT"; do
if test -n "$f" ; then
STARPU_CHECK_CUDA("$f", "no", "no")
if test "$have_valid_cuda" = "yes" ; then
break
fi
fi
done
fi
# Check cuda is compatible with the C compiler
AC_MSG_CHECKING(whether CUDA is working)
if test "$have_valid_cuda" = "yes" ; then
SAVED_CPPFLAGS="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${STARPU_CUDA_CPPFLAGS}"
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS="${LDFLAGS} ${STARPU_CUDA_LDFLAGS} -lcudart"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <cuda.h>]],
[[]]
)],
[
AC_RUN_IFELSE([AC_LANG_PROGRAM(
[[#include <cuda.h>]],
[[]]
)],
[have_valid_cuda="yes"],
[
AC_MSG_RESULT([CUDA found and can be compiled, but compiled application can not be run, is the CUDA path missing in LD_LIBRARY_PATH?])
have_valid_cuda="no"
])
],
[
AC_MSG_ERROR([CUDA found, but cuda.h could not be compiled])
have_valid_cuda="no"
]
)
CPPFLAGS="${SAVED_CPPFLAGS}"
LDFLAGS="${SAVED_LDFLAGS}"
fi
AC_MSG_RESULT($have_valid_cuda)
# in case CUDA was explicitly required, but is not available, this is an error
if test x$enable_cuda = xyes -a x$have_valid_cuda = xno; then
AC_MSG_ERROR([cannot find CUDA])
fi
# now we enable CUDA if and only if a proper setup is available
enable_cuda=$have_valid_cuda
fi
AC_MSG_CHECKING(whether CUDA should be used)
AC_MSG_RESULT($enable_cuda)
AC_SUBST(STARPU_USE_CUDA, $enable_cuda)
AM_CONDITIONAL(STARPU_USE_CUDA, test x$enable_cuda = xyes)
cc_or_nvcc=$CC
if test x$enable_cuda = xyes; then
cc_or_nvcc=$NVCC
AC_DEFINE(STARPU_USE_CUDA, [1], [CUDA support is activated])
# On Darwin, the libstdc++ dependency is not automatically added by nvcc
# case "$target" in
# *-*darwin*) AC_HAVE_LIBRARY([stdc++], []) ;;
# #*-*darwin*) AC_HAVE_LIBRARY([stdc++], [STARPU_CUDA_LDFLAGS="$STARPU_CUDA_LDFLAGS -lstdc++"]) ;;
# esac
STARPU_CUDA_LDFLAGS="$STARPU_CUDA_LDFLAGS -lcudart -lcublas"
STARPU_CUFFT_LDFLAGS="-lcufft"
AC_LANG_PUSH([C++])
case \ $NVCCFLAGS\ in
*\ -std=*\ *) ;;
*)
SAVED_CXX="$CXX"
CXX="$NVCC"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#ifdef STARPU_HAVE_SIMGRID_MSG_H
#include <simgrid/msg.h>
#include <simgrid/host.h>
#else
#include <msg/msg.h>
#endif
]])],,
NVCCFLAGS="-std=c++11 $NVCCFLAGS")
CXX="$SAVED_CXX"
esac
AC_LANG_POP([C++])
if test "$F77" = "gfortran" -o "$FC" = "gfortran" ; then
STARPU_CUDA_FORTRAN_LDFLAGS="-lgfortran"
AC_SUBST(STARPU_CUDA_FORTRAN_LDFLAGS)
fi
#in case this is a 64bit setup, we tell nvcc to use a -m64 flag, if missing from existing flags
if test x$SIZEOF_VOID_P = x8; then
case \ $NVCCFLAGS\ in
*\ -m64\ *) ;;
*) NVCCFLAGS="${NVCCFLAGS} -m64" ;;
esac
fi
SAVED_CPPFLAGS="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${STARPU_CUDA_CPPFLAGS}"
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS="${LDFLAGS} ${STARPU_CUDA_LDFLAGS}"
SAVED_LIBS="${LIBS}"
AC_CHECK_HEADERS([cuda_gl_interop.h])
AC_CHECK_HEADERS([cublasLt.h], [
AC_CHECK_LIB([cublasLt], [cublasLtCreate],
[AC_DEFINE([STARPU_HAVE_LIBCUBLASLT], [1], [Define to 1 if you have the cublasLt library])
STARPU_CUDA_LDFLAGS="$STARPU_CUDA_LDFLAGS -lcublasLt"])
])
AC_CHECK_LIB([cusparse], [cusparseCreate],
[AC_DEFINE([STARPU_HAVE_LIBCUSPARSE], [1], [Define to 1 if you have the cusparse library])
STARPU_CUDA_LDFLAGS="$STARPU_CUDA_LDFLAGS -lcusparse"])
AC_CHECK_DECLS([cusparseSetStream], [], [], [[#include <cusparse.h>]])
# we also check that CuSolver is available
AC_CHECK_LIB([cusolver],[cusolverDnCreate],
[AC_DEFINE([STARPU_HAVE_LIBCUSOLVER], [1], [Define to 1 if you have the cusolver library])
STARPU_CUDA_LDFLAGS="$STARPU_CUDA_LDFLAGS -lcusolver"])
AC_MSG_CHECKING(whether nvidia-ml can be used)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <nvml.h>]],
[[
__typeof__(nvmlInit) *mynvmlInit = nvmlInit;
mynvmlInit();
]]
)],
[
AC_DEFINE([STARPU_HAVE_NVML_H], [1], [Define to 1 if you have the nvml.h header])
AC_MSG_RESULT(yes)
AC_CHECK_DECLS([nvmlDeviceGetTotalEnergyConsumption], [], [], [[#include <nvml.h>]])
],
[
AC_MSG_RESULT(no)
AC_MSG_WARN([nvml.h could not be compiled. This will prevent from correct understanding of the machine topology.])
NO_NVML="Warning: no nvml.h found"
]
)
CPPFLAGS="${SAVED_CPPFLAGS}"
LDFLAGS="${SAVED_LDFLAGS}"
LIBS="${SAVED_LIBS}"
fi
AC_SUBST(CC_OR_NVCC, $cc_or_nvcc)
have_magma=no
if test x$enable_cuda = xyes; then
PKG_CHECK_MODULES([MAGMA], [magma], [
AC_DEFINE([STARPU_HAVE_MAGMA], [1], [Define to 1 if you have the MAGMA library.])
AC_SUBST([STARPU_HAVE_MAGMA], [1])
have_magma=yes
], [:])
fi
AM_CONDITIONAL(STARPU_HAVE_MAGMA, [test x$have_magma = xyes])
AC_MSG_CHECKING(whether MAGMA should be used)
AC_MSG_RESULT($have_magma)
#Â cufftDoubleComplex may not be available on an old CUDA setup
AC_CHECK_TYPE(cufftDoubleComplex,
[have_cufftdoublecomplex=yes],
[have_cufftdoublecomplex=no], [#include <cufft.h>])
AM_CONDITIONAL(STARPU_HAVE_CUFFTDOUBLECOMPLEX, test x$have_cufftdoublecomplex = xyes)
if test x$have_cufftdoublecomplex = xyes; then
AC_DEFINE(STARPU_HAVE_CUFFTDOUBLECOMPLEX, [1], [cufftDoubleComplex is available])
fi
# The CURAND library is only available since CUDA 3.2
have_curand=$enable_cuda
if test x$enable_cuda = xyes; then
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS="${LDFLAGS} ${STARPU_CUDA_LDFLAGS}"
AC_HAVE_LIBRARY([curand],[have_curand=yes],[have_curand=no])
LDFLAGS="${SAVED_LDFLAGS}"
fi
AC_MSG_CHECKING(whether CURAND is available)
AC_MSG_RESULT($have_curand)
if test x$have_curand = xyes; then
AC_DEFINE(STARPU_HAVE_CURAND,[1], [CURAND is available])
STARPU_CURAND_LDFLAGS="$STARPU_CURAND_LDFLAGS -lcurand"
AC_SUBST(STARPU_CURAND_LDFLAGS)
fi
# Peer transfers are only supported since CUDA 4.0
# Disable them if user explicitly wants to disable them
AC_ARG_ENABLE(cuda_memcpy_peer, [AS_HELP_STRING([--disable-cuda-memcpy-peer], [do not allow peer transfers when using CUDA 4.0])],, [enable_cuda_memcpy_peer=$enable_cuda])
if test x$enable_cuda_memcpy_peer = xyes; then
AC_DEFINE(STARPU_HAVE_CUDA_MEMCPY_PEER,[1],[Peer transfers are supported in CUDA])
fi
AC_ARG_ENABLE(cuda_map, [AS_HELP_STRING([--disable-cuda-map], [do not allow CUDA memory mapping when available])],, [enable_cuda_map=yes])
if test x$enable_cuda_map = xyes -a x$enable_cuda = xyes ; then
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS="${LDFLAGS} ${STARPU_CUDA_LDFLAGS}"
AC_CHECK_MEMBER([struct cudaDeviceProp.canMapHostMemory],
AC_DEFINE([STARPU_HAVE_CUDA_CANMAPHOST],[1],[Define to 1 if CUDA device properties include canMapHostMemory]),
, [[#include <cuda_runtime_api.h>]])
AC_CHECK_MEMBER([struct cudaDeviceProp.unifiedAddressing],
AC_DEFINE([STARPU_HAVE_CUDA_UNIFIEDADDR],[1],[Define to 1 if CUDA device properties include unifiedAddressing]),
, [[#include <cuda_runtime_api.h>]])
AC_CHECK_MEMBER([struct cudaDeviceProp.managedMemory],
AC_DEFINE([STARPU_HAVE_CUDA_MNGMEM],[1],[Define to 1 if CUDA device properties include managedMemory]),
, [[#include <cuda_runtime_api.h>]])
AC_CHECK_MEMBER([struct cudaDeviceProp.pageableMemoryAccess],
AC_DEFINE([STARPU_HAVE_CUDA_PAGEABLEMEM],[1],[Define to 1 if CUDA device properties include pageableMemoryAccess]),
, [[#include <cuda_runtime_api.h>]])
AC_CHECK_MEMBER([struct cudaPointerAttributes.type],
AC_DEFINE([STARPU_HAVE_CUDA_POINTER_TYPE],[1],[Define to 1 if CUDA pointer attributes include a type field instead of old memoryType field]),
, [[#include <cuda_runtime_api.h>]])
LDFLAGS="${SAVED_LDFLAGS}"
AC_DEFINE(STARPU_USE_CUDA_MAP,[1],[Define to 1 if CUDA Mapped host memory may be used])
fi
if test x$enable_cuda = xyes; then
AC_ARG_ENABLE(cuda0, [AS_HELP_STRING([--enable-cuda0],
[Enable the minimal-support CUDA driver (only for testing)])],, [enable_cuda0=no])
if test x$enable_cuda0 = xyes; then
AC_DEFINE(STARPU_USE_CUDA0,[1],[Define to 1 if the CUDA0 driver is to be tested])
fi
AC_ARG_ENABLE(cuda1, [AS_HELP_STRING([--enable-cuda0],
[Enable the small-support CUDA driver (only for testing)])],, [enable_cuda1=no])
if test x$enable_cuda1 = xyes; then
AC_DEFINE(STARPU_USE_CUDA1,[1],[Define to 1 if the CUDA1 driver is to be tested])
fi
if test x$starpu_windows != xyes ; then
STARPU_CUDA_LDFLAGS="$STARPU_CUDA_LDFLAGS -lstdc++"
fi
AC_SUBST(STARPU_CUDA_LDFLAGS)
AC_SUBST(STARPU_CUFFT_LDFLAGS)
AC_SUBST(STARPU_CUDA_CPPFLAGS)
fi
AM_CONDITIONAL(STARPU_USE_CUDA0, test x$enable_cuda0 = xyes)
AM_CONDITIONAL(STARPU_USE_CUDA1, test x$enable_cuda1 = xyes)
AC_ARG_VAR([NVCC], [CUDA compiler])
AC_ARG_VAR([NVCC_CC], [C compiler for CUDA compiler])
AC_ARG_VAR([NVCCFLAGS], [CUDA compiler flags])
###############################################################################
# #
# HIP settings #
# #
###############################################################################
AC_MSG_CHECKING(maximum number of HIP devices)
AC_ARG_ENABLE(maxhipdev, [AS_HELP_STRING([--enable-maxhipdev=<number>],
[maximum number of HIP devices])],
nmaxhipdev=$enableval, nmaxhipdev=8)
if test x$nmaxhipdev = x -o x$nmaxhipdev = xyes
then
AC_MSG_ERROR([The --enable-maxhipdev option needs to be given a number])
fi
AC_MSG_RESULT($nmaxhipdev)
AC_DEFINE_UNQUOTED(STARPU_MAXHIPDEVS, [$nmaxhipdev],
[maximum number of HIP devices])
AC_ARG_ENABLE(hip, [AS_HELP_STRING([--enable-hip],
[Enable the minimal-support HIP driver (only for testing)])],, [enable_hip=maybe])
if test x$enable_cuda = xyes; then
# hip_runtime.h conflicts with cuda_runtime.h
# see https://github.com/ROCm-Developer-Tools/HIP/issues/2703
if test x$enable_hip = xyes ; then
AC_MSG_WARN([Disabling HIP as CUDA is enabled, see https://github.com/ROCm-Developer-Tools/HIP/issues/2703])
fi
enable_hip=no
fi
if test x$enable_simgrid = xyes; then
if test x$enable_hip = xyes; then
AC_MSG_ERROR([HIP not supported with simgrid])
fi
enable_hip=no
fi
have_valid_hip=no
if test x$enable_hip != xno; then
AC_PATH_PROG([HIPCONFIG], [hipconfig], [not-found])
if test "x$HIPCONFIG" = "xnot-found"; then
if test x$enable_hip = xyes; then
AC_MSG_ERROR(['hipconfig' not found for HIP support])
fi
have_valid_hip=no
else
HIP_PLATFORM="$(hipconfig --platform)"
HIP_DIR="$(hipconfig --path)"
HIP_LIB_DIR="$HIP_DIR/lib"
HIP_INCLUDE_DIR="$HIP_DIR/include"
STARPU_HIP_CPPFLAGS="$(hipconfig --cpp_config | tr -d '\n') -L$HIP_LIB_DIR"
if test "$HIP_PLATFORM" = "nvidia"; then
STARPU_HIP_CPPFLAGS="$STARPU_HIP_CPPFLAGS -DSTARPU_HIP_PLATFORM_NVIDIA"
fi
if test "$HIP_PLATFORM" = "amd"; then
STARPU_HIP_CPPFLAGS="$STARPU_HIP_CPPFLAGS -DSTARPU_HIP_PLATFORM_AMD"
fi
HIP_CLANG_PATH="$(hipconfig --hipclangpath)"
have_valid_hip=yes
AC_ARG_WITH([hipblas],
[AS_HELP_STRING([--with-hipblas=<path>], [specify where hipblas is installed])],
[custom_hipblas_dir="$withval"],
[])
if test x$custom_hipblas_dir != x; then
HIPBLAS_INCLUDE_DIR="$custom_hipblas_dir/include"
HIPBLAS_LIB_DIR="$custom_hipblas_dir/lib"
STARPU_HIPBLAS_DIRS="-I$HIPBLAS_INCLUDE_DIR -L$HIPBLAS_LIB_DIR"
fi
HIPCCFLAGS="$HIPCCFLAGS $STARPU_HIP_CPPFLAGS"
fi
fi
if test "$HIP_PLATFORM" = "amd"; then
SAVED_LIBS=${LIBS}
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS="${LDFLAGS} -L$HIP_LIB_DIR"
AC_SEARCH_LIBS([hipMemGetInfo],[amdhip64],,have_valid_hip=no)
LDFLAGS="${SAVED_LDFLAGS}"
LIBS=${SAVED_LIBS}
fi
if test x$have_valid_hip = xyes; then
SAVED_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="${CPPFLAGS} $STARPU_HIPBLAS_DIRS $STARPU_HIP_CPPFLAGS "
AC_CHECK_HEADERS([hip/hip_runtime.h hip/hip_runtime_api.h],[have_valid_hip=yes],[have_valid_hip=no])
if test x$custom_hipblas_dir != x; then
AC_CHECK_HEADER([$custom_hipblas_dir/include/hipblas.h],[have_valid_hipblas=yes],[have_valid_hipblas=no])
AC_MSG_WARN(['hipblas' custom])
else
AC_CHECK_HEADER([hipblas/hipblas.h],[have_valid_hipblas=yes],[have_valid_hipblas=no])
AC_MSG_WARN(['hipblas' default])
fi
if test x$have_valid_hipblas = xyes; then
AC_HAVE_LIBRARY([hipblas],[have_valid_hipblas=yes],[have_valid_hipblas=no])
fi
if test "$HIP_PLATFORM" = "amd"; then
if test x$have_valid_hipblas = xyes; then
AC_CHECK_HEADERS([rocblas/rocblas.h],[have_valid_hipblas=yes],[have_valid_hipblas=no])
fi
if test x$have_valid_hipblas = xyes; then
AC_HAVE_LIBRARY([rocblas],[have_valid_hipblas=yes],[have_valid_hipblas=no])
fi
fi
if test x$have_valid_hipblas = xyes; then
AC_DEFINE([STARPU_USE_HIPBLAS], [1], [HIPBLAS support is enabled])
if test x$custom_hipblas_dir != x; then
HIPCCFLAGS="$HIPCCFLAGS -I$HIPBLAS_INCLUDE_DIR"
STARPU_HIPBLAS_LDFLAGS="-L$HIPBLAS_LIB_DIR"
fi
STARPU_HIPBLAS_LDFLAGS="$STARPU_HIPBLAS_LDFLAGS -lhipblas"
if test "$HIP_PLATFORM" = "amd"; then
STARPU_HIPBLAS_LDFLAGS="$STARPU_HIPBLAS_LDFLAGS -lrocblas"
fi
else
AC_MSG_WARN(['hipblas' not found, disabling HIP examples])
fi
CPPFLAGS="${SAVED_CPPFLAGS}"
fi
AC_SUBST(STARPU_USE_HIPBLAS, $have_valid_hipblas)
AM_CONDITIONAL(STARPU_USE_HIPBLAS, test x$have_valid_hipblas = xyes)
if test x$have_valid_hip = xyes; then
if test -z "$HIP_DIR"; then
have_valid_hip=no
fi
if test -z "$HIP_LIB_DIR"; then
have_valid_hip=no
fi
if test -z "$HIP_INCLUDE_DIR"; then
have_valid_hip=no
fi
if test "$HIPCC" = ""; then
AC_PATH_PROG([HIPCC], [hipcc], [not-found],
[$HIP_CLANG_PATH:$PATH:/usr/bin:/bin])
fi
#testing if hipcc is defined, if not => STARPU_USE_HIP undefined
if test "x$HIPCC" = "xnot-found"; then
AC_MSG_WARN(['hipcc' not found, disabling HIP])
have_valid_hip=no
fi
if test "$HIP_PLATFORM" = "nvidia"; then
HIPCCFLAGS="$HIPCCFLAGS --x cu"
fi
if test "x$have_valid_hip" = xyes; then
AC_MSG_CHECKING(whether $HIPCC is working)
rm -f conftest.hip conftest.o
touch conftest.hip
AS_IF([$HIPCC $HIPCCFLAGS conftest.hip -o conftest.o -c $STARPU_HIP_CPPFLAGS],
[AC_MSG_RESULT(yes)],
[
AC_MSG_RESULT(no)
AC_MSG_WARN(['hipcc' does not work, disabling HIP])
have_valid_hip=no
])
fi
fi
# in case HIP was explicitly required, but is not available, this is an error
if test x$enable_hip = xyes -a x$have_valid_hip = xno; then
AC_MSG_ERROR([cannot find HIP])
fi
# now we enable HIP if and only if a proper setup is available
enable_hip=$have_valid_hip
if test "x$enable_hip" = xyes; then
AC_DEFINE(STARPU_USE_HIP,[1],[Define to 1 if the HIP driver is to be tested])
if test "$HIP_PLATFORM" = "nvidia"; then
STARPU_HIP_LDFLAGS="-lcuda -lcudart -lcublas $STARPU_HIPBLAS_LDFLAGS -lstdc++"
fi
if test "$HIP_PLATFORM" = "amd"; then
STARPU_HIP_LDFLAGS="-L$HIP_LIB_DIR -lamdhip64 $STARPU_HIPBLAS_LDFLAGS -lstdc++"
fi
AC_ARG_ENABLE(hip_memcpy_peer, [AS_HELP_STRING([--disable-hip-memcpy-peer], [if you want to disable peer transfers when using hip])],, [enable_hip_memcpy_peer=$enable_hip])
if test x$enable_hip_memcpy_peer = xyes; then
AC_DEFINE(STARPU_HAVE_HIP_MEMCPY_PEER,[1],[Peer transfers are supported in HIP])
fi
else
STARPU_HIP_LDFLAGS=
STARPU_HIP_CPPFLAGS=
enable_hip_memcpy_peer=no
fi
AC_SUBST(STARPU_HIP_LDFLAGS)
AC_SUBST(STARPU_HIP_CPPFLAGS)
AM_CONDITIONAL(STARPU_USE_HIP, test x$enable_hip = xyes)
#AC_ARG_VAR([HIPCC_CC], [C compiler for HIP compiler])
AC_ARG_VAR([HIPCCFLAGS], [HIP compiler flags])
###############################################################################
# #
# OpenCL settings #
# #
###############################################################################
AC_MSG_CHECKING(maximum number of OpenCL devices)
AC_ARG_ENABLE(maxopencldev, [AS_HELP_STRING([--enable-maxopencldev=<number>],
[maximum number of OPENCL devices])],
nmaxopencldev=$enableval, nmaxopencldev=8)
if test x$nmaxopencldev = x -o x$nmaxopencldev = xyes
then
AC_MSG_ERROR([The --enable-maxopencldev option needs to be given a number])
fi
AC_MSG_RESULT($nmaxopencldev)
AC_DEFINE_UNQUOTED(STARPU_MAXOPENCLDEVS, [$nmaxopencldev],
[maximum number of OPENCL devices])
AC_ARG_ENABLE(opencl, [AS_HELP_STRING([--disable-opencl],
[do not use OpenCL device(s)])],, [enable_opencl=maybe])
have_valid_opencl=no
AC_DEFUN([STARPU_CHECK_OPENCL],
[
__opencl_dir=$1
__opencl_include_dir=$2
__opencl_lib_dir=$3
if test "$__opencl_dir" != "no" ; then
AC_MSG_CHECKING(whether OpenCL is available in $__opencl_dir $__opencl_include_dir and $__opencl_lib_dir)
else
AC_MSG_CHECKING(whether OpenCL is available)
fi
AC_MSG_RESULT()
if test "$__opencl_include_dir" = "no" -a "$__opencl_dir" != "no" ; then
__opencl_include_dir="$__opencl_dir/include"
fi
SAVED_CPPFLAGS="$CPPFLAGS"
SAVED_LDFLAGS="${LDFLAGS}"
if test "$__opencl_include_dir" != "no" ; then
CPPFLAGS="${CPPFLAGS} -I$__opencl_include_dir"
fi
AC_CHECK_HEADER([CL/cl.h],[have_valid_opencl=yes],[have_valid_opencl=no])
unset ac_cv_header_CL_cl_h
if test "$have_valid_opencl" = "yes" ; then
if test "$__opencl_lib_dir" != "no"; then
LDFLAGS="${SAVED_LDFLAGS} -L$__opencl_lib_dir"
AC_HAVE_LIBRARY([OpenCL],[have_valid_opencl=yes],[have_valid_opencl=no])
unset ac_cv_lib_OpenCL_main
else
AC_MSG_CHECKING(whether OpenCL is available in $__opencl_dir)
AC_MSG_RESULT()
AC_HAVE_LIBRARY([OpenCL],[have_valid_opencl=yes],[have_valid_opencl=no])
unset ac_cv_lib_OpenCL_main
if test "$have_valid_opencl" = "no" -a "$__opencl_dir" != "no" ; then
for __cuda_libdir in lib64 lib lib/x86 lib/Win32 ; do
__opencl_lib_dir="$__opencl_dir/$__cuda_libdir"
AC_MSG_CHECKING(whether OpenCL is available in $__opencl_dir and $__opencl_lib_dir)
AC_MSG_RESULT()
LDFLAGS="${SAVED_LDFLAGS} -L$__opencl_lib_dir"
AC_HAVE_LIBRARY([OpenCL],[have_valid_opencl=yes],[have_valid_opencl=no])
unset ac_cv_lib_OpenCL_main
if test "$have_valid_opencl" = yes ; then
break
fi
done
else
LDFLAGS="${SAVED_LDFLAGS}"
AC_HAVE_LIBRARY([OpenCL],[have_valid_opencl=yes],[have_valid_opencl=no])
unset ac_cv_lib_OpenCL_main
fi
fi
fi
if test "$have_valid_opencl" = "yes" -a "$__opencl_include_dir" != "no"; then
STARPU_OPENCL_CPPFLAGS="-I$__opencl_include_dir"
AC_CHECK_HEADERS([CL/cl_ext.h])
fi
CPPFLAGS="${SAVED_CPPFLAGS}"
LDFLAGS="${SAVED_LDFLAGS}"
if test "$have_valid_opencl" = "yes" ; then
if test "$__opencl_lib_dir" != "no"; then
STARPU_OPENCL_LDFLAGS="-L$__opencl_lib_dir"
fi
STARPU_OPENCL_LDFLAGS="${STARPU_OPENCL_LDFLAGS} -lOpenCL"
fi
])
#AC_MSG_CHECKING(whether OpenCL is available)
AC_ARG_WITH(opencl-dir,
[AS_HELP_STRING([--with-opencl-dir=<path>],
[specify OpenCL installation directory])],
[
opencl_dir="$withval"
# in case this was not explicit yet
enable_opencl=yes
], opencl_dir=no)
AC_ARG_WITH(opencl-include-dir,
[AS_HELP_STRING([--with-opencl-include-dir=<path>],
[specify where OpenCL headers are installed])],
[
opencl_include_dir="$withval"
# in case this was not explicit yet
enable_opencl=yes
], [opencl_include_dir=no])
AC_ARG_WITH(opencl-lib-dir,
[AS_HELP_STRING([--with-opencl-lib-dir=<path>],
[specify where OpenCL libraries are installed])],
[
opencl_lib_dir="$withval"
# in case this was not explicit yet
enable_opencl=yes
], [opencl_lib_dir=no])
AC_DEFUN([STARPU_LOOK_FOR_OPENCL],
[
if test "x$has_opencl_being_checked" != "xyes" ; then
STARPU_CHECK_OPENCL("$opencl_dir", "$opencl_include_dir", "$opencl_lib_dir")
if test "$have_valid_opencl" = "no" ; then
for f in "/usr/local/cuda" "/c/cuda" "/cygdrive/c/cuda" "/opt/cuda" "$CUDA_ROOT" "$CUDA_PATH" "$CUDA_INC_PATH/.." "$CUDA_INSTALL_PATH" "$CUDA_TOOLKIT"; do
if test -n "$f" ; then
STARPU_CHECK_OPENCL("$f", "no", "no")
if test "$have_valid_opencl" = "yes" ; then
break
fi
fi
done
fi
has_opencl_being_checked=yes
fi
])
if test x$enable_opencl = xyes -o x$enable_opencl = xmaybe; then
case $target in
*-*-darwin*)
AC_MSG_CHECKING(whether OpenCL is available)
SAVED_LIBS=$LIBS
LIBS="$LIBS -framework OpenCL"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[
#ifdef __APPLE_CC__
#include <OpenCL/opencl.h>
#else
#include <CL/cl.h>
#endif
]],
[[return clSetKernelArg(0, 0, 0, 0); ]])],
[AC_MSG_RESULT(yes)
enable_opencl=yes
have_valid_opencl=yes
STARPU_OPENCL_CPPFLAGS=
STARPU_OPENCL_LDFLAGS="-framework OpenCL"],
[AC_MSG_RESULT(no)
enable_opencl=no])
LIBS=$SAVED_LIBS
;;
*)
STARPU_LOOK_FOR_OPENCL()
# in case OpenCL was explicitly required, but is not available, this is an error
if test x$enable_opencl = xyes -a x$have_valid_opencl = xno; then
AC_MSG_ERROR([cannot find OpenCL])
fi
# now we enable OpenCL if and only if a proper setup is available
enable_opencl=$have_valid_opencl
;;
esac
save_LIBS="$LIBS"
LIBS="$LIBS $STARPU_OPENCL_LDFLAGS"
AC_CHECK_FUNCS([clEnqueueMarkerWithWaitList])
LIBS="$save_LIBS"
fi
AC_MSG_CHECKING(whether OpenCL should be used)
AC_MSG_RESULT($enable_opencl)
AC_SUBST(STARPU_USE_OPENCL, $enable_opencl)
AM_CONDITIONAL(STARPU_USE_OPENCL, test x$enable_opencl = xyes)
if test x$enable_opencl = xyes ; then
AC_DEFINE(STARPU_USE_OPENCL, [1], [OpenCL support is activated])
STARPU_OPENCL_CPPFLAGS="${STARPU_OPENCL_CPPFLAGS} -DSTARPU_OPENCL_DATADIR=\"\\\"${datarootdir}/starpu/opencl\\\"\" -DCL_USE_DEPRECATED_OPENCL_1_1_APIS"
AC_SUBST(STARPU_OPENCL_DATAdir, "$(eval echo ${datarootdir}/starpu/opencl/examples)")
AC_SUBST(STARPU_OPENCL_CPPFLAGS)
AC_SUBST(STARPU_OPENCL_LDFLAGS)
fi
###############################################################################
# #
# Maxeler FPGA Settings #
# #
###############################################################################
#NUMBER OF MAXELER FPGA DEVICES
AC_MSG_CHECKING(maximum number of Maxeler FPGA devices)
AC_ARG_ENABLE(maxmaxfpgadev, [AS_HELP_STRING([--enable-maxmaxfpgadev=<number>],
[maximum number of Maxeler FPGA devices])],
nmaxmaxfpgadev=$enableval, nmaxmaxfpgadev=12)
if test x$nmaxmaxfpgadev = x -o x$nmaxmaxfpgadev = xyes
then
AC_MSG_ERROR([The --enable-maxmaxfpgadev option needs to be given a number])
fi
AC_MSG_RESULT($nmaxmaxfpgadev)
AC_DEFINE_UNQUOTED(STARPU_MAXMAXFPGADEVS, [$nmaxmaxfpgadev],[maximum number of Maxeler FPGA devices])
AC_ARG_ENABLE([max-fpga],
[AS_HELP_STRING([--disable-max-fpga],[disable support for Maxeler FPGA])],
[enable_max_fpga=$enableval],
[enable_max_fpga=maybe]
)
if test x$enable_simgrid = xyes; then
if test x$enable_max_fpga = xyes; then
AC_MSG_ERROR([Max fpga not supported with simgrid])
fi
enable_max_fpga=no
fi
if test x$enable_max_fpga != xno; then
AC_PATH_PROG([SLIC_CONFIG], [slic-config], [not-found])
if test "x$SLIC_CONFIG" = "xnot-found"; then
# in case FPGA was explicitly required, but is not available, this is an error
if test x$enable_max_fpga = xyes; then
AC_MSG_ERROR(['slic-config' not found for Maxeler FPGA support])
fi
enable_max_fpga=no
else
STARPU_MAX_FPGA_CPPFLAGS="`slic-config --cflags | sed s/\'//g | sed "s/-I /-I/"`"
STARPU_MAX_FPGA_LDFLAGS="`slic-config --libs | sed s/\'//g | sed "s/-L /-L/" | sed "s/-L /-L/"`"
enable_max_fpga=yes
fi
fi
AC_SUBST(STARPU_USE_MAX_FPGA,$enable_max_fpga)
AM_CONDITIONAL(STARPU_USE_MAX_FPGA,test x$enable_max_fpga = xyes)
if test x$enable_max_fpga = xyes; then
AC_DEFINE(STARPU_USE_MAX_FPGA,[1],[Maxeler FPGA support is activated])
fi
###############################################################################
# #
# General GPU settings #
# #
###############################################################################
AC_MSG_CHECKING(whether asynchronous copy should be disabled)
AC_ARG_ENABLE(asynchronous-copy, [AS_HELP_STRING([--disable-asynchronous-copy],
[disable asynchronous copy between CPU and GPU])],
enable_asynchronous_copy=$enableval, enable_asynchronous_copy=yes)
disable_asynchronous_copy=no
if test x$enable_asynchronous_copy = xno ; then
disable_asynchronous_copy=yes
fi
AC_MSG_RESULT($disable_asynchronous_copy)
if test x$disable_asynchronous_copy = xyes ; then
AC_DEFINE([STARPU_DISABLE_ASYNCHRONOUS_COPY], [1], [Define to 1 to disable asynchronous copy between CPU and GPU devices])
fi
AC_MSG_CHECKING(whether asynchronous CUDA copy should be disabled)
AC_ARG_ENABLE(asynchronous-cuda-copy, [AS_HELP_STRING([--disable-asynchronous-cuda-copy],
[disable asynchronous copy between CPU and CUDA devices])],
enable_asynchronous_cuda_copy=$enableval, enable_asynchronous_cuda_copy=yes)
disable_asynchronous_cuda_copy=no
if test x$enable_asynchronous_cuda_copy = xno ; then
disable_asynchronous_cuda_copy=yes
fi
AC_MSG_RESULT($disable_asynchronous_cuda_copy)
if test x$disable_asynchronous_cuda_copy = xyes ; then
AC_DEFINE([STARPU_DISABLE_ASYNCHRONOUS_CUDA_COPY], [1], [Define to 1 to disable asynchronous copy between CPU and CUDA devices])
fi
AC_MSG_CHECKING(whether asynchronous OpenCL copy should be disabled)
AC_ARG_ENABLE(asynchronous-opencl-copy, [AS_HELP_STRING([--disable-asynchronous-opencl-copy],
[disable asynchronous copy between CPU and OPENCL devices])],
enable_asynchronous_opencl_copy=$enableval, enable_asynchronous_opencl_copy=yes)
disable_asynchronous_opencl_copy=no
if test x$enable_asynchronous_opencl_copy = xno ; then
disable_asynchronous_opencl_copy=yes
fi
AC_MSG_RESULT($disable_asynchronous_opencl_copy)
if test x$disable_asynchronous_opencl_copy = xyes ; then
AC_DEFINE([STARPU_DISABLE_ASYNCHRONOUS_OPENCL_COPY], [1], [Define to 1 to disable asynchronous copy between CPU and OpenCL devices])
fi
AC_MSG_CHECKING(whether asynchronous MPI Master Slave copy should be disabled)
AC_ARG_ENABLE(asynchronous-mpi-master-slave-copy, [AS_HELP_STRING([--disable-asynchronous-mpi-master-slave-copy],
[disable asynchronous copy between MPI Master and MPI Slave devices])],
enable_asynchronous_mpi_master_slave_copy=$enableval, enable_asynchronous_mpi_master_slave_copy=yes)
disable_asynchronous_mpi_master_slave_copy=no
if test x$enable_asynchronous_mpi_master_slave_copy = xno ; then
disable_asynchronous_mpi_master_slave_copy=yes
fi
AC_MSG_RESULT($disable_asynchronous_mpi_master_slave_copy)
if test x$disable_asynchronous_mpi_master_slave_copy = xyes ; then
AC_DEFINE([STARPU_DISABLE_ASYNCHRONOUS_MPI_MS_COPY], [1], [Define to 1 to disable asynchronous copy between MPI Master and MPI Slave devices])
fi
AC_MSG_CHECKING(whether asynchronous TCP/IP Master Slave copy should be disabled)
AC_ARG_ENABLE(asynchronous-tcpip-master-slave-copy, [AS_HELP_STRING([--disable-asynchronous-tcpip-master-slave-copy],
[disable asynchronous copy between TCP/IP Master and TCP/IP Slave devices])],
enable_asynchronous_tcpip_master_slave_copy=$enableval, enable_asynchronous_tcpip_master_slave_copy=yes)
disable_asynchronous_tcpip_master_slave_copy=no
if test x$enable_asynchronous_tcpip_master_slave_copy = xno ; then
disable_asynchronous_tcpip_master_slave_copy=yes
fi
AC_MSG_RESULT($disable_asynchronous_tcpip_master_slave_copy)
if test x$disable_asynchronous_tcpip_master_slave_copy = xyes ; then
AC_DEFINE([STARPU_DISABLE_ASYNCHRONOUS_TCPIP_MS_COPY], [1], [Define to 1 to disable asynchronous copy between TCP/IP Master and TCP/IP Slave devices])
fi
AC_MSG_CHECKING(whether asynchronous Maxeler FPGA copy should be disabled)
AC_ARG_ENABLE(asynchronous-max-fpga-copy, [AS_HELP_STRING([--disable-asynchronous-max-fpga-copy],
[disable asynchronous copy between CPU and Maxeler FPGA devices])],
enable_asynchronous_max_fpga_copy=$enableval, enable_asynchronous_max_fpga_copy=yes)
disable_asynchronous_max_fpga_copy=no
if test x$enable_asynchronous_max_fpga_copy = xno ; then
disable_asynchronous_max_fpga_copy=yes
fi
AC_MSG_RESULT($disable_asynchronous_max_fpga_copy)
if test x$disable_asynchronous_max_fpga_copy = xyes ; then
AC_DEFINE([STARPU_DISABLE_ASYNCHRONOUS_MAX_FPGA_COPY], [1], [Define to 1 to disable asynchronous copy between CPU and Maxeler FPGA devices])
fi
###############################################################################
# #
# Fortran #
# #
###############################################################################
AC_ARG_ENABLE(fortran, [AS_HELP_STRING([--disable-fortran],
[disable build of fortran examples])],
enable_build_fortran_requested=$enableval, enable_build_fortran_requested=yes)
use_mpi_fort=no
enable_build_fortran=no
if test "x$enable_build_fortran_requested" = "xyes" ; then
if test "x$FC" != "x"; then
if $FC --version|grep -q 'GNU Fortran'; then
AC_LANG_PUSH([Fortran])
OLD_FCFLAGS="$FCFLAGS"
FCFLAGS="$FCFLAGS -cpp"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[
#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 9)
#error GFortran too old, version >= 4.9.x needed, Fortran examples will not be built
#endif
]]
)],
[enable_build_fortran="yes"],
[enable_build_fortran="no"])
FCFLAGS="$OLD_FCFLAGS"
AC_LANG_POP([Fortran])
if test "$enable_build_fortran" = "no" ; then
AC_MSG_WARN([GFortran too old, version >= 4.9.x needed, Fortran examples will not be built])
fi
else
if $FC -V 2>&1|grep -q 'Intel(R) Fortran'; then
enable_build_fortran="yes"
ifort_fc_version=`$FC -V 2>&1 |head -1|sed 's/.*Version //;s/ Build.*//'`
ifort_maj_version=`echo $ifort_fc_version|cut -d. -f1`
if test $ifort_maj_version -lt 16; then
AC_MSG_WARN([Intel Fortran compiler $ifort_fc_version too old, version >= 2016.x needed, Fortran examples will not be built])
enable_build_fortran="no"
fi
else
if $FC -qversion 2>&1|grep -q 'IBM XL Fortran'; then
xlf_fc_version=`$FC -V 2>&1 |tail -1|sed 's/.*Version: //'`
AC_MSG_WARN([IBM Fortran compiler $xlf_fc_version not validated with the native StarPU Fortran API, Fortran examples will not be built])
enable_build_fortran="no"
else
AC_MSG_WARN(Fortran compiler has not been tested for StarPU native Fortran support)
enable_build_fortran="yes"
fi
fi
fi
if $FC -v 2>&1 | grep -q 'Arm C/C++/Fortran Compiler' ; then
armflang_version=`$FC -v 2>&1 | head -1 | sed 's/.*version //'`
armflang_maj_version=`echo $armflang_version|cut -d. -f1`
if test $armflang_maj_version -lt 23 ; then
AC_MSG_WARN([ARM Fortran compiler $armflang_version is not validated with the native StarPU Fortran API, Fortran examples will not be built])
enable_build_fortran="no"
fi
fi
if test "x$enable_build_fortran" = "xyes" ; then
AC_DEFINE(STARPU_HAVE_FC, [1], [Define this if a Fortran compiler is available])
if test x$build_mpi_lib = xyes -o x$build_nmad_lib = xyes -o x$build_mpi_master_slave = xyes ; then
#Check MPIFORT
if test x$enable_simgrid = xyes ; then
DEFAULT_MPIFORT=smpifort
else
DEFAULT_MPIFORT=mpifort
fi
AC_ARG_WITH(mpifort, [AS_HELP_STRING([--with-mpifort=<mpifort name or path to mpifort>], [Name or path of the mpifort compiler])], [DEFAULT_MPIFORT=$withval])
case $DEFAULT_MPIFORT in
/*) mpifort_path="$DEFAULT_MPIFORT" ;;
*) AC_PATH_PROG(mpifort_path, $DEFAULT_MPIFORT, [no], [$simgrid_dir/bin:$PATH]) ;;
esac
# We test if the MPIFORT compiler exists
if test ! -x $mpifort_path; then
AC_MSG_RESULT(The mpifort compiler '$mpifort_path' does not have the execute permission)
mpifort_path=no
else
OLD_CC=$CC
CC=$mpicc_path
AC_LINK_IFELSE(
AC_LANG_PROGRAM(
[[#include <mpi.h>]],
[[AC_LANG_SOURCE([return MPI_Comm_f2c(0);])]]
),
[use_mpi_fort=yes],
[use_mpi_fort=no]
)
CC=$OLD_CC
if test "x$use_mpi_fort" = xyes; then
AC_DEFINE([HAVE_MPI_COMM_F2C], [1], [Function MPI_Comm_f2c is available])
fi
fi
AC_MSG_CHECKING(whether mpifort is available)
AC_MSG_RESULT($mpifort_path)
AC_SUBST(MPIFORT, $mpifort_path)
if test x$mpifort_path != xno ; then
MPIPATH=$(dirname $mpifort_path):$PATH
else
MPIPATH=$PATH
fi
fi
fi
fi
fi
if test "x$enable_build_fortran" = "xyes" ; then
if test "x$FC" = "x" ; then
enable_build_fortran="no"
fi
fi
#We have MPI C/C++ compiler
if test x$build_mpi_master_slave = xyes; then
#Check if we can compile fortran cases
if test x$use_mpi_fort = xyes ; then
F77LD=$mpifort_path
FCLD=$mpifort_path
F77=$mpifort_path
FC=$mpifort_path
else
enable_build_fortran=no
fi
fi
AM_CONDITIONAL([STARPU_HAVE_FC], [test "x$FC" != "x" -a "x$enable_build_fortran" = "xyes"])
AM_CONDITIONAL([STARPU_HAVE_F77], [test "x$F77" != "x" -a "x$enable_build_fortran" = "xyes"])
AM_CONDITIONAL([STARPU_HAVE_MPIFORT], [test "x$use_mpi_fort" = "xyes"])
###############################################################################
# #
# Debug and Performance analysis tools #
# #
###############################################################################
AC_MSG_CHECKING(whether debug mode should be enabled)
AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug], [enable debug mode])],
enable_debug=$enableval, enable_debug=no)
AC_MSG_RESULT($enable_debug)
AC_ARG_ENABLE(spinlock_check, [AS_HELP_STRING([--enable-spinlock-check], [enable spinlock check])], enable_spinlock_check=$enableval, enable_spinlock_check=no)
AC_ARG_ENABLE(fstack-protector-all, [AS_HELP_STRING([--disable-fstack-protector-all], [disable GCC option -fstack-protector-all])], enable_fstack_protector_all=$enableval, enable_fstack_protector_all=yes)
if test x$enable_debug = xyes; then
AC_DEFINE(STARPU_DEBUG, [1], [enable debugging statements])
CFLAGS="$CFLAGS -O0"
CXXFLAGS="$CXXFLAGS -O0"
FFLAGS="$FFLAGS -O0"
FCFLAGS="$FCFLAGS -O0"
IS_SUPPORTED_FLAG(-fno-optimize-sibling-calls)
enable_spinlock_check=yes
if test x$GCC = xyes; then
IS_SUPPORTED_FLAG(-Og)
if test x$starpu_windows != xyes ; then
if test x$enable_fstack_protector_all = xyes ; then
CFLAGS="$CFLAGS -fstack-protector-all"
CXXFLAGS="$CXXFLAGS -fstack-protector-all"
FFLAGS="$FFLAGS -fstack-protector-all"
FCFLAGS="$FCFLAGS -fstack-protector-all"
fi
fi
fi
else
CFLAGS="-O3 $CFLAGS"
CXXFLAGS="-O3 $CXXFLAGS"
FFLAGS="-O3 $FFLAGS"
FCFLAGS="-O3 $FCFLAGS"
fi
AC_MSG_CHECKING(whether gdb information should be enabled)
AC_ARG_ENABLE(gdb, [AS_HELP_STRING([--disable-gdb], [disable gdb information])],
enable_gdb=$enableval, enable_gdb=yes)
AC_MSG_RESULT($enable_gdb)
AC_MSG_CHECKING(whether full gdb information should be enabled)
AC_ARG_ENABLE(full-gdb-information, [AS_HELP_STRING([--disable-full-gdb-information], [disable full gdb information])],
enable_full_gdb_information=$enableval, enable_full_gdb_information=yes)
AC_MSG_RESULT($enable_full_gdb_information)
if test x$enable_gdb = xyes; then
if test x$enable_full_gdb_information = xyes -a x$GCC = xyes; then
IS_SUPPORTED_FLAG(-gdwarf-2)
IS_SUPPORTED_FLAG(-g3)
NVCCFLAGS="$NVCCFLAGS -g"
HIPCCFLAGS="$HIPCCFLAGS -g"
else
IS_SUPPORTED_FLAG(-g)
NVCCFLAGS="$NVCCFLAGS -g"
HIPCCFLAGS="$HIPCCFLAGS -g"
fi
else
CFLAGS="$CFLAGS -g0"
CXXFLAGS="$CXXFLAGS -g0"
FFLAGS="$FFLAGS -g0"
FCFLAGS="$FCFLAGS -g0"
LDFLAGS="$LDFLAGS -g0"
fi
if test x$enable_spinlock_check = xyes; then
AC_DEFINE(STARPU_SPINLOCK_CHECK, [1], [check spinlock use])
fi
AC_MSG_CHECKING(whether extra checks should be performed)
AC_ARG_ENABLE(fast, [AS_HELP_STRING([--enable-fast],
[do not enforce assertions])],
enable_fast=$enableval, enable_fast=no)
AC_MSG_RESULT($enable_fast)
if test x$enable_fast = xyes; then
AC_DEFINE(STARPU_NO_ASSERT, [1], [disable assertions])
else
# fortify gets really enabled only with optimizations, avoid enabling it
# when optimizations are not enabled, because with some glibc it
# spews a lot of warnings.
if test x$enable_debug != xyes; then
if test x$GCC = xyes; then
CPPFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 $CPPFLAGS"
fi
fi
fi
AC_MSG_CHECKING(whether debug messages should be displayed)
AC_ARG_ENABLE(verbose, [AS_HELP_STRING([--enable-verbose],
[display verbose debug messages (--enable-verbose=extra increase the verbosity)])],
enable_verbose=$enableval, enable_verbose=no)
AC_MSG_RESULT($enable_verbose)
if test x$enable_verbose = xyes; then
AC_DEFINE(STARPU_VERBOSE, [1], [display verbose debug messages])
fi
if test x$enable_verbose = xextra; then
AC_DEFINE(STARPU_VERBOSE, [1], [display verbose debug messages])
AC_DEFINE(STARPU_EXTRA_VERBOSE, [1], [display verbose debug messages])
fi
AC_MSG_CHECKING(whether coverage testing should be enabled)
AC_ARG_ENABLE(coverage, [AS_HELP_STRING([--enable-coverage],
[enable coverage checking])],
enable_coverage=$enableval, enable_coverage=no)
AC_MSG_RESULT($enable_coverage)
AC_SUBST(COVERAGE, $enable_coverage)
AM_CONDITIONAL(STARPU_COVERAGE_ENABLED, [test "x$enable_coverage" = "xyes"])
if test x$enable_coverage = xyes; then
CFLAGS="${CFLAGS} --coverage"
CXXFLAGS="${CXXFLAGS} --coverage"
FFLAGS="${FFLAGS} --coverage"
FCFLAGS="${FCFLAGS} --coverage"
LDFLAGS="${LDFLAGS} --coverage"
LIBS="${LIBS} -lgcov"
fi
AC_MSG_CHECKING(whether coverity mode should be enabled)
AC_ARG_ENABLE(coverity, [AS_HELP_STRING([--enable-coverity], [enable coverity mode])],
enable_coverity=$enableval, enable_coverity=no)
AC_MSG_RESULT($enable_coverity)
AM_CONDITIONAL(STARPU_COVERITY, test x$enable_coverity = xyes)
if test x$enable_coverity = xyes ; then
AC_DEFINE(STARPU_COVERITY, [1], [Define to 1 if you are building with coverity])
fi
# We would need a PIC-compiled libfxt.a for this to work ; that's usually not available.
if test x$enable_mpi = xyes -a x$enable_simgrid = xyes -o x$enable_shared = xno -a x$enable_starpupy = xyes ; then
default_enable_fxt=no
else
default_enable_fxt=maybe
fi
# shall we use FxT to generate trace of the execution ?
AC_ARG_ENABLE(fxt, [AS_HELP_STRING([--disable-fxt],
[disable FxT trace mechanisms])],, [enable_fxt=$default_enable_fxt])
AC_ARG_WITH(fxt,
[AS_HELP_STRING([--with-fxt=<path>], [specify FxT installation directory])],
[
if test x$withval = xno ; then
enable_fxt=no
else
fxt_dir="$withval"
use_fxt_from_system=no
# in case this was not explicit yet
enable_fxt=yes
AC_SUBST(FXTDIR, $fxt_dir)
fi
],
[
use_fxt_from_system=yes
fxt_dir=""
])
if test x$enable_fxt != xno; then
if test x$use_fxt_from_system = xno; then
save_PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
PKG_CONFIG_PATH="$fxt_dir/lib/pkgconfig:$PKG_CONFIG_PATH"
PKG_CHECK_MODULES([FXT], [fxt], [have_valid_fxt=yes], [
have_valid_fxt=yes
AC_MSG_WARN([Old FxT without fxt.pc file, hoping link will succeed])
FXT_CFLAGS="-I$fxt_dir/include/ "
FXT_LDFLAGS="-L$fxt_dir/lib/"
AC_ARG_VAR(FXT_LDFLAGS)
FXT_LIBS="-lfxt"
])
PKG_CONFIG_PATH="$save_PKG_CONFIG_PATH"
else
PKG_CHECK_MODULES([FXT], [fxt], [have_valid_fxt=yes], [have_valid_fxt=no])
fi
if test x$have_valid_fxt = xyes ; then
enable_fxt=yes
save_LIBS="$LIBS"
LIBS="$LIBS $FXT_LIBS"
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $FXT_LDFLAGS"
AC_CHECK_FUNCS([fxt_close])
AC_CHECK_FUNCS([fxt_blockev_leave])
AC_CHECK_FUNCS([enable_fut_flush])
AC_CHECK_FUNCS([fut_set_filename])
AC_CHECK_FUNCS([fut_setup_flush_callback])
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $FXT_CFLAGS"
AC_CHECK_DECLS([enable_fut_flush], [], [], [[#include <fut.h>]])
AC_CHECK_DECLS([fut_set_filename], [], [], [[#include <fut.h>]])
AC_CHECK_DECLS([fut_setup_flush_callback], [], [], [[#include <fut.h>]])
CFLAGS="$save_CFLAGS"
if test x$enable_simgrid = xyes -a x$enable_shared = xno ; then
# simgrid's SMPI needs fxt to be linked in statically for
# variable privatization to work
FXT_LIBS="$(pkg-config --variable=libdir fxt)/libfxt.a -Wl,--as-needed $(pkg-config --libs --static fxt) -Wl,--no-as-needed"
fi
##########################################
# Poti is a library to generate paje trace files
##########################################
PKG_CHECK_MODULES([POTI], [poti], [have_valid_poti=yes], [have_valid_poti=no])
AC_ARG_ENABLE(poti, [AS_HELP_STRING([--enable-poti],
[Enable the use of the POTI library to generate Paje traces])],
enable_poti=$enableval, enable_poti=no)
if test x$enable_poti = xyes -a x$have_valid_poti = xyes ; then
AC_DEFINE(STARPU_HAVE_POTI, [1], [Define to 1 if you have libpoti and it is meant to be used])
save_LIBS="$LIBS"
LIBS="$LIBS $POTI_LIBS"
AC_CHECK_FUNCS([poti_init_custom poti_user_NewEvent])
LIBS="$save_LIBS"
FXT_CFLAGS="$FXT_CFLAGS $POTI_CFLAGS"
FXT_LIBS="$FXT_LIBS $POTI_LIBS"
fi
else
if test x$enable_fxt = xyes ; then
AC_MSG_ERROR([FxT is required but not available])
fi
enable_fxt=no
fi
fi
AC_MSG_CHECKING(whether FxT traces should be generated)
AC_MSG_RESULT($enable_fxt)
if test x$enable_fxt = xyes; then
AC_DEFINE(STARPU_USE_FXT, [1], [enable FxT traces])
AC_DEFINE(CONFIG_FUT, [1], [enable FUT traces])
fi
AC_SUBST(STARPU_USE_FXT, $enable_fxt)
AM_CONDITIONAL(STARPU_USE_FXT, test x$enable_fxt = xyes)
AC_MSG_CHECKING(whether additional locking systems FxT traces should be enabled)
AC_ARG_ENABLE(fxt-lock, [AS_HELP_STRING([--enable-fxt-lock],
[enable additional locking systems FxT traces])],
enable_fxt_lock=$enableval, enable_fxt_lock=no)
AC_MSG_RESULT($enable_fxt_lock)
if test x$enable_fxt_lock = xyes; then
AC_DEFINE(STARPU_FXT_LOCK_TRACES, [1], [enable additional locking systems FxT traces])
fi
AC_ARG_ENABLE(papi, [AS_HELP_STRING([--disable-papi],
[disable using papi])],
enable_papi=$enableval, enable_papi=yes)
if test x$enable_papi = xyes; then
PKG_CHECK_MODULES([PAPI], [papi], [have_valid_papi=yes], [have_valid_papi=no])
if test x$have_valid_papi = xyes ; then
AC_DEFINE([STARPU_PAPI], [1], [Define to 1 if you have the libpapi library])
STARPU_EXPORTED_LIBS="$STARPU_EXPORTED_LIBS $PAPI_LIBS"
fi
fi
AC_MSG_CHECKING(whether performance debugging should be enabled)
AC_ARG_ENABLE(perf-debug, [AS_HELP_STRING([--enable-perf-debug],
[enable performance debugging through gprof])],
enable_perf_debug=$enableval, enable_perf_debug=no)
AC_MSG_RESULT($enable_perf_debug)
AC_SUBST(STARPU_PERF_DEBUG, $enable_perf_debug)
if test x$enable_perf_debug = xyes; then
AC_DEFINE(STARPU_PERF_DEBUG, [1], [enable performance debug])
CPPFLAGS="${CPPFLAGS} -pg "
LDFLAGS="${LDFLAGS} -pg "
fi
AC_MSG_CHECKING(whether performance model debugging should be enabled)
AC_ARG_ENABLE(model-debug, [AS_HELP_STRING([--enable-model-debug],
[enable performance model debugging])],
enable_model_debug=$enableval, enable_model_debug=no)
AC_MSG_RESULT($enable_model_debug)
if test x$enable_model_debug = xyes; then
AC_DEFINE(STARPU_MODEL_DEBUG, [1], [enable performance model debug])
fi
AC_MSG_CHECKING(whether memory stats should be displayed)
AC_ARG_ENABLE(memory-stats, [AS_HELP_STRING([--enable-memory-stats],
[enable memory stats])],
enable_memory_stats=$enableval, enable_memory_stats=no)
AC_MSG_RESULT($enable_memory_stats)
if test x$enable_memory_stats = xyes; then
AC_DEFINE(STARPU_MEMORY_STATS, [1], [enable memory stats])
fi
AC_ARG_ENABLE(glpk, [AS_HELP_STRING([--disable-glpk],
[disable using glpk for bound computation])],
enable_glpk=$enableval, enable_glpk=yes)
if test x$enable_glpk = xyes; then
AC_CHECK_HEADERS([glpk.h], [AC_DEFINE([STARPU_HAVE_GLPK_H], [1], [Define to 1 if you have the <glpk.h> header file.])])
STARPU_HAVE_LIBRARY(GLPK, [glpk])
fi
AC_ARG_WITH(ayudame1-include-dir,
[AS_HELP_STRING([--with-ayudame1-include-dir=<path>],
[specify where Ayudame version 1 headers are installed])],
[
ayudame1_include_dir="$withval"
if test -n "$ayudame1_include_dir"; then
CPPFLAGS="-I$ayudame1_include_dir $CPPFLAGS"
fi
], [ayudame1_include_dir=no])
AC_ARG_WITH(ayudame2-include-dir,
[AS_HELP_STRING([--with-ayudame2-include-dir=<path>],
[specify where Ayudame version 2 headers are installed])],
[
ayudame2_include_dir="$withval"
if test -n "$ayudame2_include_dir"; then
CPPFLAGS="-I$ayudame2_include_dir $CPPFLAGS"
fi
], [ayudame2_include_dir=no])
# Ayudame 1 header is capitalized
AC_CHECK_HEADERS([Ayudame.h])
AC_ARG_ENABLE(ayudame1, [AS_HELP_STRING([--disable-ayudame1],
[Do not use Ayudame lib version 1])],
enable_ayudame1=$enableval, enable_ayudame1=yes)
# Ayudame 2 header is lowercase
AC_CHECK_HEADERS([ayudame.h])
AC_ARG_ENABLE(ayudame2, [AS_HELP_STRING([--disable-ayudame2],
[Do not use Ayudame lib version 2])],
enable_ayudame2=$enableval, enable_ayudame2=yes)
if test x$enable_ayudame1 = xyes -a x$ac_cv_header_Ayudame_h = xyes; then
AC_DEFINE([STARPU_USE_AYUDAME1], [1], [Define to 1 if Ayudame 1 is available and should be used])
ayu_msg="yes, use version 1"
else
if test x$enable_ayudame2 = xyes -a x$ac_cv_header_ayudame_h = xyes; then
AC_DEFINE([STARPU_USE_AYUDAME2], [1], [Define to 1 if Ayudame 2 is available and should be used])
ayu_msg="yes, use version 2"
else
ayu_msg="no"
fi
fi
AM_CONDITIONAL([STARPU_USE_AYUDAME1], [test "x$enable_ayudame1" = "xyes"])
AM_CONDITIONAL([STARPU_USE_AYUDAME2], [test "x$enable_ayudame2" = "xyes"])
STARPU_FXT_EVENT_DEFINES="`grep -E '#define\s+_STARPU_(MPI_)?FUT_' ${srcdir}/src/common/fxt.h ${srcdir}/mpi/src/starpu_mpi_fxt.h | grep 0x | grep -v 0x1 | cut -d : -f 2`"
AC_SUBST([STARPU_FXT_EVENT_DEFINES])
# Heteroprio works better if it can store information based on the program's name
AC_MSG_CHECKING(whether the target supports program_invocation_short_name)
AC_LINK_IFELSE([AC_LANG_SOURCE(
[
#include <stdio.h>
#include <errno.h>
int main() {
printf("%s\n", program_invocation_short_name);
return 0;
}
])],
[AC_DEFINE([STARPU_HAVE_PROGRAM_INVOCATION_SHORT_NAME], [1], [variable program_invocation_short_name is available]) AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no)
)
###############################################################################
# #
# Miscellaneous options for StarPU #
# #
###############################################################################
AC_MSG_CHECKING(whether data locality should be enforced)
AC_ARG_ENABLE(data-locality-enforce, [AS_HELP_STRING([--enable-data-locality-enforce],
[disable data locality enforcement])],
enable_data_locality_enforce=$enableval, enable_data_locality_enforce=no)
AC_MSG_RESULT($enable_data_locality_enforce)
if test x$enable_data_locality_enforce = xyes ; then
AC_DEFINE([STARPU_DATA_LOCALITY_ENFORCE], [1], [Define to 1 to enforce data locality])
fi
AC_MSG_CHECKING(how many buffers can be manipulated per task)
AC_ARG_ENABLE(maxbuffers, [AS_HELP_STRING([--enable-maxbuffers=<nbuffers>],
[maximum number of buffers per task])],
nmaxbuffers=$enableval, nmaxbuffers=8)
if test x$nmaxbuffers = x -o x$nmaxbuffers = xyes
then
AC_MSG_ERROR([The --enable-maxbuffers option needs to be given a number])
fi
AC_MSG_RESULT($nmaxbuffers)
AC_DEFINE_UNQUOTED(STARPU_NMAXBUFS, [$nmaxbuffers],
[how many buffers can be manipulated per task])
AC_MSG_CHECKING(how many MPI nodes fxt files can be manipulated when generating traces)
AC_ARG_ENABLE(fxt-max-files, [AS_HELP_STRING([--enable-fxt-max-files=<nbuffers>],
[maximum number of mpi nodes for traces])],
nmaxfxtfiles=$enableval, nmaxfxtfiles=64)
if test x$nmaxfxtfiles = x -o x$nmaxfxtfiles = xyes
then
AC_MSG_ERROR([The --enable-maxfxtfiles option needs to be given a number])
fi
AC_MSG_RESULT($nmaxfxtfiles)
AC_DEFINE_UNQUOTED(STARPU_FXT_MAX_FILES, [$nmaxfxtfiles],
[how many MPI nodes fxt files can be manipulated when generating traces])
AC_MSG_CHECKING(maximum number of memory nodes to use per MPI rank)
AC_ARG_ENABLE(maxnodes, [AS_HELP_STRING([--enable-maxnodes=<nnodes>],
[maximum number of memory nodes per MPI rank])],
maxnodes=$enableval, maxnodes=0)
if test x$maxnodes = x0 ; then
if test x$enable_simgrid = xyes ; then
# We need the room for the virtual CUDA/OpenCL devices
nodes=`expr 4 + $nmaxcudadev + $nmaxopencldev + 1 + $nmaxmpidev`
else
# We have one memory node shared by all CPU workers, one node per GPU
# we add nodes to use 2 memory disks
nodes=`expr $nmaxnumanodes + 2`
if test x$enable_cuda = xyes ; then
# we could have used nmaxcudadev + 1, but this would certainly give an
# odd number.
nodes=`expr $nodes + $nmaxcudadev`
fi
if test x$enable_hip = xyes ; then
# we could have used nmaxhipdev + 1, but this would certainly give an
# odd number.
nodes=`expr $nodes + $nmaxhipdev`
fi
if test x$enable_opencl = xyes ; then
# we could have used nmaxopencldev + 1, but this would certainly give an
# odd number.
nodes=`expr $nodes + $nmaxopencldev`
fi
if test x$enable_max_fpga = xyes ; then
#Â we could have used nmaxmaxfpgadev + 1, but this would certainly give an
#Â odd number.
nodes=`expr $nodes + $nmaxmaxfpgadev`
fi
#nmaxmpidev = 0 if mpi master-slave is disabled
nodes=`expr $nodes + $nmaxmpidev`
#nmaxtcpipdev = 0 if tcpip master-slave is disabled
nodes=`expr $nodes + $nmaxtcpipdev`
fi
# set maxnodes to the next power of 2 greater than nodes
maxnodes=1
while test "$maxnodes" -lt "$nodes"
do
maxnodes=`expr $maxnodes \* 2`
done
fi
if test x$maxnodes = x -o x$maxnodes = xyes
then
AC_MSG_ERROR([The --enable-maxnodes option needs to be given a number])
fi
if test $maxnodes -gt 32 ; then
AC_MSG_WARN([Note: the wt_mask feature only supports 32 memory nodes])
fi
AC_MSG_CHECKING(maximum number of memory nodes)
AC_MSG_RESULT($maxnodes)
AC_DEFINE_UNQUOTED(STARPU_MAXNODES, [$maxnodes],
[maximum number of memory nodes])
AC_MSG_CHECKING(whether allocation cache should be used)
AC_ARG_ENABLE(allocation-cache, [AS_HELP_STRING([--disable-allocation-cache],
[disable data allocation cache])],
enable_allocation_cache=$enableval, enable_allocation_cache=yes)
AC_MSG_RESULT($enable_allocation_cache)
if test x$enable_allocation_cache = xyes; then
AC_DEFINE(STARPU_USE_ALLOCATION_CACHE, [1], [enable data allocation cache])
fi
AC_ARG_WITH(perf-model-dir, [AS_HELP_STRING([--with-perf-model-dir=<dir>], [specify where performance models should be stored])],
[
if test x$withval = xno; then
AC_MSG_ERROR(--without-perf-model-dir is not a valid option)
fi
perf_model_dir="$withval"
have_explicit_perf_model_dir=yes
AC_DEFINE_UNQUOTED(STARPU_PERF_MODEL_DIR, ["$perf_model_dir"], [performance models location])
], [
# by default, we put the performance models in
# $HOME/.starpu/sampling/
have_explicit_perf_model_dir=no
perf_model_dir="\$STARPU_HOME/.starpu/sampling/"
]
)
AC_MSG_CHECKING(using explicit performance model location)
AC_MSG_RESULT($have_explicit_perf_model_dir)
AC_MSG_CHECKING(performance models location)
AC_MSG_RESULT($perf_model_dir)
# On many multicore CPUs, clock cycles are not synchronized
AC_CHECK_LIB([rt], [clock_gettime])
AC_CHECK_FUNCS([clock_gettime])
# Compute the maximum number of workers (we round it to 16 for alignment
# purposes).
if test x$enable_simgrid != xyes; then
if test x$enable_cpu != xyes; then
maxcpus=0
fi
if test x$enable_cuda != xyes; then
nmaxcudadev=0
fi
if test x$enable_max_fpga != xyes; then
nmaxmaxfpgadev=0
fi
if test x$enable_opencl != xyes; then
nmaxopencldev=0
fi
#By default, if we cannot build mpi master-slave nmaxmpidev is set to zero.
#But with the multiplication with maxcpus, we need to put it to one.
if test x$build_mpi_master_slave != xyes; then
nmaxmpidev=1
fi
#By default, if we cannot build tcp/ip master-slave nmaxtcpipdev is set to zero.
#But with the multiplication with maxcpus, we need to put it to one.
if test x$build_tcpip_master_slave != xyes; then
nmaxtcpipdev=1
fi
fi
if test $maxcpus = 0
then
nmaxworkers=`expr 16 \* \( \( \( $nmaxmpidev \* 64 \) + $nmaxcudadev + $nmaxhipdev + $nmaxopencldev + $nmaxmaxfpgadev + 15 \) / 16 \) `
elif test $nmaxmpidev = 0
then
nmaxworkers=`expr 16 \* \( \( $maxcpus + $nmaxcudadev + $nmaxhipdev + $nmaxopencldev + $nmaxmaxfpgadev + 15 \) / 16 \) `
else
nmaxworkers=`expr 16 \* \( \( \( $nmaxmpidev \* $maxcpus \) + $nmaxcudadev + $nmaxhipdev + $nmaxopencldev + $nmaxmaxfpgadev + 15 \) / 16 \) `
fi
AC_MSG_CHECKING(Maximum number of workers)
AC_MSG_RESULT($nmaxworkers)
AC_DEFINE_UNQUOTED(STARPU_NMAXWORKERS, [$nmaxworkers], [Maximum number of workers])
nmaxdevs=0
if test $nmaxdevs -lt $nmaxcudadev; then
nmaxdevs=$nmaxcudadev
fi
if test $nmaxdevs -lt $nmaxhipdev; then
nmaxdevs=$nmaxhipdev
fi
if test $nmaxdevs -lt $nmaxopencldev; then
nmaxdevs=$nmaxopencldev
fi
if test $nmaxdevs -lt $nmaxmaxfpgadev; then
nmaxdevs=$nmaxmaxfpgadev
fi
if test $nmaxdevs -lt $nmaxmpidev; then
nmaxdevs=$nmaxmpidev
fi
if test $nmaxdevs -lt $nmaxtcpipdev; then
nmaxdevs=$nmaxtcpipdev
fi
AC_DEFINE_UNQUOTED(STARPU_NMAXDEVS, [$nmaxdevs], [Maximum number of device per device arch])
# Computes the maximum number of combined worker
nmaxcombinedworkers=$maxcpus
AC_MSG_CHECKING(Maximum number of workers combinations)
AC_MSG_RESULT($nmaxcombinedworkers)
AC_DEFINE_UNQUOTED(STARPU_NMAX_COMBINEDWORKERS,
[$nmaxcombinedworkers], [Maximum number of worker combinations])
# Computes the maximum number of implementations per arch
AC_MSG_CHECKING(maximum number of implementations)
AC_ARG_ENABLE(maximplementations, [AS_HELP_STRING([--enable-maximplementations=<number>],
[maximum number of implementations])],
maximplementations=$enableval, maximplementations=4)
AC_MSG_RESULT($maximplementations)
AC_DEFINE_UNQUOTED(STARPU_MAXIMPLEMENTATIONS, [$maximplementations],
[maximum number of implementations])
if test x$maximplementations = x -o x$maximplementations = xyes
then
AC_MSG_ERROR([The --enable-maximplementations option needs to be given a number])
fi
# Enable LevelDB support if requested and the lib is found
AC_ARG_ENABLE(leveldb, [AS_HELP_STRING([--enable-leveldb],
[Enable linking with LevelDB if available])],
enable_leveldb=$enableval, enable_leveldb=no)
if test x$enable_leveldb = xyes; then
AC_LANG_PUSH([C++])
AC_CHECK_HEADERS([leveldb/db.h], [AC_DEFINE([STARPU_HAVE_LEVELDB], [1], [Define to 1 if you have the <leveldb/db.h> header file.])])
STARPU_HAVE_LIBRARY(LEVELDB, [leveldb])
AC_LANG_POP([C++])
fi
AM_CONDITIONAL(STARPU_HAVE_LEVELDB, test "x$enable_leveldb" = "xyes" -a "x$ac_cv_lib_leveldb_main" = "xyes")
#Â Defines the calibration heuristic for the history-based calibration of StarPU
AC_MSG_CHECKING(calibration heuristic of history-based StarPU calibrator)
AC_ARG_ENABLE(calibration-heuristic, [AS_HELP_STRING([--enable-calibration-heuristic=<number>],
[Define the maximum authorized deviation of StarPU history-based calibrator.])],
calibration_heuristic=$enableval, calibration_heuristic=50)
AC_MSG_RESULT($calibration_heuristic)
AC_DEFINE_UNQUOTED(STARPU_HISTORYMAXERROR, [$calibration_heuristic], [calibration heuristic value])
###############################################################################
# #
# MP Common settings #
# #
###############################################################################
if test x$build_mpi_master_slave = xyes -o x$build_tcpip_master_slave = xyes; then
build_master_slave=yes
else
build_master_slave=no
fi
AC_MSG_CHECKING(whether the master-slave mode should be enabled)
AC_MSG_RESULT($build_master_slave)
AM_CONDITIONAL([STARPU_USE_MP], test "x$build_master_slave" = "xyes")
AC_ARG_ENABLE([export-dynamic], [AS_HELP_STRING([--disable-export-dynamic],
[Prevent the linker from adding all symbols to the dynamic symbol table])], [], [])
if test x$build_master_slave = xyes; then
AC_DEFINE(STARPU_USE_MP, [1], [Message-passing SINKs support
is enabled])
if test x$enable_export_dynamic != xno ; then
STARPU_EXPORT_DYNAMIC="-rdynamic"
fi
fi
AC_SUBST(STARPU_EXPORT_DYNAMIC)
###############################################################################
# #
# Flags for C Compiler #
# #
###############################################################################
IS_SUPPORTED_FLAG(-Wall)
IS_SUPPORTED_CFLAG(-Werror=implicit)
IS_SUPPORTED_CFLAG(-Werror=implicit-function-declaration)
if test x$enable_perf_debug = xyes; then
IS_SUPPORTED_FLAG(-no-pie)
IS_SUPPORTED_FLAG(-no-PIE)
IS_SUPPORTED_FLAG(-fno-pie)
fi
IS_SUPPORTED_FLAG(-Wextra)
IS_SUPPORTED_FLAG(-Wunused)
IS_SUPPORTED_CFLAG(-Wundef)
IS_SUPPORTED_CXXFLAG(-Wundef)
IS_SUPPORTED_FLAG(-Wshadow)
IS_SUPPORTED_CFLAG(-Wpointer-arith)
IS_SUPPORTED_CXXFLAG(-Wpointer-arith)
if test "x$STARPU_DEVEL" != x; then
AC_DEFINE(STARPU_DEVEL, [1], [enable developer warnings])
IS_SUPPORTED_CFLAG(-Werror=pointer-arith)
IS_SUPPORTED_CXXFLAG(-Werror=pointer-arith)
IS_SUPPORTED_FLAG(-fno-common)
fi
AM_CONDITIONAL([STARPU_DEVEL],[test "x$STARPU_DEVEL" != x])
AC_SUBST(GLOBAL_AM_CFLAGS)
AC_SUBST(GLOBAL_AM_CXXFLAGS)
AC_SUBST(GLOBAL_AM_FFLAGS)
AC_SUBST(GLOBAL_AM_FCFLAGS)
# Same value as Automake's, for use in other places.
pkglibdir="\${libdir}/$PACKAGE"
AC_SUBST([pkglibdir])
AC_ARG_WITH(check-flags, [AS_HELP_STRING([--with-check-flags],
[Specify flags for C and Fortran compilers])],
check_flags=$withval, check_flags="")
if test "x$check_flags" != "x" ; then
for xflag in $check_flags
do
IS_SUPPORTED_FLAG($xflag)
done
fi
########################################################################
# #
# Parallel worker support #
# #
########################################################################
default_enable_parallel_worker=yes
if test x$starpu_darwin = xyes ; then
default_enable_parallel_worker=no
fi
AC_ARG_ENABLE(parallel-worker, [AS_HELP_STRING([--enable-parallel-worker], [build the parallel worker support])],
enable_parallel_worker=$enableval, enable_parallel_worker=$default_enable_parallel_worker)
AC_MSG_CHECKING(for parallel worker support)
if test x$enable_parallel_worker = xyes; then
AC_DEFINE(STARPU_PARALLEL_WORKER, [1], [Define this to enable parallel worker support])
AC_OPENMP
fi
AM_CONDITIONAL([STARPU_PARALLEL_WORKER], [test "x$enable_parallel_worker" = "xyes"])
AC_MSG_RESULT($enable_parallel_worker)
###############################################################################
# #
# OpenMP LLVM runtime support #
# #
###############################################################################
AC_ARG_ENABLE(openmp-llvm, [AS_HELP_STRING([--enable-openmp-llvm],
[build the OpenMP LLVM runtime support])],
enable_openmp_llvm=$enableval, enable_openmp_llvm=no)
openmp_llvm_msg=""
if test x$starpu_windows = xyes ; then
enable_openmp_llvm=no
openmp_llvm_msg="disabled on windows"
fi
if test x$enable_simgrid = xyes ; then
enable_openmp_llvm=no
openmp_llvm_msg="incompatibility with Simgrid support"
fi
if test x$PROG_CLANG = x ; then
enable_openmp_llvm=no
openmp_llvm_msg="missing clang"
fi
if test x$enable_openmp_llvm = xyes; then
AC_DEFINE(STARPU_OPENMP_LLVM, [1], [Define this to enable LLVM OpenMP runtime support])
# Force activating the generic OpenMP runtime support
enable_openmp="yes"
fi
AC_MSG_CHECKING(for LLVM OpenMP runtime support)
AM_CONDITIONAL([STARPU_OPENMP_LLVM], [test "x$enable_openmp_llvm" = "xyes"])
AC_MSG_RESULT($enable_openmp_llvm $openmp_llvm_msg)
###############################################################################
# #
# OpenMP runtime support #
# #
###############################################################################
AC_ARG_ENABLE(openmp, [AS_HELP_STRING([--enable-openmp],
[build the OpenMP runtime support])],
enable_openmp=$enableval, enable_openmp=yes)
AC_CHECK_HEADER([ucontext.h],[have_valid_ucontext=yes],[have_valid_ucontext=no])
openmp_msg=""
if test x$starpu_windows = xyes ; then
enable_openmp=no
openmp_msg="disabled on windows"
fi
if test x$enable_simgrid = xyes ; then
enable_openmp=no
openmp_msg="incompatibility with Simgrid support"
fi
if test x$have_valid_ucontext = xno ; then
enable_openmp=no
openmp_msg="ucontext.h unavailable"
fi
if test x$enable_openmp = xyes; then
AC_DEFINE(STARPU_OPENMP, [1], [Define this to enable OpenMP runtime support])
fi
AC_MSG_CHECKING(for OpenMP runtime support)
AM_CONDITIONAL([STARPU_OPENMP], [test "x$enable_openmp" = "xyes"])
AC_MSG_RESULT($enable_openmp $openmp_msg)
AM_CONDITIONAL([STARPU_HAVE_OPENMP],[test x$enable_simgrid = xno -a -n "$OPENMP_CFLAGS" -a x$starpu_windows != xyes])
###############################################################################
# #
# SOCL interface #
# #
###############################################################################
AC_ARG_ENABLE([socl],
[AS_HELP_STRING([--enable-socl],
[build the OpenCL interface (experimental)])],
[enable_socl="$enableval"],
[enable_socl="maybe"])
AC_MSG_CHECKING(for SOCL)
# in case SOCL was explicitly required, but is not available, this is an error
if test "x$enable_socl" = "xyes" -a "$have_valid_opencl" = "no" ; then
AC_MSG_ERROR([SOCL cannot be enabled without OpenCL])
fi
# now we enable SOCL if and only if a proper setup is available
if test "x$enable_socl" = "xyes" -o "x$enable_socl" = "xmaybe" ; then
build_socl=$have_valid_opencl
else
build_socl=no
fi
AC_MSG_RESULT($build_socl)
AM_CONDITIONAL([STARPU_BUILD_SOCL], [test "x$build_socl" = "xyes"])
AM_CONDITIONAL([STARPU_USE_SOCL], [test "x$build_socl" = "xyes"])
if test "$build_socl" = "yes" ; then
AC_CHECK_FUNCS([clGetExtensionFunctionAddressForPlatform])
if test -n "$SOCL_OCL_LIB_OPENCL" -a -f "$SOCL_OCL_LIB_OPENCL" ; then
run_socl_check=yes
SOCL_OCL_LIB_OPENCL_DIR=$(dirname $SOCL_OCL_LIB_OPENCL)
AC_SUBST(SOCL_OCL_LIB_OPENCL_DIR)
else
run_socl_check=no
fi
else
run_socl_check=no
fi
###############################################################################
# #
# Debugging #
# #
###############################################################################
AC_PATH_PROG([GDB], [gdb], [not-found])
if test "x$GDB" != "xnot-found"; then
AC_DEFINE_UNQUOTED([STARPU_GDB_PATH], ["$GDB"],
[Path to the GNU debugger.])
fi
###############################################################################
# #
# Examples #
# #
###############################################################################
AC_ARG_ENABLE(build-tests, [AS_HELP_STRING([--disable-build-tests],
[disable building of tests])],
enable_build_tests=$enableval, enable_build_tests=yes)
# check stuff for tests (todo)
AM_CONDITIONAL(STARPU_BUILD_TESTS, [test x$enable_build_tests != xno])
AC_ARG_ENABLE(build-examples, [AS_HELP_STRING([--disable-build-examples],
[disable building of examples])],
enable_build_examples=$enableval, enable_build_examples=yes)
# check stuff for examples (todo)
AM_CONDITIONAL(STARPU_BUILD_EXAMPLES, [test x$enable_build_examples != xno])
AC_ARG_ENABLE(opengl-render, [AS_HELP_STRING([--enable-opengl-render],
[enable OpenGL rendering of some examples])],
enable_opengl_render=$enableval, enable_opengl_render=no)
if test x$enable_opengl_render = xyes; then
STARPU_CHECK_LIB(OPENGL_RENDER, glut, glutInit,,AC_MSG_ERROR([cannot find glut]))
STARPU_CHECK_LIB(OPENGL_RENDER, GL, glXCreateContext,,AC_MSG_ERROR([cannot find GL]))
STARPU_CHECK_LIB(OPENGL_RENDER, GLU, gluLookAt,,AC_MSG_ERROR([cannot find GLU]))
AC_DEFINE(STARPU_OPENGL_RENDER, [1], [enable OpenGL rendering of some examples])
fi
AC_MSG_CHECKING(whether OpenGL rendering is enabled)
AC_SUBST(STARPU_OPENGL_RENDER, $enable_opengl_render)
AC_MSG_RESULT($enable_opengl_render)
AM_CONDITIONAL([STARPU_HAVE_OPENGL], [test "x$enable_opengl_render" = xyes])
AC_PATH_XTRA
if test "x$no_x" != "xyes"; then
AC_DEFINE(STARPU_HAVE_X11, [1], [enable X11])
fi
AM_CONDITIONAL([STARPU_HAVE_X11], [test "x$no_x" != "xyes"])
# In case there are BLAS kernels that are used by the example applications
# we may specify which library to use. Note that this is not used for StarPU
# itself.
blas_lib=maybe
AC_ARG_ENABLE(blas-lib,
[ --enable-blas-lib[=blaslibname]:
none [default]: no BLAS lib is used
atlas: use ATLAS library
goto: use GotoBLAS library
mkl: use MKL library (you may need to set specific CFLAGS and LDFLAGS with --with-mkl-cflags and --with-mkl-ldflags)],
[
if test "x$enableval" = "xatlas" ; then
blas_lib=atlas
elif test "x$enableval" = "xgoto" ; then
blas_lib=goto
elif test "x$enableval" = "xopenblas" ; then
blas_lib=openblas
elif test "x$enableval" = "xnone" ; then
blas_lib=none
elif test "x$enableval" = "xmkl" ; then
blas_lib=mkl
elif test "x$enableval" = "xarmpl" ; then
blas_lib=armpl
elif test x$enableval = xno; then
blas_lib=none
else
echo
echo "Error!"
echo "Unknown BLAS library"
exit -1
fi
])
if test x$blas_lib = xmaybe -o x$blas_lib = xgoto; then
AC_ARG_WITH(goto-dir, [AS_HELP_STRING([--with-goto-dir=<dir>], [specify GotoBLAS lib location])],
[
blas_lib=goto
gotodir=$withval
AC_SUBST(GOTODIR, $gotodir)
CPPFLAGS="${CPPFLAGS} -I$gotodir/ "
LDFLAGS="${LDFLAGS} -L$gotodir/ "
]
)
if test x$blas_lib = xgoto; then
STARPU_CHECK_LIB(BLAS, gfortran, main,,)
STARPU_CHECK_LIB(BLAS, ifcore, main,,)
# Perhaps that GotoBLAS2 is available instead (so that we have libgotoblas2.{so,a})
STARPU_CHECK_LIB(BLAS, goto2, sgemm_,, [havegoto2=no], [$STARPU_BLAS_LDFLAGS])
if test x$havegoto2 = xno; then
STARPU_CHECK_LIB(BLAS, goto, sgemm_,,AC_MSG_ERROR([cannot find goto lib]), [$STARPU_BLAS_LDFLAGS])
fi
AC_DEFINE(STARPU_GOTO, [1], [use STARPU_GOTO library])
fi
fi
if test x$blas_lib = xmaybe -o x$blas_lib = xatlas; then
AC_ARG_WITH(atlas-dir, [AS_HELP_STRING([--with-atlas-dir=<dir>], [specify ATLAS lib location])],
[
AC_MSG_CHECKING(STARPU_ATLAS location)
blas_lib=atlas
atlasdir=$withval
AC_MSG_RESULT($atlasdir)
AC_SUBST(ATLASDIR, $atlasdir)
CPPFLAGS="${CPPFLAGS} -I$atlasdir/include/ "
LDFLAGS="${LDFLAGS} -L$atlasdir/lib/ "
]
)
if test x$blas_lib = xatlas; then
# test whether STARPU_ATLAS is actually available
AC_CHECK_HEADER([cblas.h],,AC_MSG_ERROR([cannot find atlas headers]))
STARPU_CHECK_LIB(BLAS, atlas, ATL_sgemm,,AC_MSG_ERROR([cannot find atlas lib]),)
STARPU_CHECK_LIB(BLAS, cblas, cblas_sgemm,,AC_MSG_ERROR([cannot find atlas lib]),[-latlas])
STARPU_CHECK_LIB(BLAS, f77blas, sgemm_,,AC_MSG_ERROR([cannot find f77blas lib]),)
AC_DEFINE(STARPU_ATLAS, [1], [use STARPU_ATLAS library])
fi
fi
if test x$blas_lib = xmaybe -o x$blas_lib = xopenblas; then
PKG_CHECK_MODULES([OPENBLAS], [openblas],
[PKG_CHECK_MODULES([BLAS_OPENBLAS], [blas-openblas],
[AC_DEFINE([STARPU_OPENBLAS], [1], [Define to 1 if you use the openblas library.])
AC_SUBST([STARPU_OPENBLAS], [1])
CFLAGS="${CFLAGS} ${OPENBLAS_CFLAGS} ${BLAS_OPENBLAS_CFLAGS} "
LIBS="${LIBS} ${OPENBLAS_LIBS} ${BLAS_OPENBLAS_LIBS} "
blas_lib=openblas
],
[ if test x$blas_lib = xopenblas; then
STARPU_CHECK_LIB(OPENBLAS, blas-openblas, cblas_sgemm,,AC_MSG_ERROR([cannot find blas-openblas lib]),[-lblas-openblas])
AC_DEFINE([STARPU_OPENBLAS], [1], [Define to 1 if you use the openblas library.])
AC_SUBST([STARPU_OPENBLAS], [1])
fi
])
],
[ if test x$blas_lib = xopenblas; then
STARPU_CHECK_LIB(OPENBLAS, openblas, cblas_sgemm,,AC_MSG_ERROR([cannot find openblas lib]),[-lopenblas])
AC_DEFINE([STARPU_OPENBLAS], [1], [Define to 1 if you use the openblas library.])
AC_SUBST([STARPU_OPENBLAS], [1])
fi
] )
fi
if test x$blas_lib = xmaybe -o x$blas_lib = xmkl; then
# Should we use MKL ?
if test -n "$MKLROOT" ; then
CPPFLAGS="${CPPFLAGS} -I$MKLROOT/include"
case $host_vendor in
*1om) mkl_plat=mic ;;
*) mkl_plat=intel64 ;;
esac
SAVED_LIBS=$LIBS
STARPU_BLAS_LDFLAGS="-L$MKLROOT/lib/$mkl_plat -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lm -lpthread -ldl"
LIBS="$LIBS $STARPU_BLAS_LDFLAGS"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[
#include <mkl.h>
]], [[ ]])],
[ blas_lib=mkl ],
[ STARPU_BLAS_LDFLAGS="" ],
)
LIBS=$SAVED_LIBS
fi
AC_ARG_WITH(mkl-cflags, [AS_HELP_STRING([--with-mkl-cflags], [specify MKL compilation flags])],
[
CPPFLAGS="${CPPFLAGS} $withval"
blas_lib=mkl
])
AC_ARG_WITH(mkl-ldflags, [AS_HELP_STRING([--with-mkl-ldflags], [specify MKL linking flags])],
[
STARPU_BLAS_LDFLAGS="$withval"
blas_lib=mkl
])
if test x$blas_lib = xmkl; then
AC_DEFINE(STARPU_MKL, [1], [use MKL library])
fi
fi
if test x$blas_lib = xmaybe -o x$blas_lib = xarmpl; then
# Should we use ARMPL ?
if test -n "$ARMPL_DIR" ; then
CPPFLAGS="${CPPFLAGS} -I$ARMPL_INCLUDES"
SAVED_LIBS=$LIBS
STARPU_BLAS_LDFLAGS="-L$ARMPL_LIBRARIES -larmpl_lp64 -lgfortran -lm"
LIBS="$LIBS $STARPU_BLAS_LDFLAGS"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[
#include <armpl.h>
]], [[ ]])],
[ blas_lib=armpl ],
[ STARPU_BLAS_LDFLAGS="" ],
)
LIBS=$SAVED_LIBS
fi
AC_ARG_WITH(armpl-cflags, [AS_HELP_STRING([--with-armpl-cflags], [specify ARMPL compilation flags])],
[
CPPFLAGS="${CPPFLAGS} $withval"
blas_lib=armpl
])
AC_ARG_WITH(armpl-ldflags, [AS_HELP_STRING([--with-armpl-ldflags], [specify ARMPL linking flags])],
[
STARPU_BLAS_LDFLAGS="$withval"
blas_lib=armpl
])
if test x$blas_lib = xarmpl; then
AC_DEFINE(STARPU_ARMPL, [1], [use ARMPL library])
fi
fi
if test x$blas_lib = xmaybe; then
#perhaps it is possible to use some BLAS lib from the system
use_system_blas=no
STARPU_SEARCH_LIBS(BLAS,[sgemm_],[blas],use_system_blas=yes,,)
if test x$use_system_blas = xyes; then
AC_DEFINE(STARPU_SYSTEM_BLAS, [1], [use refblas library])
blas_lib=system
elif test x"$BLAS_LIBS" != x; then
AC_DEFINE(STARPU_SYSTEM_BLAS, [1], [use user defined library])
STARPU_BLAS_LDFLAGS="$BLAS_LIBS"
blas_lib=system
AC_ARG_VAR([BLAS_LIBS], [linker flags for blas])
else
blas_lib=none
fi
fi
if test x$blas_lib = xsystem; then
AC_CHECK_HEADER([cblas.h], [have_cblas_h=yes], [have_cblas_h=no])
fi
AM_CONDITIONAL(STARPU_HAVE_CBLAS_H, test x$have_cblas_h = xyes)
if test x$have_cblas_h = xyes; then
AC_DEFINE(STARPU_HAVE_CBLAS_H, [1], [The blas library has blas.h])
fi
if test x$blas_lib != xnone; then
AC_DEFINE(STARPU_HAVE_BLAS, [1], [The blas library is available])
SAVED_LIBS="$LIBS"
LIBS="$LIBS -lblas"
AC_CHECK_FUNCS([cblas_sgemv])
LIBS="$SAVED_LIBS"
STARPU_SEARCH_LIBS([LIBLAPACK],[dgels_],[lapack],[enable_liblapack=yes],[enable_liblapack=no])
fi
AM_CONDITIONAL(STARPU_HAVE_LIBLAPACK,test x$enable_liblapack = xyes)
AM_CONDITIONAL(STARPU_HAVE_CBLAS_SGEMV, test x$HAVE_CBLAS_SGEMV = x1)
AM_CONDITIONAL(STARPU_ATLAS_BLAS_LIB, test x$blas_lib = xatlas)
AM_CONDITIONAL(STARPU_GOTO_BLAS_LIB, test x$blas_lib = xgoto)
AM_CONDITIONAL(STARPU_MKL_BLAS_LIB, test x$blas_lib = xmkl)
AM_CONDITIONAL(STARPU_SYSTEM_BLAS_LIB, test x$blas_lib = xsystem)
AM_CONDITIONAL(STARPU_NO_BLAS_LIB, test x$blas_lib = xnone -a x$enable_simgrid = xno)
AC_SUBST(STARPU_BLAS_LDFLAGS)
AC_MSG_CHECKING(which BLAS lib should be used)
AC_MSG_RESULT($blas_lib)
AC_SUBST(BLAS_LIB,$blas_lib)
###############################################################################
# #
# Multiple linear regression #
# #
###############################################################################
AC_ARG_ENABLE(mlr, [AS_HELP_STRING([--enable-mlr],
[Enable multiple linear regression models])],
enable_mlr=$enableval, enable_mlr=no)
AC_ARG_ENABLE(mlr-system-blas, [AS_HELP_STRING([--enable-mlr-system-blas],
[Make the multiple linear regression models use the system BLAS instead of min-dgels])],
enable_mlr_blas=$enableval, enable_mlr_blas=no)
AC_MSG_CHECKING(whether multiple linear regression models are disabled)
if test x$enable_mlr = xyes -a "$starpu_windows" != "yes" ; then
AC_MSG_RESULT(no)
install_min_dgels=no
support_mlr=yes
STARPU_SEARCH_LIBS(LAPACK,[dgels_],[lapack],use_system_lapack=yes,,)
if test x$blas_lib = xnone ; then
use_system_lapack=no
fi
if test x$enable_mlr_blas = xyes -a x$use_system_lapack = xyes; then
AC_DEFINE(STARPU_MLR_MODEL, [1], [use reflapack library])
LDFLAGS="-llapack $LDFLAGS"
else
if test x$enable_mlr_blas = xyes -a x$blas_lib = xmkl; then
AC_DEFINE(STARPU_MLR_MODEL, [1], [use mkl library])
else
AC_MSG_CHECKING(whether min-dgels is linked)
if test x"$DGELS_LIBS" != x; then
AC_MSG_RESULT(yes)
AC_DEFINE(STARPU_MLR_MODEL, [1], [use user defined library])
AC_ARG_VAR([DGELS_LIBS], [linker flags for lapack dgels])
else
AC_MSG_RESULT(no)
AC_MSG_CHECKING(min-dgels source)
if test "${cross_compiling}" != "no" ; then
# Cross-compiling is not supported by min-dgels
AC_MSG_RESULT(no)
install_min_dgels=no
support_mlr=no
else
AC_MSG_RESULT(yes)
DGELS_LIBS="-Wl,--start-group $STARPU_BUILD_DIR/min-dgels/build/minlibblas.a $STARPU_BUILD_DIR/min-dgels/build/minlibdgels.a $STARPU_BUILD_DIR/min-dgels/build/minlibf2c.a -Wl,--end-group"
AC_DEFINE(STARPU_MLR_MODEL, [1], [use user defined library])
AC_DEFINE(STARPU_BUILT_IN_MIN_DGELS, [1], [use built-in min_dgels])
AC_ARG_VAR([DGELS_LIBS], [linker flags for lapack dgels])
install_min_dgels=yes
fi
fi
fi
fi
else
AC_MSG_RESULT(yes)
install_min_dgels=no
support_mlr=no
fi
AM_CONDITIONAL(STARPU_USE_MIN_DGELS, test x$install_min_dgels = xyes)
##########################################
# FFT #
##########################################
have_fftw=no
have_fftwf=no
have_fftwl=no
fft_support=no
AC_ARG_ENABLE(starpufft, [AS_HELP_STRING([--disable-starpufft],
[Disable build of StarPU-FFT])],
enable_starpufft=$enableval,enable_starpufft=yes)
PKG_CHECK_MODULES([FFTW], [fftw3], [
AC_DEFINE([STARPU_HAVE_FFTW], [1], [Define to 1 if you have the libfftw3 library.])
AC_SUBST([STARPU_HAVE_FFTW], [1])
have_fftw=yes
], [:])
AM_CONDITIONAL(STARPU_HAVE_FFTW, [test x$have_fftw = xyes])
PKG_CHECK_MODULES([FFTWF], [fftw3f], [
AC_DEFINE([STARPU_HAVE_FFTWF], [1], [Define to 1 if you have the libfftw3f library.])
AC_SUBST([STARPU_HAVE_FFTWF], [1])
have_fftwf=yes
], [:])
AM_CONDITIONAL(STARPU_HAVE_FFTWF, [test x$have_fftwf = xyes])
PKG_CHECK_MODULES([FFTWL], [fftw3l], [
AC_DEFINE([STARPU_HAVE_FFTWL], [1], [Define to 1 if you have the libfftw3l library.])
AC_SUBST([HAVE_FFTWFL], [1])
have_fftwl=yes
], [:])
AM_CONDITIONAL(STARPU_HAVE_FFTWL, [test x$have_fftwl = xyes])
if test x$enable_starpufft = xyes -a \( \( x$enable_cpu = xyes -a x$have_fftw = xyes -a x$have_fftwf = xyes \) -o x$have_cufftdoublecomplex = xyes \); then
fft_support=yes
fi
AM_CONDITIONAL(STARPU_BUILD_STARPUFFT, [test x$fft_support = xyes])
AC_ARG_ENABLE(starpufft-examples, [AS_HELP_STRING([--enable-starpufft-examples],
[enable build of StarPU FFT examples])],
enable_starpufft_examples=$enableval, enable_starpufft_examples=no)
AM_CONDITIONAL(STARPU_BUILD_STARPUFFT_EXAMPLES, [test x$enable_starpufft_examples = xyes])
##########################################
# hwloc #
##########################################
have_valid_hwloc=no
SAVED_LIBS="${LIBS}"
SAVED_CPPFLAGS="${CPPFLAGS}"
SAVED_PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
AC_ARG_WITH([hwloc],
[AS_HELP_STRING([--without-hwloc], [Disable hwloc (enabled by default)])],
[
if test x$withval != xno; then
if test "$withval" = "yes" ; then
use_hwloc=yes
else
# use specified path
if test ! -d "$withval" ; then
AC_MSG_ERROR("Directory specified for hwloc <$withval> does not exist")
fi
if test -d "$withval/lib64/pkgconfig" ; then
export PKG_CONFIG_PATH=$withval/lib64/pkgconfig:$PKG_CONFIG_PATH
else
if test -d "$withval/lib/pkgconfig" ; then
export PKG_CONFIG_PATH=$withval/lib/pkgconfig:$PKG_CONFIG_PATH
else
AC_MSG_ERROR("Hwloc directory <$withval> does not have a subdirectory lib/pkgconfig or lib64/pkgconfig")
fi
fi
use_hwloc=yes
fi
else
use_hwloc=no
fi
],
[
use_hwloc=maybe
])
AS_IF([test "$use_hwloc" != "no"],
[PKG_CHECK_MODULES([HWLOC],[hwloc], [have_valid_hwloc=yes], [have_valid_hwloc=no])]
)
AM_CONDITIONAL(STARPU_HAVE_HWLOC, test "x$have_valid_hwloc" = "xyes")
# in case hwloc was explicitly required, but is not available, this is an error
AS_IF([test "$use_hwloc" = "yes" -a "$have_valid_hwloc" = "no"],
[AC_MSG_ERROR([cannot find hwloc or pkg-config])]
)
# in case hwloc is not available but was not explicitly disabled, this is an error
AS_IF([test "$have_valid_hwloc" = "no" -a "$use_hwloc" != "no"],
[AC_MSG_ERROR([libhwloc or pkg-config was not found on your system. If the target machine is hyperthreaded the performance may be impacted a lot. It is strongly recommended to install libhwloc and pkg-config. However, if you really want to use StarPU without enabling libhwloc, please restart configure by specifying the option '--without-hwloc'.])]
)
LIBS="${HWLOC_LIBS} ${SAVED_LIBS}"
CPPFLAGS="${HWLOC_CFLAGS} ${SAVED_CPPFLAGS}"
AS_IF([test "$have_valid_hwloc" = "yes"],
[AC_DEFINE([STARPU_HAVE_HWLOC], [1], [Define to 1 if you have the hwloc library.])
HWLOC_REQUIRES=hwloc
AC_SUBST([STARPU_HAVE_HWLOC], [1])
AC_CHECK_DECLS([hwloc_cuda_get_device_osdev_by_index], [], [], [[#include <hwloc/cuda.h>]])
AC_CHECK_DECLS([hwloc_hip_get_device_osdev_by_index], [], [], [[#include <hwloc/hip.h>]])
AC_CHECK_DECLS([hwloc_distances_obj_pair_values], [], [], [[#include <hwloc.h>]])
])
AC_CHECK_FUNCS([hwloc_topology_dup])
AC_CHECK_FUNCS([hwloc_topology_set_components])
AC_CHECK_FUNCS([hwloc_cpukinds_get_nr])
AC_CHECK_FUNCS([hwloc_get_area_memlocation])
AM_CONDITIONAL(STARPU_HWLOC_HAVE_TOPOLOGY_DUP, test $ac_cv_func_hwloc_topology_dup = yes)
LIBS="${SAVED_LIBS}"
CPPFLAGS="${SAVED_CPPFLAGS}"
export PKG_CONFIG_PATH=$SAVED_PKG_CONFIG_PATH
AC_MSG_CHECKING(whether hwloc should be used)
AC_MSG_RESULT($have_valid_hwloc)
AC_SUBST(HWLOC_REQUIRES)
# is the header file f77.h available ?
AC_CHECK_HEADER([f77.h], [have_f77_h=yes], [have_f77_h=no])
AC_SUBST(STARPU_HAVE_F77_H, $have_f77_h)
AM_CONDITIONAL(STARPU_HAVE_F77_H, test x$have_f77_h = xyes)
if test x$have_f77_h = xyes; then
AC_DEFINE([STARPU_HAVE_F77_H], [1], [Define to 1 if you have the <f77.h> header file.])
fi
AC_ARG_WITH(icc, [AS_HELP_STRING([--with-icc=<path to icc>], [Name or path of the icc compiler])], icc_path="$withval",icc_path="")
AC_ARG_WITH(icc-args, [AS_HELP_STRING([--with-icc-args[=<arguments to give when running icc>]], [Arguments for icc])], [icc_args=$withval])
AC_SUBST(ICC_ARGS,$icc_args)
AC_ARG_ENABLE(icc, [AS_HELP_STRING([--enable-icc],
[Enable the compilation of specific ICC examples])],
enable_icc=$enableval, enable_icc=yes)
ICC=""
if test "$enable_icc" = "yes" ; then
if test "$icc_path" != "" ; then
ICC="$icc_path"
else
# Check if icc is available
AC_PATH_PROG([ICC], [icc])
fi
fi
if test ! -x "$ICC"; then
AC_MSG_RESULT(The ICC compiler '$ICC' does not have the execute permission)
enable_icc=no
ICC=""
fi
# If cuda and icc are both available, check they are compatible
if test "$enable_cuda" = "yes" -a "$ICC" != ""; then
AC_MSG_CHECKING(whether CUDA and ICC are compatible)
OLD_CC="$CC"
CC="$ICC"
OLD_CFLAGS="$CFLAGS"
CFLAGS="-I$PWD/include -I$srcdir/include"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[#include <cuda.h>
#include <starpu.h>]],
[[]]
)],
AC_MSG_RESULT(yes),
[ICC=""
AC_MSG_RESULT(no)]
)
CC="$OLD_CC"
CFLAGS="$OLD_CFLAGS"
fi
# Disable ICC on windows
if test "x$ICC" != "x" -a "$starpu_windows" = "yes" ; then
ICC=""
fi
if test "x$ICC" != "x"; then
AC_DEFINE(STARPU_HAVE_ICC, [1], [Define this if icc is available])
fi
AM_CONDITIONAL([STARPU_HAVE_ICC], [test "x$ICC" != "x"])
# Do not generate manpages for the tools if we do not have help2man
AC_CHECK_PROGS([HELP2MAN], [help2man])
# Disable on windows
if test "$starpu_windows" = "yes" ; then
HELP2MAN=""
fi
AM_CONDITIONAL([STARPU_HAVE_HELP2MAN], [test "x$HELP2MAN" != "x"])
AC_CHECK_MEMBER([struct cudaDeviceProp.pciDomainID],
AC_DEFINE([STARPU_HAVE_DOMAINID],[1],[Define to 1 if CUDA device properties include DomainID]),
, [[#include <cuda_runtime_api.h>]])
AC_CHECK_MEMBER([struct cudaDeviceProp.pciBusID],
AC_DEFINE([STARPU_HAVE_BUSID],[1],[Define to 1 if CUDA device properties include BusID]),
, [[#include <cuda_runtime_api.h>]])
dnl Set this condition when Automake 1.11 or later is being used.
dnl Automake 1.11 introduced `silent-rules', hence the check.
m4_ifdef([AM_SILENT_RULES],
AM_CONDITIONAL([STARPU_HAVE_AM111], [true]),
AM_CONDITIONAL([STARPU_HAVE_AM111], [false]))
##########################################
# Resource Manager #
##########################################
starpurm_support=no
starpurm_dlb_support=no
AC_ARG_ENABLE(starpurm, [AS_HELP_STRING([--enable-starpurm], [enable resource management support])],
enable_starpurm=$enableval, enable_starpurm=no)
if test "x$enable_starpurm" != xno
then
starpurm_support=yes
AC_MSG_CHECKING(whether resource management debug messages should be displayed)
AC_ARG_ENABLE(starpurm-verbose, [AS_HELP_STRING([--enable-starpurm-verbose],
[display resource management verbose debug messages])],
enable_starpurm_verbose=$enableval, enable_starpurm_verbose=no)
AC_MSG_RESULT($enable_starpurm_verbose)
if test x$enable_starpurm_verbose = xyes; then
AC_DEFINE(STARPURM_VERBOSE, [1], [display resource management verbose debug messages])
fi
# DLB
DLB_CFLAGS=""
DLB_LIBS=""
AC_ARG_ENABLE(dlb, [AS_HELP_STRING([--enable-dlb], [enable DLB support])],
enable_dlb=$enableval, enable_dlb=no)
if test "x$enable_dlb" != xno
then
AC_ARG_WITH(dlb-include-dir,
[AS_HELP_STRING([--with-dlb-include-dir=<path>],
[specify where DLB headers are installed])],
[dlb_inc_dirs="$withval"], [dlb_inc_dirs=""])
dlb_inc_dirs="${dlb_inc_dirs} /usr/include/dlb"
dlb_incdir_found=no
for dlb_incdir in $dlb_inc_dirs
do
if test -n "$dlb_incdir"
then
SAVED_CPPFLAGS="${CPPFLAGS}"
CPPFLAGS=-I${dlb_incdir}
AC_CHECK_HEADERS([dlb.h])
if test "$ac_cv_header_dlb_h" = "yes"
then
CPPFLAGS="-I$dlb_incdir ${SAVED_CPPFLAGS}"
DLB_CFLAGS="-I${dlb_incdir}"
dlb_incdir_found=yes
break
else
CPPFLAGS=${SAVED_CPPFLAGS}
fi
unset ac_cv_header_dlb_h
fi
done
AC_ARG_WITH(dlb-lib-dir,
[AS_HELP_STRING([--with-dlb-lib-dir=<path>],
[specify where DLB libraries are installed])],
[dlb_lib_dirs="$withval"], [dlb_lib_dirs=""])
dlb_lib_dirs="${dlb_lib_dirs} /usr/lib/dlb"
dlb_libdir_found=no
for dlb_libdir in $dlb_lib_dirs
do
if test -n "$dlb_libdir"
then
SAVED_LDFLAGS="${LDFLAGS}"
LDFLAGS=-L${dlb_libdir}
AC_CHECK_LIB(dlb, [DLB_Init])
if test "$ac_cv_lib_dlb_DLB_Init" = "yes"
then
LDFLAGS="-L${dlb_libdir} ${SAVED_LDFLAGS} ${STARPU_DLB_LDFLAGS}"
DLB_LIBS="-L${dlb_libdir} -ldlb"
dlb_libdir_found=yes
break
else
LDFLAGS=${SAVED_LDFLAGS}
fi
unset ac_cv_lib_dlb_DLB_Init
fi
done
SAVED_CPPFLAGS="${CPPFLAGS}"
SAVED_CFLAGS="${CFLAGS}"
SAVED_LDFLAGS="${LDFLAGS}"
CPPFLAGS="$HWLOC_CPPFLAGS -D_GNU_SOURCE $CPPFLAGS"
CFLAGS="$HWLOC_CFLAGS $CFLAGS"
LIBS="$HWLOC_LIBS $LIBS"
# check whether libhwloc has a dedicated glibc-sched.h include for conversion with glibc cpusets
AC_CHECK_HEADERS([hwloc/glibc-sched.h])
CPPFLAGS="$SAVED_CPPFLAGS"
CFLAGS="$SAVED_CFLAGS"
LIBS="$SAVED_LIBS"
SAVED_CPPFLAGS="${CPPFLAGS}"
SAVED_CFLAGS="${CFLAGS}"
SAVED_LDFLAGS="${LDFLAGS}"
CPPFLAGS="$STARPU_CPPFLAGS $CPPFLAGS"
CFLAGS="$STARPU_CFLAGS $CFLAGS"
LIBS="$STARPU_LIBS $LIBS"
# check if StarPU implements starpu_worker_set_going_to_sleep_callback()
if test x$enable_worker_cb = xyes ; then
AC_DEFINE([STARPURM_STARPU_HAVE_WORKER_CALLBACKS], [1], [Define to 1 if StarPU has support for worker callbacks.])
fi
#AC_CHECK_FUNC([starpu_worker_set_going_to_sleep_callback],AC_DEFINE([STARPURM_STARPU_HAVE_WORKER_CALLBACKS], [1], [Define to 1 if StarPU has support for worker callbacks.]))
CPPFLAGS="$SAVED_CPPFLAGS"
CFLAGS="$SAVED_CFLAGS"
LIBS="$SAVED_LIBS"
if test "x$dlb_incdir_found" != "xyes" -o "x$dlb_libdir_found" != "xyes"
then
enable_dlb=no
fi
fi
AC_MSG_CHECKING(whether DLB support should be enabled)
AC_MSG_RESULT($enable_dlb)
if test "x$enable_dlb" != "xno"
then
AC_DEFINE([STARPURM_HAVE_DLB], [1], [Define to 1 if dlb support is enabled.])
starpurm_dlb_support=yes
AC_MSG_CHECKING(whether DLB resource management debug messages should be displayed)
AC_ARG_ENABLE(starpurm-dlb-verbose, [AS_HELP_STRING([--enable-starpurm-dlb-verbose],
[display resource management verbose debug messages])],
enable_starpurm_dlb_verbose=$enableval, enable_starpurm_dlb_verbose=no)
AC_MSG_RESULT($enable_starpurm_dlb_verbose)
if test x$enable_starpurm_dlb_verbose = xyes; then
AC_DEFINE(STARPURM_DLB_VERBOSE, [1], [display DLB resource management verbose debug messages])
fi
AX_DLB_CALLBACK_ARG()
fi
AC_SUBST(DLB_CFLAGS)
AC_SUBST(DLB_LIBS)
fi
AM_CONDITIONAL(STARPURM_HAVE_DLB, test x$starpurm_dlb_support = "xyes")
AM_CONDITIONAL(STARPU_BUILD_STARPURM, [test x$starpurm_support = xyes])
AC_ARG_ENABLE(starpurm-examples, [AS_HELP_STRING([--enable-starpurm-examples],
[enable build of StarPU Resource Manager examples])],
enable_starpurm_examples=$enableval, enable_starpurm_examples=no)
AM_CONDITIONAL(STARPU_BUILD_STARPURM_EXAMPLES, [test x$enable_starpurm_examples = xyes])
#####################################
# StarPUPy #
#####################################
starpupy_support=no
if test "x$enable_starpupy" != xno
then
AC_CHECK_PROGS([PYTHON], python3)
if test "$ac_cv_prog_PYTHON" = ""
then
if test "x$enable_starpupy" = xyes ; then
AC_MSG_ERROR([python3 missing, cannot build StarPU python interface])
else
AC_MSG_WARN([python3 missing, cannot build StarPU python interface])
enable_starpupy=no
fi
fi
fi
if test "x$enable_starpupy" != xno
then
AC_SUBST(PYTHON)
AC_MSG_CHECKING(for python3 version)
PYTHON_VERSION=$(echo "import sys ; print(str(sys.version_info.major)+\".\"+str(sys.version_info.minor))" | $PYTHON)
AC_MSG_RESULT($PYTHON_VERSION)
AC_SUBST(PYTHON_VERSION)
PYTHON_INCLUDE_DIRS="`$PYTHON -c "from sysconfig import get_paths as gp; print(gp()@<:@'include'@:>@)"`"
SAVED_CPPFLAGS="${CPPFLAGS}"
CPPFLAGS="$CPPFLAGS -I$PYTHON_INCLUDE_DIRS"
AC_CHECK_HEADERS([Python.h],[have_python_h=yes],[have_python_h=no])
if test "$have_python_h" = "no" ; then
if test "x$enable_starpupy" = xyes ; then
AC_MSG_ERROR([Python.h missing, cannot build StarPU python interface (consider installing python-dev)])
else
AC_MSG_WARN([Python.h missing, cannot build StarPU python interface (consider installing python-dev)])
enable_starpupy=no
fi
fi
fi
if test "x$enable_starpupy" != xno
then
AC_CHECK_LIB([python$PYTHON_VERSION], [PyErr_Print], [have_python_lib=yes], [have_python_lib=no])
if test "$have_python_lib" = "no" ; then
if test "x$enable_starpupy" = xyes ; then
AC_MSG_ERROR([Python library missing, cannot build StarPU python interface (consider installing python-dev)])
else
AC_MSG_WARN([Python library missing, cannot build StarPU python interface (consider installing python-dev)])
enable_starpupy=no
fi
fi
fi
if test "x$enable_starpupy" != xno
then
AC_MSG_CHECKING(for python3 setuptools)
if $PYTHON -c "import setuptools" ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
if test "x$enable_starpupy" = xyes ; then
AC_MSG_ERROR([setuptools missing, cannot install StarPU python interface (consider installing python-setuptools)])
else
AC_MSG_WARN([setuptools missing, cannot install StarPU python interface (consider installing python-setuptools)])
enable_starpupy=no
fi
fi
fi
if test "x$enable_starpupy" != xno
then
CPPFLAGS=${SAVED_CPPFLAGS}
AC_MSG_CHECKING(for python3 module joblib)
AC_PYTHON_MODULE(joblib,[joblib_avail=yes],[joblib_avail=no])
AC_MSG_RESULT($joblib_avail)
if test "$joblib_avail" = "yes" ; then
AC_DEFINE(STARPU_PYTHON_HAVE_JOBLIB, [1], [Python joblib package available])
else
AC_MSG_WARN([python3 module joblib missing, cannot build full StarPU python interface (consider running 'pip3 install joblib')])
fi
AC_MSG_CHECKING(for python3 module cloudpickle)
AC_PYTHON_MODULE(cloudpickle,[cloudpickle_avail=yes],[cloudpickle_avail=no])
AC_MSG_RESULT($cloudpickle_avail)
if test "$cloudpickle_avail" = "yes" ; then
AC_DEFINE(STARPU_PYTHON_HAVE_CLOUDPICKLE, [1], [Python cloudpickle package available])
else
AC_MSG_WARN([python3 module cloudpickle missing, cannot build full StarPU python interface (consider running 'pip3 install cloudpickle')])
fi
starpupy_support=yes
AC_MSG_CHECKING(for python3 module numpy)
AC_PYTHON_MODULE(numpy,[numpy_avail=yes],[numpy_avail=no])
AC_MSG_RESULT($numpy_avail)
PYTHON_NUMPY_DIR=""
if test "$numpy_avail" = "yes" ; then
AC_DEFINE(STARPU_PYTHON_HAVE_NUMPY, [1], [Python3 numpy package available])
PYTHON_NUMPY_DIR="`$PYTHON -c "import numpy ; print(numpy.get_include())"`"
fi
AC_SUBST(PYTHON_NUMPY_DIR)
PYTHON_SETUP_OPTIONS=""
if test x$enable_debug = xyes ; then
PYTHON_SETUP_OPTIONS="--debug"
fi
AC_SUBST(PYTHON_SETUP_OPTIONS)
fi
AM_CONDITIONAL(STARPU_BUILD_STARPUPY, [test x$starpupy_support = xyes])
AM_CONDITIONAL(STARPU_STARPUPY_NUMPY, [test x$numpy_avail = xyes])
AC_ARG_VAR([PYTHON], [Python3 interpreter])
##########################################
# Documentation #
##########################################
def_enable_build_doc="yes"
available_doc="no"
if test -d "$srcdir/doc/doxygen/html" ; then
def_enable_build_doc="no"
available_doc="yes"
fi
if test "$starpu_darwin" = "yes" ; then
def_enable_build_doc="no"
fi
AC_ARG_ENABLE(build-doc, [AS_HELP_STRING([--disable-build-doc],
[disable building of documentation])],
enable_build_doc=$enableval, enable_build_doc=$def_enable_build_doc)
AC_ARG_ENABLE(build-doc-pdf, [AS_HELP_STRING([--enable-build-doc-pdf],
[enable building of PDF documentation])],
enable_build_doc_pdf=$enableval, enable_build_doc_pdf=no)
available_doc_pdf="no"
if test -f "$srcdir/doc/doxygen/starpu.pdf" ; then
enable_build_doc_pdf="no"
available_doc_pdf="yes"
fi
# Check whether doxygen needed tools are installed
AC_PATH_PROG(doxygencommand, doxygen)
if test "$doxygencommand" = "" ; then
if test "$enable_build_doc_pdf" = "yes" ; then
AC_MSG_ERROR([doxygen missing, cannot build documentation PDF])
fi
enable_build_doc="no"
enable_build_doc_pdf="no"
fi
AC_PATH_PROG(pdflatexcommand, pdflatex)
if test "$pdflatexcommand" = "" ; then
if test "$enable_build_doc_pdf" = "yes" ; then
AC_MSG_ERROR([pdflatex missing, cannot build documentation PDF])
fi
enable_build_doc_pdf="no"
fi
AC_PATH_PROG(epstopdfcommand, epstopdf)
if test "$epstopdfcommand" = "" ; then
if test "$enable_build_doc_pdf" = "yes" ; then
AC_MSG_ERROR([epstopdf missing, cannot build documentation PDF])
fi
enable_build_doc_pdf="no"
fi
AC_MSG_CHECKING(whether HTML documentation should be compiled)
AC_MSG_RESULT($enable_build_doc)
AC_MSG_CHECKING(whether HTML documentation is available)
AC_MSG_RESULT($available_doc)
AC_MSG_CHECKING(whether PDF documentation should be compiled)
AC_MSG_RESULT($enable_build_doc_pdf)
AC_MSG_CHECKING(whether PDF documentation is available)
AC_MSG_RESULT($available_doc_pdf)
AM_CONDITIONAL(STARPU_BUILD_DOC, [test x$enable_build_doc != xno])
AM_CONDITIONAL(STARPU_AVAILABLE_DOC, [test x$available_doc != xno])
AM_CONDITIONAL(STARPU_BUILD_DOC_PDF, [test x$enable_build_doc_pdf != xno])
AM_CONDITIONAL(STARPU_AVAILABLE_DOC_PDF, [test x$available_doc_pdf != xno])
if test x$enable_build_doc_pdf != xno ; then
DOC_GENERATE_LATEX=YES
else
DOC_GENERATE_LATEX=NO
fi
AC_SUBST(DOC_GENERATE_LATEX)
###############################################################################
# #
# Julia #
# #
###############################################################################
AC_ARG_ENABLE(julia, [AS_HELP_STRING([--enable-julia],
[enable the Julia extension])],
enable_julia=$enableval, enable_julia=no)
if test "$enable_julia" = "yes" ; then
# Check whether the julia compiler is available
AC_PATH_PROG(juliapath, julia)
AC_MSG_CHECKING(whether julia is available)
AC_MSG_RESULT($juliapath)
if test ! -x "$juliapath" ; then
AC_MSG_ERROR(Julia compiler '$juliapath' is not valid)
enable_julia=no
fi
fi
AM_CONDITIONAL([STARPU_USE_JULIA], [test "x$enable_julia" = "xyes"])
AC_SUBST(JULIA, $juliapath)
###############################################################################
# #
# Eclipse Plugin #
# #
###############################################################################
AC_ARG_ENABLE(eclipse-plugin, [AS_HELP_STRING([--enable-eclipse-plugin],
[Build the Eclipse plugin])],
enable_eclipse_plugin=$enableval, enable_eclipse_plugin=no)
if test "$enable_eclipse_plugin" = "yes" ; then
AC_PATH_PROG(eclipsepath, eclipse)
AC_MSG_CHECKING(whether eclipse is available)
AC_MSG_RESULT($eclipsepath)
if test ! -x "$eclipsepath" ; then
AC_MSG_ERROR(Eclipse executable '$eclipsepath' is not valid)
enable_eclipse_plugin=no
fi
libs=$(for x in starpu-$STARPU_EFFECTIVE_VERSION $(echo $STARPU_EXPORTED_LIBS | sed 's/-l//g') $HWLOC_REQUIRES ; do echo $x ; done)
option_libs=$($srcdir/eclipse-plugin/tools/cproject.sh option $libs)
module_libs=$($srcdir/eclipse-plugin/tools/cproject.sh module $libs)
fi
AM_CONDITIONAL([STARPU_BUILD_ECLIPSE_PLUGIN], [test "x$enable_eclipse_plugin" = "xyes"])
AC_SUBST(ECLIPSE, $eclipsepath)
AC_SUBST(STARPU_INCLUDE_PATH, $(eval echo ${includedir}/starpu/$STARPU_EFFECTIVE_VERSION))
AC_SUBST(STARPU_LIB_PATH, $(eval echo ${prefix}/lib))
AC_SUBST(STARPU_MODULE_LIBS, "$module_libs")
AC_SUBST(STARPU_OPTION_LIBS, "$option_libs")
###############################################################################
# #
# Final settings #
# #
###############################################################################
if test x$enable_simgrid = xyes -a \( x$enable_cuda0 = xyes -o x$enable_cuda1 = xyes \) ; then
AC_MSG_ERROR([Cuda0 not supported with simgrid])
fi
if test x$enable_opencl = xyes -a \( x$enable_cuda0 = xyes -o x$enable_cuda1 = xyes \) ; then
AC_MSG_ERROR([Cuda0 not supported with OpenCL])
fi
if test x$enable_openmp = xyes -a \( x$enable_cuda0 = xyes -o x$enable_cuda1 = xyes \) ; then
AC_MSG_ERROR([Cuda0 not supported with OpenMP])
fi
CPPFLAGS="$CPPFLAGS -DSTARPU_SAMPLING_DIR=\"\\\"${datarootdir}/starpu/perfmodels/sampling\\\"\""
STARPU_BASIC_H_CPPFLAGS="$HWLOC_CFLAGS $STARPU_CUDA_CPPFLAGS $STARPU_HIP_CPPFLAGS $STARPU_OPENCL_CPPFLAGS $STARPU_MAX_FPGA_CPPFLAGS $SIMGRID_CFLAGS $PAPI_CFLAGS"
# these are the flags needed to compile starpu.h
STARPU_H_CPPFLAGS="$STARPU_BASIC_H_CPPFLAGS"
AC_SUBST([STARPU_H_CPPFLAGS])
STARPU_NVCC_H_CPPFLAGS="$STARPU_BASIC_H_CPPFLAGS"
AC_SUBST([STARPU_NVCC_H_CPPFLAGS])
# these are the flags needed for linking libstarpu (and thus also for static linking)
LIBSTARPU_LDFLAGS="$STARPU_OPENCL_LDFLAGS $STARPU_CUDA_LDFLAGS $STARPU_HIP_LDFLAGS $HWLOC_LIBS $FXT_LDFLAGS $FXT_LIBS $PAPI_LIBS $STARPU_GLPK_LDFLAGS $STARPU_LEVELDB_LDFLAGS $SIMGRID_LDFLAGS $STARPU_BLAS_LDFLAGS $DGELS_LIBS $STARPU_MAX_FPGA_LDFLAGS $STARPU_DLOPEN_LDFLAGS"
AC_SUBST([LIBSTARPU_LDFLAGS])
# these are the flags needed for linking against libstarpu (because starpu.h makes its includer use pthread_*, simgrid, etc.)
if test "x$enable_shared" = xno; then
# No .so, so application will unexpectedly have to know which -l to
# use. Give them in .pc file.
AC_DEFINE(STARPU_STATIC_ONLY, [1], [Only static compilation was made])
STARPU_EXPORTED_LIBS="$STARPU_EXPORTED_LIBS $LDFLAGS $LIBS $LIBSTARPU_LDFLAGS"
fi
AC_SUBST(STARPU_EXPORTED_LIBS)
STARPUPY_EXTRA_LINK_ARGS=""
if test "x$enable_starpupy" != xno
then
if test "x$OPENMP_CFLAGS" != "x"
then
STARPUPY_EXTRA_LINK_ARGS="$STARPUPY_EXTRA_LINK_ARGS '$OPENMP_CFLAGS', "
fi
for flag in $STARPU_EXPORTED_LIBS
do
STARPUPY_EXTRA_LINK_ARGS="$STARPUPY_EXTRA_LINK_ARGS '$flag', "
done
if test x$enable_coverage = xyes; then
STARPUPY_EXTRA_LINK_ARGS="$STARPUPY_EXTRA_LINK_ARGS '-lgcov', "
fi
fi
AC_SUBST(STARPUPY_EXTRA_LINK_ARGS)
LIBSTARPU_LINK=libstarpu-$STARPU_EFFECTIVE_VERSION.la
LIBSTARPU_LINK="$LIBSTARPU_LINK $STARPU_EXPORTED_LIBS"
AC_SUBST([LIBSTARPU_LINK])
# File configuration
AC_CONFIG_COMMANDS([executable-scripts], [
chmod +x tests/regression/regression.sh
chmod +x tests/model-checking/starpu-mc.sh
chmod +x tools/starpu_env
chmod +x tools/starpu_codelet_profile
chmod +x tools/starpu_codelet_histo_profile
chmod +x tools/starpu_mpi_comm_matrix.py
chmod +x tools/starpu_fxt_number_events_to_names.py
chmod +x tools/starpu_workers_activity
chmod +x tools/starpu_paje_draw_histogram
chmod +x tools/starpu_paje_state_stats
chmod +x tools/starpu_paje_summary
chmod +x tools/starpu_config
chmod +x tools/starpu_mlr_analysis
chmod +x tools/starpu_paje_sort
chmod +x tools/starpu_smpirun
chmod +x tools/starpu_tcpipexec
chmod +x doc/doxygen/doxygen_filter.sh
chmod +x doc/doxygen_dev/doxygen_filter.sh
chmod +x starpupy/execute.sh
chmod +x julia/examples/execute.sh
for x in \
tests/microbenchs/tasks_data_overhead.sh \
tests/microbenchs/sync_tasks_data_overhead.sh \
tests/microbenchs/async_tasks_data_overhead.sh \
tests/microbenchs/tasks_size_overhead.sh \
tests/microbenchs/tasks_size_overhead_sched.sh \
tests/microbenchs/tasks_size_overhead_scheds.sh \
tests/microbenchs/tasks_size_overhead.gp \
tests/microbenchs/microbench.sh \
tests/microbenchs/parallel_dependent_homogeneous_tasks_data.sh \
tests/microbenchs/parallel_independent_heterogeneous_tasks_data.sh \
tests/microbenchs/parallel_independent_heterogeneous_tasks.sh \
tests/microbenchs/parallel_independent_homogeneous_tasks_data.sh \
tests/microbenchs/parallel_independent_homogeneous_tasks.sh \
tests/microbenchs/parallel_redux_homogeneous_tasks_data.sh \
tests/microbenchs/parallel_redux_heterogeneous_tasks_data.sh \
tests/microbenchs/bandwidth_scheds.sh \
tests/energy/static.sh \
tests/energy/dynamic.sh \
tests/datawizard/locality.sh \
tests/overlap/overlap.sh \
tests/model-checking/prio_list.sh \
tests/model-checking/prio_list2.sh \
tests/model-checking/prio_list3.sh \
tests/model-checking/barrier.sh \
examples/heat/heat.sh \
examples/lu/lu.sh \
examples/cholesky/cholesky.sh \
examples/cholesky/cholesky_julia.sh \
examples/mult/sgemm.sh \
examples/scheduler/schedulers.sh \
examples/scheduler/schedulers_context.sh \
examples/scheduler/libdummy_sched.sh \
examples/profiling_tool/prof.sh \
tools/starpu_paje_draw_histogram.R \
tools/starpu_paje_state_stats.R \
tools/starpu_mlr_analysis.Rmd \
tools/starpu_paje_summary.Rmd \
tools/starpu_trace_state_stats.py \
julia/examples/check_deps/check_deps.sh \
julia/examples/mult/mult_starpu.sh \
julia/examples/mult/perf.sh \
julia/examples/variable/variable.sh \
julia/examples/task_insert_color/task_insert_color.sh \
julia/examples/vector_scal/vector_scal.sh \
julia/examples/mandelbrot/mandelbrot.sh \
julia/examples/callback/callback.sh \
julia/examples/dependency/task_dep.sh \
julia/examples/dependency/tag_dep.sh \
julia/examples/dependency/end_dep.sh \
julia/examples/axpy/axpy.sh \
julia/examples/gemm/gemm.sh \
julia/examples/cholesky/cholesky.sh \
starpupy/benchmark/tasks_size_overhead.sh \
starpupy/benchmark/tasks_size_overhead.gp \
starpupy/benchmark/test_handle_perf.sh \
starpupy/benchmark/test_handle_perf_pickle.sh \
starpupy/examples/starpu_py.sh \
starpupy/examples/starpu_py.concurrent.sh \
starpupy/examples/starpu_py_handle.sh \
starpupy/examples/starpu_py_handle.concurrent.sh \
starpupy/examples/starpu_py_np.sh \
starpupy/examples/starpu_py_np.concurrent.sh \
starpupy/examples/starpu_py_parallel.sh \
starpupy/examples/starpu_py_partition.sh \
starpupy/examples/starpu_py_partition.concurrent.sh \
starpupy/examples/starpu_py_perfmodel.sh \
starpupy/examples/starpu_py_perfmodel.concurrent.sh \
starpupy/examples/starpu_py_numpy.sh \
starpupy/examples/starpu_py_numpy.concurrent.sh \
; do
test -e $x || ( mkdir -p $(dirname $x) && ln -sf $ac_abs_top_srcdir/$x $(dirname $x) )
done
for x in tools julia/examples starpufft/tests examples examples/stencil mpi/tests mpi/examples socl/examples bubble/tests starpupy/examples starpu_openmp_llvm/examples \
; do
test -e $x/loader.c || ln -sf $ac_abs_top_srcdir/tests/loader.c $x
done
sed -i -e '/ STARPU_SRC_DIR /d' -e '/ STARPU_BUILD_DIR /d' src/common/config.h
])
# Create links to ICD files in build/socl/vendors directory. SOCL will use this
# directory as the OCL_ICD_VENDORS directory
SOCL_VENDORS="vendors/install/socl.icd"
for icd in /etc/OpenCL/vendors/*.icd ; do
if test -f $icd ; then
if test "$(basename $icd)" != "socl.icd" ; then
new_icd=$(basename $icd)
AC_CONFIG_LINKS([socl/vendors/$new_icd:$icd])
SOCL_VENDORS="$SOCL_VENDORS vendors/$new_icd"
fi
fi
done
AC_SUBST(SOCL_VENDORS)
AC_CONFIG_FILES(tests/regression/regression.sh tests/regression/profiles tests/regression/profiles.build.only)
AC_CONFIG_HEADER(src/common/config.h src/common/config-src-build.h include/starpu_config.h starpurm/include/starpurm_config.h)
SANITIZE=$(echo $CFLAGS | grep sanitize)
AM_CONDITIONAL(STARPU_SANITIZE, test -n "$SANITIZE")
AC_OUTPUT([
Makefile
src/Makefile
tools/Makefile
tools/starpu_env
tools/starpu_codelet_profile
tools/starpu_codelet_histo_profile
tools/starpu_mpi_comm_matrix.py
tools/starpu_fxt_number_events_to_names.py
tools/starpu_workers_activity
tools/starpu_paje_draw_histogram
tools/starpu_paje_state_stats
tools/starpu_paje_summary
tools/starpu_config
tools/starpu_mlr_analysis
tools/starpu_paje_sort
tools/starpu_smpirun
tools/starpu_tcpipexec
socl/Makefile
socl/src/Makefile
socl/examples/Makefile
socl/vendors/socl.icd
socl/vendors/install/socl.icd
packages/libstarpu.pc
packages/starpu-1.0.pc
packages/starpu-1.1.pc
packages/starpu-1.2.pc
packages/starpu-1.3.pc
packages/starpu-1.4.pc
packages/starpu-1.3
packages/starpu-1.4
mpi/packages/libstarpumpi.pc
mpi/packages/starpumpi-1.0.pc
mpi/packages/starpumpi-1.1.pc
mpi/packages/starpumpi-1.2.pc
mpi/packages/starpumpi-1.3.pc
mpi/packages/starpumpi-1.4.pc
starpufft/Makefile
starpufft/src/Makefile
starpufft/tests/Makefile
starpufft/packages/libstarpufft.pc
starpufft/packages/starpufft-1.0.pc
starpufft/packages/starpufft-1.1.pc
starpufft/packages/starpufft-1.2.pc
starpufft/packages/starpufft-1.3.pc
starpufft/packages/starpufft-1.4.pc
starpurm/Makefile
starpurm/src/Makefile
starpurm/tests/Makefile
starpurm/examples/Makefile
starpurm/packages/starpurm-1.3.pc
starpurm/packages/starpurm-1.4.pc
starpu_openmp_llvm/Makefile
starpu_openmp_llvm/src/Makefile
starpu_openmp_llvm/examples/Makefile
starpupy/src/setup.cfg
starpupy/src/setup.py
starpupy/Makefile
starpupy/src/Makefile
starpupy/examples/Makefile
starpupy/execute.sh
starpupy/benchmark/Makefile
examples/Makefile
examples/stencil/Makefile
tests/Makefile
tests/model-checking/Makefile
tests/model-checking/starpu-mc.sh
mpi/Makefile
mpi/src/Makefile
mpi/tests/Makefile
mpi/examples/Makefile
mpi/tools/Makefile
mpi/GNUmakefile
sc_hypervisor/Makefile
sc_hypervisor/src/Makefile
sc_hypervisor/examples/Makefile
doc/Makefile
doc/doxygen/Makefile
doc/doxygen/doxygen-config.cfg
doc/doxygen/doxygen-config-include.cfg
doc/doxygen/doxygen_filter.sh
doc/doxygen_dev/Makefile
doc/doxygen_dev/doxygen-config.cfg
doc/doxygen_dev/doxygen_filter.sh
doc/doxygen_dev/doxygen-config-include.cfg
doc/doxygen_web_introduction/Makefile
doc/doxygen_web_introduction/doxygen-config.cfg
doc/doxygen_web_installation/Makefile
doc/doxygen_web_installation/doxygen-config.cfg
doc/doxygen_web_basics/Makefile
doc/doxygen_web_basics/doxygen-config.cfg
doc/doxygen_web_applications/Makefile
doc/doxygen_web_applications/doxygen-config.cfg
doc/doxygen_web_performances/Makefile
doc/doxygen_web_performances/doxygen-config.cfg
doc/doxygen_web_faq/Makefile
doc/doxygen_web_faq/doxygen-config.cfg
doc/doxygen_web_languages/Makefile
doc/doxygen_web_languages/doxygen-config.cfg
doc/doxygen_web_extensions/Makefile
doc/doxygen_web_extensions/doxygen-config.cfg
tools/msvc/starpu_var.bat
min-dgels/Makefile
bubble/Makefile
bubble/tests/Makefile
julia/Makefile
julia/src/Makefile
julia/src/dynamic_compiler/Makefile
julia/examples/Makefile
julia/examples/execute.sh
eclipse-plugin/Makefile
eclipse-plugin/src/Makefile
eclipse-plugin/examples/Makefile
eclipse-plugin/examples/hello/.cproject
])
AC_MSG_NOTICE([
CPUs enabled: $enable_cpu
CUDA enabled: $enable_cuda $NO_NVML
HIP enabled: $enable_hip
OpenCL enabled: $enable_opencl
Max FPGA enabled: $enable_max_fpga
Compile-time limits
(change these with --enable-maxcpus, --enable-maxcudadev,
--enable-maxopencldev, --enable-maxmaxfpgadev, --enable-maxnodes, --enable-maxbuffers)
(Note these numbers do not represent the number of detected
devices, but the maximum number of devices StarPU can manage)
Maximum number of CPUs: $maxcpus
Maximum number of CUDA devices: $nmaxcudadev
Maximum number of HIP devices: $nmaxhipdev
Maximum number of OpenCL devices: $nmaxopencldev
Maximum number of Maxeler FPGA devices: $nmaxmaxfpgadev
Maximum number of MPI master-slave devices: $nmaxmpidev
Maximum number of TCP/IP master-slave devices: $nmaxtcpipdev
Maximum number of memory nodes: $maxnodes
Maximum number of task buffers: $nmaxbuffers
CUDA GPU-GPU transfers: $enable_cuda_memcpy_peer
CUDA Map: $enable_cuda_map
HIP GPU-GPU transfers: $enable_hip_memcpy_peer
Allocation cache: $enable_allocation_cache
Magma enabled: $have_magma
BLAS library: $blas_lib
hwloc: $have_valid_hwloc
FxT trace enabled: $enable_fxt
Documentation HTML: $enable_build_doc
Documentation PDF: $enable_build_doc_pdf
Examples: $enable_build_examples
StarPU Extensions:
StarPU MPI enabled: $build_mpi_lib
StarPU MPI failure tolerance: $enable_mpi_ft
StarPU MPI failure tolerance stats: $use_mpi_ft_stats
StarPU MPI(nmad) enabled: $build_nmad_lib
MPI test suite: $running_mpi_check
Master-Slave MPI enabled: $build_mpi_master_slave
Master-Slave TCP/IP enabled: $build_tcpip_master_slave
FFT Support: $fft_support
Resource Management enabled: $starpurm_support
Python Interface enabled: $starpupy_support
OpenMP runtime support enabled: $enable_openmp
OpenMP LLVM runtime support enabled: $enable_openmp_llvm
Parallel Worker support enabled: $enable_parallel_worker
SOCL enabled: $build_socl
SOCL test suite: $run_socl_check
Scheduler Hypervisor: $build_sc_hypervisor
simgrid enabled: $enable_simgrid
ayudame enabled: $ayu_msg
HDF5 enabled: $enable_hdf5
Native fortran support: $enable_build_fortran
Native MPI fortran support: $use_mpi_fort
Support for multiple linear regression models: $support_mlr
Hierarchical dags support: $enable_bubble
JULIA enabled: $enable_julia
])
if test "$build_socl" = "yes" -a "$run_socl_check" = "no" ; then
AC_MSG_NOTICE([
WARNING: SOCL test suite will not be run as the environment variable SOCL_OCL_LIB_OPENCL is not defined.
To run the tests, you need to install the OCL implementation of ICD
(https://forge.imag.fr/projects/ocl-icd/ or Debian package ocl-icd-libopencl1)
and set the variable SOCL_OCL_LIB_OPENCL to the location of the libOpenCL.so.])
fi
if test x"$have_valid_hwloc" = xno -a "$enable_simgrid" = "no" ; then
AC_MSG_NOTICE([
WARNING: hwloc was not enabled. If the target machine is hyperthreaded the
performance may be impacted a lot. It is strongly recommended to install
hwloc])
fi
if test x"$starpu_windows" = xyes -a "x$STARPU_MS_LIB" = "x" ; then
AC_MSG_NOTICE([
WARNING: lib was not found, you will not be able to build StarPU applications
with Microsoft Visual Studio. Add to your PATH the directories for MSVC, e.g
c:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE;
c:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin])
fi
|