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
|
Copyright (C) by Argonne National Laboratory
See COPYRIGHT in top-level directory
Automatically generated
by: ./maint/extractcvars
at: Tue Feb 3 22:42:29 2026 UTC
DO NOT EDIT!!!
This file lists the various environment variables available to change the
behavior of the MPICH library. These are intended to be used by advanced
users.
---------------------------------------------------------------------------
MPIR_CVAR_BARRIER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_BARRIER_INTRA_ALGORITHM
MPICH_BARRIER_INTRA_ALGORITHM
Description: Variable to select barrier algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
smp - Force smp algorithm
k_dissemination - Force high radix dissemination algorithm
recexch - Force recursive exchange algorithm
Default: MPIR_CVAR_BARRIER_INTRA_ALGORITHM_auto
MPIR_CVAR_BARRIER_INTER_ALGORITHM
Aliases: MPIR_PARAM_BARRIER_INTER_ALGORITHM
MPICH_BARRIER_INTER_ALGORITHM
Description: Variable to select barrier algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
bcast - Force bcast algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_BARRIER_INTER_ALGORITHM_auto
MPIR_CVAR_BARRIER_DISSEM_KVAL
Aliases: MPIR_PARAM_BARRIER_DISSEM_KVAL
MPICH_BARRIER_DISSEM_KVAL
Description: k value for dissemination exchange based barrier algorithm
Default: 2
MPIR_CVAR_BARRIER_RECEXCH_KVAL
Aliases: MPIR_PARAM_BARRIER_RECEXCH_KVAL
MPICH_BARRIER_RECEXCH_KVAL
Description: k value for recursive exchange based allreduce based
barrier
Default: 2
MPIR_CVAR_BARRIER_RECEXCH_SINGLE_PHASE_RECV
Aliases: MPIR_PARAM_BARRIER_RECEXCH_SINGLE_PHASE_RECV
MPICH_BARRIER_RECEXCH_SINGLE_PHASE_RECV
Description: This CVAR controls whether the recv is posted for one
phase or two phases in recexch algos. By default, we post the recvs
for 2 phases.
Default: 0
MPIR_CVAR_IBARRIER_RECEXCH_KVAL
Aliases: MPIR_PARAM_IBARRIER_RECEXCH_KVAL
MPICH_IBARRIER_RECEXCH_KVAL
Description: k value for recursive exchange based ibarrier
Default: 2
MPIR_CVAR_IBARRIER_DISSEM_KVAL
Aliases: MPIR_PARAM_IBARRIER_DISSEM_KVAL
MPICH_IBARRIER_DISSEM_KVAL
Description: k value for dissemination exchange based ibarrier
Default: 2
MPIR_CVAR_IBARRIER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IBARRIER_INTRA_ALGORITHM
MPICH_IBARRIER_INTRA_ALGORITHM
Description: Variable to select ibarrier algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_recursive_doubling - Force recursive doubling algorithm
tsp_recexch - Force generic transport based recursive exchange
algorithm
tsp_k_dissemination - Force generic transport based high-radix
dissemination algorithm
Default: MPIR_CVAR_IBARRIER_INTRA_ALGORITHM_auto
MPIR_CVAR_IBARRIER_INTER_ALGORITHM
Aliases: MPIR_PARAM_IBARRIER_INTER_ALGORITHM
MPICH_IBARRIER_INTER_ALGORITHM
Description: Variable to select ibarrier algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_bcast - Force bcast algorithm
Default: MPIR_CVAR_IBARRIER_INTER_ALGORITHM_auto
MPIR_CVAR_BCAST_MIN_PROCS
Aliases: MPIR_PARAM_BCAST_MIN_PROCS
MPICH_BCAST_MIN_PROCS
Description: Let's define short messages as messages with size <
MPIR_CVAR_BCAST_SHORT_MSG_SIZE, and medium messages as messages
with size >= MPIR_CVAR_BCAST_SHORT_MSG_SIZE but <
MPIR_CVAR_BCAST_LONG_MSG_SIZE, and long messages as messages with
size >= MPIR_CVAR_BCAST_LONG_MSG_SIZE. The broadcast algorithms
selection procedure is as follows. For short messages or when the
number of processes is < MPIR_CVAR_BCAST_MIN_PROCS, we do broadcast
using the binomial tree algorithm. Otherwise, for medium messages
and with a power-of-two number of processes, we do broadcast based
on a scatter followed by a recursive doubling allgather algorithm.
Otherwise, for long messages or with non power-of-two number of
processes, we do broadcast based on a scatter followed by a ring
allgather algorithm. (See also: MPIR_CVAR_BCAST_SHORT_MSG_SIZE,
MPIR_CVAR_BCAST_LONG_MSG_SIZE)
Default: 8
MPIR_CVAR_BCAST_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_BCAST_SHORT_MSG_SIZE
MPICH_BCAST_SHORT_MSG_SIZE
Description: Let's define short messages as messages with size <
MPIR_CVAR_BCAST_SHORT_MSG_SIZE, and medium messages as messages
with size >= MPIR_CVAR_BCAST_SHORT_MSG_SIZE but <
MPIR_CVAR_BCAST_LONG_MSG_SIZE, and long messages as messages with
size >= MPIR_CVAR_BCAST_LONG_MSG_SIZE. The broadcast algorithms
selection procedure is as follows. For short messages or when the
number of processes is < MPIR_CVAR_BCAST_MIN_PROCS, we do broadcast
using the binomial tree algorithm. Otherwise, for medium messages
and with a power-of-two number of processes, we do broadcast based
on a scatter followed by a recursive doubling allgather algorithm.
Otherwise, for long messages or with non power-of-two number of
processes, we do broadcast based on a scatter followed by a ring
allgather algorithm. (See also: MPIR_CVAR_BCAST_MIN_PROCS,
MPIR_CVAR_BCAST_LONG_MSG_SIZE)
Default: 12288
MPIR_CVAR_BCAST_LONG_MSG_SIZE
Aliases: MPIR_PARAM_BCAST_LONG_MSG_SIZE
MPICH_BCAST_LONG_MSG_SIZE
Description: Let's define short messages as messages with size <
MPIR_CVAR_BCAST_SHORT_MSG_SIZE, and medium messages as messages
with size >= MPIR_CVAR_BCAST_SHORT_MSG_SIZE but <
MPIR_CVAR_BCAST_LONG_MSG_SIZE, and long messages as messages with
size >= MPIR_CVAR_BCAST_LONG_MSG_SIZE. The broadcast algorithms
selection procedure is as follows. For short messages or when the
number of processes is < MPIR_CVAR_BCAST_MIN_PROCS, we do broadcast
using the binomial tree algorithm. Otherwise, for medium messages
and with a power-of-two number of processes, we do broadcast based
on a scatter followed by a recursive doubling allgather algorithm.
Otherwise, for long messages or with non power-of-two number of
processes, we do broadcast based on a scatter followed by a ring
allgather algorithm. (See also: MPIR_CVAR_BCAST_MIN_PROCS,
MPIR_CVAR_BCAST_SHORT_MSG_SIZE)
Default: 524288
MPIR_CVAR_BCAST_INTRA_ALGORITHM
Aliases: MPIR_PARAM_BCAST_INTRA_ALGORITHM
MPICH_BCAST_INTRA_ALGORITHM
Description: Variable to select bcast algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
binomial - Force Binomial Tree
nb - Force nonblocking
algorithm
smp - Force smp algorithm
scatter_recursive_doubling_allgather - Force Scatter
Recursive-Doubling Allgather
scatter_ring_allgather - Force Scatter Ring
pipelined_tree - Force tree-based
pipelined algorithm
tree - Force tree-based
algorithm
Default: MPIR_CVAR_BCAST_INTRA_ALGORITHM_auto
MPIR_CVAR_BCAST_TREE_KVAL
Aliases: MPIR_PARAM_BCAST_TREE_KVAL
MPICH_BCAST_TREE_KVAL
Description: k value for tree (kary, knomial, etc.) based bcast
Default: 2
MPIR_CVAR_BCAST_TREE_TYPE
Aliases: MPIR_PARAM_BCAST_TREE_TYPE
MPICH_BCAST_TREE_TYPE
Description: Tree type for tree based bcast kary - kary tree type
knomial_1 - knomial_1 tree type knomial_2 - knomial_2 tree type
topology_aware - topology_aware tree type topology_aware_k -
topology_aware tree type with branching factor k topology_wave -
topology_wave tree type
Default: "kary"
MPIR_CVAR_BCAST_TOPO_REORDER_ENABLE
Aliases: MPIR_PARAM_BCAST_TOPO_REORDER_ENABLE
MPICH_BCAST_TOPO_REORDER_ENABLE
Description: This cvar controls if the leaders are reordered based on
the number of ranks in each group.
Default: 1
MPIR_CVAR_BCAST_TOPO_OVERHEAD
Aliases: MPIR_PARAM_BCAST_TOPO_OVERHEAD
MPICH_BCAST_TOPO_OVERHEAD
Description: This cvar controls the size of the overhead.
Default: 200
MPIR_CVAR_BCAST_TOPO_DIFF_GROUPS
Aliases: MPIR_PARAM_BCAST_TOPO_DIFF_GROUPS
MPICH_BCAST_TOPO_DIFF_GROUPS
Description: This cvar controls the latency between different groups.
Default: 2800
MPIR_CVAR_BCAST_TOPO_DIFF_SWITCHES
Aliases: MPIR_PARAM_BCAST_TOPO_DIFF_SWITCHES
MPICH_BCAST_TOPO_DIFF_SWITCHES
Description: This cvar controls the latency between different switches
in the same groups.
Default: 1900
MPIR_CVAR_BCAST_TOPO_SAME_SWITCHES
Aliases: MPIR_PARAM_BCAST_TOPO_SAME_SWITCHES
MPICH_BCAST_TOPO_SAME_SWITCHES
Description: This cvar controls the latency in the same switch.
Default: 1600
MPIR_CVAR_BCAST_IS_NON_BLOCKING
Aliases: MPIR_PARAM_BCAST_IS_NON_BLOCKING
MPICH_BCAST_IS_NON_BLOCKING
Description: If set to true, MPI_Bcast will use non-blocking send.
Default: 1
MPIR_CVAR_BCAST_TREE_PIPELINE_CHUNK_SIZE
Aliases: MPIR_PARAM_BCAST_TREE_PIPELINE_CHUNK_SIZE
MPICH_BCAST_TREE_PIPELINE_CHUNK_SIZE
Description: Indicates the chunk size for pipelined bcast.
Default: 8192
MPIR_CVAR_BCAST_RECV_PRE_POST
Aliases: MPIR_PARAM_BCAST_RECV_PRE_POST
MPICH_BCAST_RECV_PRE_POST
Description: If set to true, MPI_Bcast will pre-post all the receives.
Default: 0
MPIR_CVAR_BCAST_INTER_ALGORITHM
Aliases: MPIR_PARAM_BCAST_INTER_ALGORITHM
MPICH_BCAST_INTER_ALGORITHM
Description: Variable to select bcast algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
remote_send_local_bcast - Force remote-send-local-bcast algorithm
Default: MPIR_CVAR_BCAST_INTER_ALGORITHM_auto
MPIR_CVAR_IBCAST_TREE_KVAL
Aliases: MPIR_PARAM_IBCAST_TREE_KVAL
MPICH_IBCAST_TREE_KVAL
Description: k value for tree (kary, knomial, etc.) based ibcast
Default: 2
MPIR_CVAR_IBCAST_TREE_TYPE
Aliases: MPIR_PARAM_IBCAST_TREE_TYPE
MPICH_IBCAST_TREE_TYPE
Description: Tree type for tree based ibcast kary - kary tree type
knomial_1 - knomial_1 tree type knomial_2 - knomial_2 tree type
Default: "kary"
MPIR_CVAR_IBCAST_TREE_PIPELINE_CHUNK_SIZE
Aliases: MPIR_PARAM_IBCAST_TREE_PIPELINE_CHUNK_SIZE
MPICH_IBCAST_TREE_PIPELINE_CHUNK_SIZE
Description: Maximum chunk size (in bytes) for pipelining in tree based
ibcast. Default value is 0, that is, no pipelining by default
Default: 0
MPIR_CVAR_IBCAST_RING_CHUNK_SIZE
Aliases: MPIR_PARAM_IBCAST_RING_CHUNK_SIZE
MPICH_IBCAST_RING_CHUNK_SIZE
Description: Maximum chunk size (in bytes) for pipelining in ibcast
ring algorithm. Default value is 0, that is, no pipelining by
default
Default: 0
MPIR_CVAR_IBCAST_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IBCAST_INTRA_ALGORITHM
MPICH_IBCAST_INTRA_ALGORITHM
Description: Variable to select ibcast algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_binomial - Force Binomial
algorithm
sched_smp - Force smp algorithm
sched_scatter_recursive_doubling_allgather - Force Scatter
Recursive Doubling Allgather algorithm
sched_scatter_ring_allgather - Force Scatter Ring
Allgather algorithm
tsp_tree - Force Generic Transport
Tree algorithm
tsp_scatterv_recexch_allgatherv - Force Generic Transport
Scatterv followed by Recursive Exchange Allgatherv algorithm
tsp_scatterv_ring_allgatherv - Force Generic Transport
Scatterv followed by Ring Allgatherv algorithm
tsp_ring - Force Generic Transport
Ring algorithm
Default: MPIR_CVAR_IBCAST_INTRA_ALGORITHM_auto
MPIR_CVAR_IBCAST_SCATTERV_KVAL
Aliases: MPIR_PARAM_IBCAST_SCATTERV_KVAL
MPICH_IBCAST_SCATTERV_KVAL
Description: k value for tree based scatter in
scatter_recexch_allgather algorithm
Default: 2
MPIR_CVAR_IBCAST_ALLGATHERV_RECEXCH_KVAL
Aliases: MPIR_PARAM_IBCAST_ALLGATHERV_RECEXCH_KVAL
MPICH_IBCAST_ALLGATHERV_RECEXCH_KVAL
Description: k value for recursive exchange based allgather in
scatter_recexch_allgather algorithm
Default: 2
MPIR_CVAR_IBCAST_INTER_ALGORITHM
Aliases: MPIR_PARAM_IBCAST_INTER_ALGORITHM
MPICH_IBCAST_INTER_ALGORITHM
Description: Variable to select ibcast algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_flat - Force flat algorithm
Default: MPIR_CVAR_IBCAST_INTER_ALGORITHM_auto
MPIR_CVAR_GATHER_INTER_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_GATHER_INTER_SHORT_MSG_SIZE
MPICH_GATHER_INTER_SHORT_MSG_SIZE
Description: use the short message algorithm for intercommunicator
MPI_Gather if the send buffer size is < this value (in bytes) (See
also: MPIR_CVAR_GATHER_VSMALL_MSG_SIZE)
Default: 2048
MPIR_CVAR_GATHER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_GATHER_INTRA_ALGORITHM
MPICH_GATHER_INTRA_ALGORITHM
Description: Variable to select gather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
binomial - Force binomial algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_GATHER_INTRA_ALGORITHM_auto
MPIR_CVAR_GATHER_INTER_ALGORITHM
Aliases: MPIR_PARAM_GATHER_INTER_ALGORITHM
MPICH_GATHER_INTER_ALGORITHM
Description: Variable to select gather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
linear - Force linear algorithm
local_gather_remote_send - Force local-gather-remote-send algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_GATHER_INTER_ALGORITHM_auto
MPIR_CVAR_IGATHER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IGATHER_INTRA_ALGORITHM
MPICH_IGATHER_INTRA_ALGORITHM
Description: Variable to select igather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_binomial - Force binomial algorithm
tsp_tree - Force genetric transport based tree algorithm
Default: MPIR_CVAR_IGATHER_INTRA_ALGORITHM_auto
MPIR_CVAR_IGATHER_TREE_KVAL
Aliases: MPIR_PARAM_IGATHER_TREE_KVAL
MPICH_IGATHER_TREE_KVAL
Description: k value for tree based igather
Default: 2
MPIR_CVAR_IGATHER_INTER_ALGORITHM
Aliases: MPIR_PARAM_IGATHER_INTER_ALGORITHM
MPICH_IGATHER_INTER_ALGORITHM
Description: Variable to select igather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_long - Force long inter algorithm
sched_short - Force short inter algorithm
Default: MPIR_CVAR_IGATHER_INTER_ALGORITHM_auto
MPIR_CVAR_GATHERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_GATHERV_INTRA_ALGORITHM
MPICH_GATHERV_INTRA_ALGORITHM
Description: Variable to select gatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
linear - Force linear algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_GATHERV_INTRA_ALGORITHM_auto
MPIR_CVAR_GATHERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_GATHERV_INTER_ALGORITHM
MPICH_GATHERV_INTER_ALGORITHM
Description: Variable to select gatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
linear - Force linear algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_GATHERV_INTER_ALGORITHM_auto
MPIR_CVAR_IGATHERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IGATHERV_INTRA_ALGORITHM
MPICH_IGATHERV_INTRA_ALGORITHM
Description: Variable to select igatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_IGATHERV_INTRA_ALGORITHM_auto
MPIR_CVAR_IGATHERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_IGATHERV_INTER_ALGORITHM
MPICH_IGATHERV_INTER_ALGORITHM
Description: Variable to select igatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_IGATHERV_INTER_ALGORITHM_auto
MPIR_CVAR_SCATTER_INTER_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_SCATTER_INTER_SHORT_MSG_SIZE
MPICH_SCATTER_INTER_SHORT_MSG_SIZE
Description: use the short message algorithm for intercommunicator
MPI_Scatter if the send buffer size is < this value (in bytes)
Default: 2048
MPIR_CVAR_SCATTER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_SCATTER_INTRA_ALGORITHM
MPICH_SCATTER_INTRA_ALGORITHM
Description: Variable to select scatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
binomial - Force binomial algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_SCATTER_INTRA_ALGORITHM_auto
MPIR_CVAR_SCATTER_INTER_ALGORITHM
Aliases: MPIR_PARAM_SCATTER_INTER_ALGORITHM
MPICH_SCATTER_INTER_ALGORITHM
Description: Variable to select scatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
linear - Force linear algorithm
nb - Force nonblocking algorithm
remote_send_local_scatter - Force remote-send-local-scatter
algorithm
Default: MPIR_CVAR_SCATTER_INTER_ALGORITHM_auto
MPIR_CVAR_ISCATTER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ISCATTER_INTRA_ALGORITHM
MPICH_ISCATTER_INTRA_ALGORITHM
Description: Variable to select iscatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_binomial - Force binomial algorithm
tsp_tree - Force genetric transport based tree algorithm
Default: MPIR_CVAR_ISCATTER_INTRA_ALGORITHM_auto
MPIR_CVAR_ISCATTER_TREE_KVAL
Aliases: MPIR_PARAM_ISCATTER_TREE_KVAL
MPICH_ISCATTER_TREE_KVAL
Description: k value for tree based iscatter
Default: 2
MPIR_CVAR_ISCATTER_INTER_ALGORITHM
Aliases: MPIR_PARAM_ISCATTER_INTER_ALGORITHM
MPICH_ISCATTER_INTER_ALGORITHM
Description: Variable to select iscatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
sched_remote_send_local_scatter - Force remote-send-local-scatter
algorithm
Default: MPIR_CVAR_ISCATTER_INTER_ALGORITHM_auto
MPIR_CVAR_SCATTERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_SCATTERV_INTRA_ALGORITHM
MPICH_SCATTERV_INTRA_ALGORITHM
Description: Variable to select scatterv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
linear - Force linear algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_SCATTERV_INTRA_ALGORITHM_auto
MPIR_CVAR_SCATTERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_SCATTERV_INTER_ALGORITHM
MPICH_SCATTERV_INTER_ALGORITHM
Description: Variable to select scatterv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
linear - Force linear algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_SCATTERV_INTER_ALGORITHM_auto
MPIR_CVAR_ISCATTERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ISCATTERV_INTRA_ALGORITHM
MPICH_ISCATTERV_INTRA_ALGORITHM
Description: Variable to select iscatterv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_ISCATTERV_INTRA_ALGORITHM_auto
MPIR_CVAR_ISCATTERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_ISCATTERV_INTER_ALGORITHM
MPICH_ISCATTERV_INTER_ALGORITHM
Description: Variable to select iscatterv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_ISCATTERV_INTER_ALGORITHM_auto
MPIR_CVAR_ALLGATHER_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_ALLGATHER_SHORT_MSG_SIZE
MPICH_ALLGATHER_SHORT_MSG_SIZE
Description: For MPI_Allgather and MPI_Allgatherv, the short message
algorithm will be used if the send buffer size is < this value (in
bytes). (See also: MPIR_CVAR_ALLGATHER_LONG_MSG_SIZE)
Default: 81920
MPIR_CVAR_ALLGATHER_LONG_MSG_SIZE
Aliases: MPIR_PARAM_ALLGATHER_LONG_MSG_SIZE
MPICH_ALLGATHER_LONG_MSG_SIZE
Description: For MPI_Allgather and MPI_Allgatherv, the long message
algorithm will be used if the send buffer size is >= this value (in
bytes) (See also: MPIR_CVAR_ALLGATHER_SHORT_MSG_SIZE)
Default: 524288
MPIR_CVAR_ALLGATHER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLGATHER_INTRA_ALGORITHM
MPICH_ALLGATHER_INTRA_ALGORITHM
Description: Variable to select allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
brucks - Force brucks algorithm
k_brucks - Force brucks algorithm
nb - Force nonblocking algorithm
recursive_doubling - Force recursive doubling algorithm
ring - Force ring algorithm
recexch_doubling - Force recexch distance doubling algorithm
recexch_halving - Force recexch distance halving algorithm
Default: MPIR_CVAR_ALLGATHER_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLGATHER_BRUCKS_KVAL
Aliases: MPIR_PARAM_ALLGATHER_BRUCKS_KVAL
MPICH_ALLGATHER_BRUCKS_KVAL
Description: radix (k) value for generic transport brucks based
allgather
Default: 2
MPIR_CVAR_ALLGATHER_RECEXCH_KVAL
Aliases: MPIR_PARAM_ALLGATHER_RECEXCH_KVAL
MPICH_ALLGATHER_RECEXCH_KVAL
Description: k value for recursive exchange based allgather
Default: 2
MPIR_CVAR_ALLGATHER_RECEXCH_SINGLE_PHASE_RECV
Aliases: MPIR_PARAM_ALLGATHER_RECEXCH_SINGLE_PHASE_RECV
MPICH_ALLGATHER_RECEXCH_SINGLE_PHASE_RECV
Description: This CVAR controls whether the recv is posted for one
phase or two phases in recexch algos. By default, we post the recvs
for 2 phases.
Default: 0
MPIR_CVAR_ALLGATHER_INTER_ALGORITHM
Aliases: MPIR_PARAM_ALLGATHER_INTER_ALGORITHM
MPICH_ALLGATHER_INTER_ALGORITHM
Description: Variable to select allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
local_gather_remote_bcast - Force local-gather-remote-bcast
algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_ALLGATHER_INTER_ALGORITHM_auto
MPIR_CVAR_IALLGATHER_RECEXCH_KVAL
Aliases: MPIR_PARAM_IALLGATHER_RECEXCH_KVAL
MPICH_IALLGATHER_RECEXCH_KVAL
Description: k value for recursive exchange based iallgather
Default: 2
MPIR_CVAR_IALLGATHER_BRUCKS_KVAL
Aliases: MPIR_PARAM_IALLGATHER_BRUCKS_KVAL
MPICH_IALLGATHER_BRUCKS_KVAL
Description: k value for radix in brucks based iallgather
Default: 2
MPIR_CVAR_IALLGATHER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IALLGATHER_INTRA_ALGORITHM
MPICH_IALLGATHER_INTRA_ALGORITHM
Description: Variable to select iallgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_ring - Force ring algorithm
sched_brucks - Force brucks algorithm
sched_recursive_doubling - Force recursive doubling algorithm
tsp_ring - Force generic transport ring algorithm
tsp_brucks - Force generic transport based brucks algorithm
tsp_recexch_doubling - Force generic transport recursive exchange
with neighbours doubling in distance in each phase
tsp_recexch_halving - Force generic transport recursive exchange
with neighbours halving in distance in each phase
Default: MPIR_CVAR_IALLGATHER_INTRA_ALGORITHM_auto
MPIR_CVAR_IALLGATHER_INTER_ALGORITHM
Aliases: MPIR_PARAM_IALLGATHER_INTER_ALGORITHM
MPICH_IALLGATHER_INTER_ALGORITHM
Description: Variable to select iallgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_local_gather_remote_bcast - Force local-gather-remote-bcast
algorithm
Default: MPIR_CVAR_IALLGATHER_INTER_ALGORITHM_auto
MPIR_CVAR_ALLGATHERV_PIPELINE_MSG_SIZE
Aliases: MPIR_PARAM_ALLGATHERV_PIPELINE_MSG_SIZE
MPICH_ALLGATHERV_PIPELINE_MSG_SIZE
Description: The smallest message size that will be used for the
pipelined, large-message, ring algorithm in the MPI_Allgatherv
implementation.
Default: 32768
MPIR_CVAR_ALLGATHERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLGATHERV_INTRA_ALGORITHM
MPICH_ALLGATHERV_INTRA_ALGORITHM
Description: Variable to select allgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
brucks - Force brucks algorithm
nb - Force nonblocking algorithm
recursive_doubling - Force recursive doubling algorithm
ring - Force ring algorithm
Default: MPIR_CVAR_ALLGATHERV_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLGATHERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_ALLGATHERV_INTER_ALGORITHM
MPICH_ALLGATHERV_INTER_ALGORITHM
Description: Variable to select allgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
remote_gather_local_bcast - Force remote-gather-local-bcast
algorithm
Default: MPIR_CVAR_ALLGATHERV_INTER_ALGORITHM_auto
MPIR_CVAR_IALLGATHERV_RECEXCH_KVAL
Aliases: MPIR_PARAM_IALLGATHERV_RECEXCH_KVAL
MPICH_IALLGATHERV_RECEXCH_KVAL
Description: k value for recursive exchange based iallgatherv
Default: 2
MPIR_CVAR_IALLGATHERV_BRUCKS_KVAL
Aliases: MPIR_PARAM_IALLGATHERV_BRUCKS_KVAL
MPICH_IALLGATHERV_BRUCKS_KVAL
Description: k value for radix in brucks based iallgatherv
Default: 2
MPIR_CVAR_IALLGATHERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IALLGATHERV_INTRA_ALGORITHM
MPICH_IALLGATHERV_INTRA_ALGORITHM
Description: Variable to select iallgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_brucks - Force brucks algorithm
sched_recursive_doubling - Force recursive doubling algorithm
sched_ring - Force ring algorithm
tsp_recexch_doubling - Force generic transport recursive exchange
with neighbours doubling in distance in each phase
tsp_recexch_halving - Force generic transport recursive exchange
with neighbours halving in distance in each phase
tsp_ring - Force generic transport ring algorithm
tsp_brucks - Force generic transport based brucks
algorithm
Default: MPIR_CVAR_IALLGATHERV_INTRA_ALGORITHM_auto
MPIR_CVAR_IALLGATHERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_IALLGATHERV_INTER_ALGORITHM
MPICH_IALLGATHERV_INTER_ALGORITHM
Description: Variable to select iallgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_remote_gather_local_bcast - Force remote-gather-local-bcast
algorithm
Default: MPIR_CVAR_IALLGATHERV_INTER_ALGORITHM_auto
MPIR_CVAR_ALLTOALL_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_ALLTOALL_SHORT_MSG_SIZE
MPICH_ALLTOALL_SHORT_MSG_SIZE
Description: the short message algorithm will be used if the
per-destination message size (sendcount*size(sendtype)) is <= this
value (See also: MPIR_CVAR_ALLTOALL_MEDIUM_MSG_SIZE)
Default: 256
MPIR_CVAR_ALLTOALL_MEDIUM_MSG_SIZE
Aliases: MPIR_PARAM_ALLTOALL_MEDIUM_MSG_SIZE
MPICH_ALLTOALL_MEDIUM_MSG_SIZE
Description: the medium message algorithm will be used if the
per-destination message size (sendcount*size(sendtype)) is <= this
value and larger than MPIR_CVAR_ALLTOALL_SHORT_MSG_SIZE (See also:
MPIR_CVAR_ALLTOALL_SHORT_MSG_SIZE)
Default: 32768
MPIR_CVAR_ALLTOALL_THROTTLE
Aliases: MPIR_PARAM_ALLTOALL_THROTTLE
MPICH_ALLTOALL_THROTTLE
Description: max no. of irecvs/isends posted at a time in some alltoall
algorithms. Setting it to 0 causes all irecvs/isends to be posted
at once
Default: 32
MPIR_CVAR_ALLTOALL_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALL_INTRA_ALGORITHM
MPICH_ALLTOALL_INTRA_ALGORITHM
Description: Variable to select alltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
brucks - Force brucks algorithm
k_brucks - Force Force radix k brucks algorithm
nb - Force nonblocking algorithm
pairwise - Force pairwise algorithm
pairwise_sendrecv_replace - Force pairwise sendrecv replace
algorithm
scattered - Force scattered algorithm
Default: MPIR_CVAR_ALLTOALL_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLTOALL_BRUCKS_KVAL
Aliases: MPIR_PARAM_ALLTOALL_BRUCKS_KVAL
MPICH_ALLTOALL_BRUCKS_KVAL
Description: radix (k) value for generic transport brucks based
alltoall
Default: 2
MPIR_CVAR_ALLTOALL_INTER_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALL_INTER_ALGORITHM
MPICH_ALLTOALL_INTER_ALGORITHM
Description: Variable to select alltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
pairwise_exchange - Force pairwise exchange algorithm
Default: MPIR_CVAR_ALLTOALL_INTER_ALGORITHM_auto
MPIR_CVAR_IALLTOALL_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IALLTOALL_INTRA_ALGORITHM
MPICH_IALLTOALL_INTRA_ALGORITHM
Description: Variable to select ialltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_brucks - Force brucks algorithm
sched_inplace - Force inplace algorithm
sched_pairwise - Force pairwise algorithm
sched_permuted_sendrecv - Force permuted sendrecv algorithm
tsp_ring - Force generic transport based ring algorithm
tsp_brucks - Force generic transport based brucks
algorithm
tsp_scattered - Force generic transport based scattered
algorithm
Default: MPIR_CVAR_IALLTOALL_INTRA_ALGORITHM_auto
MPIR_CVAR_IALLTOALL_INTER_ALGORITHM
Aliases: MPIR_PARAM_IALLTOALL_INTER_ALGORITHM
MPICH_IALLTOALL_INTER_ALGORITHM
Description: Variable to select ialltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_pairwise_exchange - Force pairwise exchange algorithm
Default: MPIR_CVAR_IALLTOALL_INTER_ALGORITHM_auto
MPIR_CVAR_ALLTOALLV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALLV_INTRA_ALGORITHM
MPICH_ALLTOALLV_INTRA_ALGORITHM
Description: Variable to select alltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
pairwise_sendrecv_replace - Force pairwise_sendrecv_replace
algorithm
scattered - Force scattered algorithm
Default: MPIR_CVAR_ALLTOALLV_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLTOALLV_INTER_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALLV_INTER_ALGORITHM
MPICH_ALLTOALLV_INTER_ALGORITHM
Description: Variable to select alltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
pairwise_exchange - Force pairwise exchange algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_ALLTOALLV_INTER_ALGORITHM_auto
MPIR_CVAR_IALLTOALLV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IALLTOALLV_INTRA_ALGORITHM
MPICH_IALLTOALLV_INTRA_ALGORITHM
Description: Variable to select ialltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_blocked - Force blocked algorithm
sched_inplace - Force inplace algorithm
tsp_scattered - Force generic transport based scattered
algorithm
tsp_blocked - Force generic transport blocked algorithm
tsp_inplace - Force generic transport inplace algorithm
Default: MPIR_CVAR_IALLTOALLV_INTRA_ALGORITHM_auto
MPIR_CVAR_IALLTOALLV_INTER_ALGORITHM
Aliases: MPIR_PARAM_IALLTOALLV_INTER_ALGORITHM
MPICH_IALLTOALLV_INTER_ALGORITHM
Description: Variable to select ialltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_pairwise_exchange - Force pairwise exchange algorithm
Default: MPIR_CVAR_IALLTOALLV_INTER_ALGORITHM_auto
MPIR_CVAR_IALLTOALLV_SCATTERED_OUTSTANDING_TASKS
Aliases: MPIR_PARAM_IALLTOALLV_SCATTERED_OUTSTANDING_TASKS
MPICH_IALLTOALLV_SCATTERED_OUTSTANDING_TASKS
Description: Maximum number of outstanding sends and recvs posted at a
time
Default: 64
MPIR_CVAR_IALLTOALLV_SCATTERED_BATCH_SIZE
Aliases: MPIR_PARAM_IALLTOALLV_SCATTERED_BATCH_SIZE
MPICH_IALLTOALLV_SCATTERED_BATCH_SIZE
Description: Number of send/receive tasks that scattered algorithm
waits for completion before posting another batch of send/receives
of that size
Default: 4
MPIR_CVAR_ALLTOALLW_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALLW_INTRA_ALGORITHM
MPICH_ALLTOALLW_INTRA_ALGORITHM
Description: Variable to select alltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
pairwise_sendrecv_replace - Force pairwise sendrecv replace
algorithm
scattered - Force scattered algorithm
Default: MPIR_CVAR_ALLTOALLW_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLTOALLW_INTER_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALLW_INTER_ALGORITHM
MPICH_ALLTOALLW_INTER_ALGORITHM
Description: Variable to select alltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
pairwise_exchange - Force pairwise exchange algorithm
Default: MPIR_CVAR_ALLTOALLW_INTER_ALGORITHM_auto
MPIR_CVAR_IALLTOALLW_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IALLTOALLW_INTRA_ALGORITHM
MPICH_IALLTOALLW_INTRA_ALGORITHM
Description: Variable to select ialltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_blocked - Force blocked algorithm
sched_inplace - Force inplace algorithm
tsp_blocked - Force generic transport based blocked algorithm
tsp_inplace - Force generic transport based inplace algorithm
Default: MPIR_CVAR_IALLTOALLW_INTRA_ALGORITHM_auto
MPIR_CVAR_IALLTOALLW_INTER_ALGORITHM
Aliases: MPIR_PARAM_IALLTOALLW_INTER_ALGORITHM
MPICH_IALLTOALLW_INTER_ALGORITHM
Description: Variable to select ialltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_pairwise_exchange - Force pairwise exchange algorithm
Default: MPIR_CVAR_IALLTOALLW_INTER_ALGORITHM_auto
MPIR_CVAR_REDUCE_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_REDUCE_SHORT_MSG_SIZE
MPICH_REDUCE_SHORT_MSG_SIZE
Description: the short message algorithm will be used if the send
buffer size is <= this value (in bytes)
Default: 2048
MPIR_CVAR_REDUCE_INTRA_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_INTRA_ALGORITHM
MPICH_REDUCE_INTRA_ALGORITHM
Description: Variable to select reduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
binomial - Force binomial algorithm
nb - Force nonblocking algorithm
smp - Force smp algorithm
reduce_scatter_gather - Force reduce scatter gather algorithm
Default: MPIR_CVAR_REDUCE_INTRA_ALGORITHM_auto
MPIR_CVAR_REDUCE_INTER_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_INTER_ALGORITHM
MPICH_REDUCE_INTER_ALGORITHM
Description: Variable to select reduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
local_reduce_remote_send - Force local-reduce-remote-send algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_REDUCE_INTER_ALGORITHM_auto
MPIR_CVAR_IREDUCE_TREE_KVAL
Aliases: MPIR_PARAM_IREDUCE_TREE_KVAL
MPICH_IREDUCE_TREE_KVAL
Description: k value for tree (kary, knomial, etc.) based ireduce
Default: 2
MPIR_CVAR_IREDUCE_TREE_TYPE
Aliases: MPIR_PARAM_IREDUCE_TREE_TYPE
MPICH_IREDUCE_TREE_TYPE
Description: Tree type for tree based ireduce kary - kary tree
knomial_1 - knomial_1 tree knomial_2 - knomial_2 tree
topology_aware - topology_aware tree type topology_aware_k -
topology_aware tree type with branching factor k topology_wave -
topology_wave tree type
Default: "kary"
MPIR_CVAR_IREDUCE_TOPO_REORDER_ENABLE
Aliases: MPIR_PARAM_IREDUCE_TOPO_REORDER_ENABLE
MPICH_IREDUCE_TOPO_REORDER_ENABLE
Description: This cvar controls if the leaders are reordered based on
the number of ranks in each group.
Default: 1
MPIR_CVAR_IREDUCE_TOPO_OVERHEAD
Aliases: MPIR_PARAM_IREDUCE_TOPO_OVERHEAD
MPICH_IREDUCE_TOPO_OVERHEAD
Description: This cvar controls the size of the overhead.
Default: 200
MPIR_CVAR_IREDUCE_TOPO_DIFF_GROUPS
Aliases: MPIR_PARAM_IREDUCE_TOPO_DIFF_GROUPS
MPICH_IREDUCE_TOPO_DIFF_GROUPS
Description: This cvar controls the latency between different groups.
Default: 2800
MPIR_CVAR_IREDUCE_TOPO_DIFF_SWITCHES
Aliases: MPIR_PARAM_IREDUCE_TOPO_DIFF_SWITCHES
MPICH_IREDUCE_TOPO_DIFF_SWITCHES
Description: This cvar controls the latency between different switches
in the same groups.
Default: 1900
MPIR_CVAR_IREDUCE_TOPO_SAME_SWITCHES
Aliases: MPIR_PARAM_IREDUCE_TOPO_SAME_SWITCHES
MPICH_IREDUCE_TOPO_SAME_SWITCHES
Description: This cvar controls the latency in the same switch.
Default: 1600
MPIR_CVAR_IREDUCE_TREE_PIPELINE_CHUNK_SIZE
Aliases: MPIR_PARAM_IREDUCE_TREE_PIPELINE_CHUNK_SIZE
MPICH_IREDUCE_TREE_PIPELINE_CHUNK_SIZE
Description: Maximum chunk size (in bytes) for pipelining in tree based
ireduce. Default value is 0, that is, no pipelining by default
Default: -1
MPIR_CVAR_IREDUCE_RING_CHUNK_SIZE
Aliases: MPIR_PARAM_IREDUCE_RING_CHUNK_SIZE
MPICH_IREDUCE_RING_CHUNK_SIZE
Description: Maximum chunk size (in bytes) for pipelining in ireduce
ring algorithm. Default value is 0, that is, no pipelining by
default
Default: 0
MPIR_CVAR_IREDUCE_TREE_BUFFER_PER_CHILD
Aliases: MPIR_PARAM_IREDUCE_TREE_BUFFER_PER_CHILD
MPICH_IREDUCE_TREE_BUFFER_PER_CHILD
Description: If set to true, a rank in tree algorithms will allocate a
dedicated buffer for every child it receives data from. This would
mean more memory consumption but it would allow preposting of the
receives and hence reduce the number of unexpected messages. If set
to false, there is only one buffer that is used to receive the data
from all the children. The receives are therefore serialized, that
is, only one receive can be posted at a time.
Default: 0
MPIR_CVAR_IREDUCE_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_INTRA_ALGORITHM
MPICH_IREDUCE_INTRA_ALGORITHM
Description: Variable to select ireduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_smp - Force smp algorithm
sched_binomial - Force binomial algorithm
sched_reduce_scatter_gather - Force reduce scatter gather algorithm
tsp_tree - Force Generic Transport Tree
tsp_ring - Force Generic Transport Ring
Default: MPIR_CVAR_IREDUCE_INTRA_ALGORITHM_auto
MPIR_CVAR_IREDUCE_INTER_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_INTER_ALGORITHM
MPICH_IREDUCE_INTER_ALGORITHM
Description: Variable to select ireduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_local_reduce_remote_send - Force local-reduce-remote-send
algorithm
Default: MPIR_CVAR_IREDUCE_INTER_ALGORITHM_auto
MPIR_CVAR_ALLREDUCE_SHORT_MSG_SIZE
Aliases: MPIR_PARAM_ALLREDUCE_SHORT_MSG_SIZE
MPICH_ALLREDUCE_SHORT_MSG_SIZE
Description: the short message algorithm will be used if the send
buffer size is <= this value (in bytes)
Default: 2048
MPIR_CVAR_ALLREDUCE_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLREDUCE_INTRA_ALGORITHM
MPICH_ALLREDUCE_INTRA_ALGORITHM
Description: Variable to select allreduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
smp - Force smp algorithm
recursive_doubling - Force recursive doubling algorithm
recursive_multiplying - Force recursive multiplying algorithm
reduce_scatter_allgather - Force reduce scatter allgather algorithm
tree - Force pipelined tree algorithm
recexch - Force generic transport recursive
exchange algorithm
ring - Force ring algorithm
k_reduce_scatter_allgather - Force reduce scatter allgather
algorithm
ccl - Force CCL algorithm
Default: MPIR_CVAR_ALLREDUCE_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLREDUCE_RECURSIVE_MULTIPLYING_KVAL
Aliases: MPIR_PARAM_ALLREDUCE_RECURSIVE_MULTIPLYING_KVAL
MPICH_ALLREDUCE_RECURSIVE_MULTIPLYING_KVAL
Description: radix value (power of k) for generic recursive multiplying
based allreduce
Default: 2
MPIR_CVAR_ALLREDUCE_TREE_TYPE
Aliases: MPIR_PARAM_ALLREDUCE_TREE_TYPE
MPICH_ALLREDUCE_TREE_TYPE
Description: Tree type for tree based allreduce knomial_1 is default as
it supports both commutative and non-commutative reduce operations
kary - kary tree type knomial_1 - knomial_1 tree type (tree
grows starting from the left of the root) knomial_2 - knomial_2
tree type (tree grows starting from the right of the root)
topology_aware - topology_aware tree type topology_aware_k -
topology_aware tree type with branching factor k topology_wave -
topology_wave tree type
Default: "knomial_1"
MPIR_CVAR_ALLREDUCE_TREE_KVAL
Aliases: MPIR_PARAM_ALLREDUCE_TREE_KVAL
MPICH_ALLREDUCE_TREE_KVAL
Description: Indicates the branching factor for kary or knomial trees.
Default: 2
MPIR_CVAR_ALLREDUCE_TOPO_REORDER_ENABLE
Aliases: MPIR_PARAM_ALLREDUCE_TOPO_REORDER_ENABLE
MPICH_ALLREDUCE_TOPO_REORDER_ENABLE
Description: This cvar controls if the leaders are reordered based on
the number of ranks in each group.
Default: 1
MPIR_CVAR_ALLREDUCE_TOPO_OVERHEAD
Aliases: MPIR_PARAM_ALLREDUCE_TOPO_OVERHEAD
MPICH_ALLREDUCE_TOPO_OVERHEAD
Description: This cvar controls the size of the overhead.
Default: 200
MPIR_CVAR_ALLREDUCE_TOPO_DIFF_GROUPS
Aliases: MPIR_PARAM_ALLREDUCE_TOPO_DIFF_GROUPS
MPICH_ALLREDUCE_TOPO_DIFF_GROUPS
Description: This cvar controls the latency between different groups.
Default: 2800
MPIR_CVAR_ALLREDUCE_TOPO_DIFF_SWITCHES
Aliases: MPIR_PARAM_ALLREDUCE_TOPO_DIFF_SWITCHES
MPICH_ALLREDUCE_TOPO_DIFF_SWITCHES
Description: This cvar controls the latency between different switches
in the same groups.
Default: 1900
MPIR_CVAR_ALLREDUCE_TOPO_SAME_SWITCHES
Aliases: MPIR_PARAM_ALLREDUCE_TOPO_SAME_SWITCHES
MPICH_ALLREDUCE_TOPO_SAME_SWITCHES
Description: This cvar controls the latency in the same switch.
Default: 1600
MPIR_CVAR_ALLREDUCE_TREE_PIPELINE_CHUNK_SIZE
Aliases: MPIR_PARAM_ALLREDUCE_TREE_PIPELINE_CHUNK_SIZE
MPICH_ALLREDUCE_TREE_PIPELINE_CHUNK_SIZE
Description: Maximum chunk size (in bytes) for pipelining in tree based
allreduce. Default value is 0, that is, no pipelining by default
Default: 0
MPIR_CVAR_ALLREDUCE_TREE_BUFFER_PER_CHILD
Aliases: MPIR_PARAM_ALLREDUCE_TREE_BUFFER_PER_CHILD
MPICH_ALLREDUCE_TREE_BUFFER_PER_CHILD
Description: If set to true, a rank in tree_kary and tree_knomial
algorithms will allocate a dedicated buffer for every child it
receives data from. This would mean more memory consumption but it
would allow preposting of the receives and hence reduce the number
of unexpected messages. If set to false, there is only one buffer
that is used to receive the data from all the children. The
receives are therefore serialized, that is, only one receive can be
posted at a time.
Default: 0
MPIR_CVAR_ALLREDUCE_RECEXCH_KVAL
Aliases: MPIR_PARAM_ALLREDUCE_RECEXCH_KVAL
MPICH_ALLREDUCE_RECEXCH_KVAL
Description: k value for recursive exchange based allreduce
Default: 2
MPIR_CVAR_ALLREDUCE_RECEXCH_SINGLE_PHASE_RECV
Aliases: MPIR_PARAM_ALLREDUCE_RECEXCH_SINGLE_PHASE_RECV
MPICH_ALLREDUCE_RECEXCH_SINGLE_PHASE_RECV
Description: This CVAR controls whether the recv is posted for one
phase or two phases in recexch algos. By default, we post the recvs
for 2 phases.
Default: 0
MPIR_CVAR_ALLREDUCE_CCL
Aliases: MPIR_PARAM_ALLREDUCE_CCL
MPICH_ALLREDUCE_CCL
Description: CCL to use for CCL allreduce
auto - Internal algorithm selection (use the value from the .json
tuning file)
nccl - Force NCCL
rccl - Force RCCL
Default: MPIR_CVAR_ALLREDUCE_CCL_auto
MPIR_CVAR_ALLREDUCE_INTER_ALGORITHM
Aliases: MPIR_PARAM_ALLREDUCE_INTER_ALGORITHM
MPICH_ALLREDUCE_INTER_ALGORITHM
Description: Variable to select allreduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
reduce_exchange_bcast - Force reduce-exchange-bcast algorithm
Default: MPIR_CVAR_ALLREDUCE_INTER_ALGORITHM_auto
MPIR_CVAR_IALLREDUCE_TREE_KVAL
Aliases: MPIR_PARAM_IALLREDUCE_TREE_KVAL
MPICH_IALLREDUCE_TREE_KVAL
Description: k value for tree based iallreduce (for tree_kary and
tree_knomial)
Default: 2
MPIR_CVAR_IALLREDUCE_TREE_TYPE
Aliases: MPIR_PARAM_IALLREDUCE_TREE_TYPE
MPICH_IALLREDUCE_TREE_TYPE
Description: Tree type for tree based ibcast kary - kary tree type
knomial_1 - knomial_1 tree type knomial_2 - knomial_2 tree type
Default: "kary"
MPIR_CVAR_IALLREDUCE_TREE_PIPELINE_CHUNK_SIZE
Aliases: MPIR_PARAM_IALLREDUCE_TREE_PIPELINE_CHUNK_SIZE
MPICH_IALLREDUCE_TREE_PIPELINE_CHUNK_SIZE
Description: Maximum chunk size (in bytes) for pipelining in tree based
iallreduce. Default value is 0, that is, no pipelining by default
Default: 0
MPIR_CVAR_IALLREDUCE_TREE_BUFFER_PER_CHILD
Aliases: MPIR_PARAM_IALLREDUCE_TREE_BUFFER_PER_CHILD
MPICH_IALLREDUCE_TREE_BUFFER_PER_CHILD
Description: If set to true, a rank in tree_kary and tree_knomial
algorithms will allocate a dedicated buffer for every child it
receives data from. This would mean more memory consumption but it
would allow preposting of the receives and hence reduce the number
of unexpected messages. If set to false, there is only one buffer
that is used to receive the data from all the children. The
receives are therefore serialized, that is, only one receive can be
posted at a time.
Default: 0
MPIR_CVAR_IALLREDUCE_RECEXCH_KVAL
Aliases: MPIR_PARAM_IALLREDUCE_RECEXCH_KVAL
MPICH_IALLREDUCE_RECEXCH_KVAL
Description: k value for recursive exchange based iallreduce
Default: 2
MPIR_CVAR_IALLREDUCE_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IALLREDUCE_INTRA_ALGORITHM
MPICH_IALLREDUCE_INTRA_ALGORITHM
Description: Variable to select iallreduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_naive - Force naive algorithm
sched_smp - Force smp algorithm
sched_recursive_doubling - Force recursive doubling
algorithm
sched_reduce_scatter_allgather - Force reduce scatter allgather
algorithm
tsp_recexch_single_buffer - Force generic transport recursive
exchange with single buffer for receives
tsp_recexch_multiple_buffer - Force generic transport recursive
exchange with multiple buffers for receives
tsp_tree - Force generic transport tree
algorithm
tsp_ring - Force generic transport ring
algorithm
tsp_recexch_reduce_scatter_recexch_allgatherv - Force generic
transport recursive exchange with reduce scatter and allgatherv
Default: MPIR_CVAR_IALLREDUCE_INTRA_ALGORITHM_auto
MPIR_CVAR_IALLREDUCE_INTER_ALGORITHM
Aliases: MPIR_PARAM_IALLREDUCE_INTER_ALGORITHM
MPICH_IALLREDUCE_INTER_ALGORITHM
Description: Variable to select iallreduce algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_remote_reduce_local_bcast - Force remote-reduce-local-bcast
algorithm
Default: MPIR_CVAR_IALLREDUCE_INTER_ALGORITHM_auto
MPIR_CVAR_IREDUCE_SCATTER_COMMUTATIVE_LONG_MSG_SIZE
Aliases: MPIR_PARAM_IREDUCE_SCATTER_COMMUTATIVE_LONG_MSG_SIZE
MPICH_IREDUCE_SCATTER_COMMUTATIVE_LONG_MSG_SIZE
Description: the long message algorithm will be used if the operation
is commutative and the send buffer size is >= this value (in bytes)
Default: 524288
MPIR_CVAR_REDUCE_SCATTER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_SCATTER_INTRA_ALGORITHM
MPICH_REDUCE_SCATTER_INTRA_ALGORITHM
Description: Variable to select reduce_scatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
noncommutative - Force noncommutative algorithm
pairwise - Force pairwise algorithm
recursive_doubling - Force recursive doubling algorithm
recursive_halving - Force recursive halving algorithm
Default: MPIR_CVAR_REDUCE_SCATTER_INTRA_ALGORITHM_auto
MPIR_CVAR_REDUCE_SCATTER_INTER_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_SCATTER_INTER_ALGORITHM
MPICH_REDUCE_SCATTER_INTER_ALGORITHM
Description: Variable to select reduce_scatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
remote_reduce_local_scatter - Force remote-reduce-local-scatter
algorithm
Default: MPIR_CVAR_REDUCE_SCATTER_INTER_ALGORITHM_auto
MPIR_CVAR_IREDUCE_SCATTER_RECEXCH_KVAL
Aliases: MPIR_PARAM_IREDUCE_SCATTER_RECEXCH_KVAL
MPICH_IREDUCE_SCATTER_RECEXCH_KVAL
Description: k value for recursive exchange based ireduce_scatter
Default: 2
MPIR_CVAR_IREDUCE_SCATTER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_SCATTER_INTRA_ALGORITHM
MPICH_IREDUCE_SCATTER_INTRA_ALGORITHM
Description: Variable to select ireduce_scatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_noncommutative - Force noncommutative algorithm
sched_recursive_doubling - Force recursive doubling algorithm
sched_pairwise - Force pairwise algorithm
sched_recursive_halving - Force recursive halving algorithm
tsp_recexch - Force generic transport recursive exchange
algorithm
Default: MPIR_CVAR_IREDUCE_SCATTER_INTRA_ALGORITHM_auto
MPIR_CVAR_IREDUCE_SCATTER_INTER_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_SCATTER_INTER_ALGORITHM
MPICH_IREDUCE_SCATTER_INTER_ALGORITHM
Description: Variable to select ireduce_scatter algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_remote_reduce_local_scatterv - Force
remote-reduce-local-scatterv algorithm
Default: MPIR_CVAR_IREDUCE_SCATTER_INTER_ALGORITHM_auto
MPIR_CVAR_REDUCE_SCATTER_BLOCK_INTRA_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_SCATTER_BLOCK_INTRA_ALGORITHM
MPICH_REDUCE_SCATTER_BLOCK_INTRA_ALGORITHM
Description: Variable to select reduce_scatter_block algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
noncommutative - Force noncommutative algorithm
recursive_doubling - Force recursive doubling algorithm
pairwise - Force pairwise algorithm
recursive_halving - Force recursive halving algorithm
nb - Force nonblocking algorithm
Default: MPIR_CVAR_REDUCE_SCATTER_BLOCK_INTRA_ALGORITHM_auto
MPIR_CVAR_REDUCE_SCATTER_BLOCK_INTER_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_SCATTER_BLOCK_INTER_ALGORITHM
MPICH_REDUCE_SCATTER_BLOCK_INTER_ALGORITHM
Description: Variable to select reduce_scatter_block algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
remote_reduce_local_scatter - Force remote-reduce-local-scatter
algorithm
Default: MPIR_CVAR_REDUCE_SCATTER_BLOCK_INTER_ALGORITHM_auto
MPIR_CVAR_IREDUCE_SCATTER_BLOCK_RECEXCH_KVAL
Aliases: MPIR_PARAM_IREDUCE_SCATTER_BLOCK_RECEXCH_KVAL
MPICH_IREDUCE_SCATTER_BLOCK_RECEXCH_KVAL
Description: k value for recursive exchange based ireduce_scatter_block
Default: 2
MPIR_CVAR_IREDUCE_SCATTER_BLOCK_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_SCATTER_BLOCK_INTRA_ALGORITHM
MPICH_IREDUCE_SCATTER_BLOCK_INTRA_ALGORITHM
Description: Variable to select ireduce_scatter_block algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_noncommutative - Force noncommutative algorithm
sched_recursive_doubling - Force recursive doubling algorithm
sched_pairwise - Force pairwise algorithm
sched_recursive_halving - Force recursive halving algorithm
tsp_recexch - Force generic transport recursive exchange
algorithm
Default: MPIR_CVAR_IREDUCE_SCATTER_BLOCK_INTRA_ALGORITHM_auto
MPIR_CVAR_IREDUCE_SCATTER_BLOCK_INTER_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_SCATTER_BLOCK_INTER_ALGORITHM
MPICH_IREDUCE_SCATTER_BLOCK_INTER_ALGORITHM
Description: Variable to select ireduce_scatter_block algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_remote_reduce_local_scatterv - Force
remote-reduce-local-scatterv algorithm
Default: MPIR_CVAR_IREDUCE_SCATTER_BLOCK_INTER_ALGORITHM_auto
MPIR_CVAR_SCAN_INTRA_ALGORITHM
Aliases: MPIR_PARAM_SCAN_INTRA_ALGORITHM
MPICH_SCAN_INTRA_ALGORITHM
Description: Variable to select allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
smp - Force smp algorithm
recursive_doubling - Force recursive doubling algorithm
Default: MPIR_CVAR_SCAN_INTRA_ALGORITHM_auto
MPIR_CVAR_ISCAN_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ISCAN_INTRA_ALGORITHM
MPICH_ISCAN_INTRA_ALGORITHM
Description: Variable to select allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_smp - Force smp algorithm
sched_recursive_doubling - Force recursive doubling algorithm
tsp_recursive_doubling - Force generic transport recursive doubling
algorithm
Default: MPIR_CVAR_ISCAN_INTRA_ALGORITHM_auto
MPIR_CVAR_EXSCAN_INTRA_ALGORITHM
Aliases: MPIR_PARAM_EXSCAN_INTRA_ALGORITHM
MPICH_EXSCAN_INTRA_ALGORITHM
Description: Variable to select allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
recursive_doubling - Force recursive doubling algorithm
Default: MPIR_CVAR_EXSCAN_INTRA_ALGORITHM_auto
MPIR_CVAR_IEXSCAN_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IEXSCAN_INTRA_ALGORITHM
MPICH_IEXSCAN_INTRA_ALGORITHM
Description: Variable to select iexscan algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_recursive_doubling - Force recursive doubling algorithm
Default: MPIR_CVAR_IEXSCAN_INTRA_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLGATHER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHER_INTRA_ALGORITHM
MPICH_NEIGHBOR_ALLGATHER_INTRA_ALGORITHM
Description: Variable to select ineighbor_allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLGATHER_INTRA_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLGATHER_INTER_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHER_INTER_ALGORITHM
MPICH_NEIGHBOR_ALLGATHER_INTER_ALGORITHM
Description: Variable to select ineighbor_allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nonblocking algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLGATHER_INTER_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLGATHER_INTRA_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLGATHER_INTRA_ALGORITHM
MPICH_INEIGHBOR_ALLGATHER_INTRA_ALGORITHM
Description: Variable to select ineighbor_allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLGATHER_INTRA_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLGATHER_INTER_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLGATHER_INTER_ALGORITHM
MPICH_INEIGHBOR_ALLGATHER_INTER_ALGORITHM
Description: Variable to select ineighbor_allgather algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLGATHER_INTER_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLGATHERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHERV_INTRA_ALGORITHM
MPICH_NEIGHBOR_ALLGATHERV_INTRA_ALGORITHM
Description: Variable to select neighbor_allgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLGATHERV_INTRA_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLGATHERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHERV_INTER_ALGORITHM
MPICH_NEIGHBOR_ALLGATHERV_INTER_ALGORITHM
Description: Variable to select neighbor_allgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLGATHERV_INTER_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLGATHERV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLGATHERV_INTRA_ALGORITHM
MPICH_INEIGHBOR_ALLGATHERV_INTRA_ALGORITHM
Description: Variable to select ineighbor_allgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLGATHERV_INTRA_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLGATHERV_INTER_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLGATHERV_INTER_ALGORITHM
MPICH_INEIGHBOR_ALLGATHERV_INTER_ALGORITHM
Description: Variable to select ineighbor_allgatherv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLGATHERV_INTER_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLTOALL_INTRA_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALL_INTRA_ALGORITHM
MPICH_NEIGHBOR_ALLTOALL_INTRA_ALGORITHM
Description: Variable to select neighbor_alltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLTOALL_INTRA_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLTOALL_INTER_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALL_INTER_ALGORITHM
MPICH_NEIGHBOR_ALLTOALL_INTER_ALGORITHM
Description: Variable to select neighbor_alltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLTOALL_INTER_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLTOALL_INTRA_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALL_INTRA_ALGORITHM
MPICH_INEIGHBOR_ALLTOALL_INTRA_ALGORITHM
Description: Variable to select ineighbor_alltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLTOALL_INTRA_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLTOALL_INTER_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALL_INTER_ALGORITHM
MPICH_INEIGHBOR_ALLTOALL_INTER_ALGORITHM
Description: Variable to select ineighbor_alltoall algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLTOALL_INTER_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLTOALLV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLV_INTRA_ALGORITHM
MPICH_NEIGHBOR_ALLTOALLV_INTRA_ALGORITHM
Description: Variable to select neighbor_alltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLTOALLV_INTRA_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLTOALLV_INTER_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLV_INTER_ALGORITHM
MPICH_NEIGHBOR_ALLTOALLV_INTER_ALGORITHM
Description: Variable to select neighbor_alltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLTOALLV_INTER_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLTOALLV_INTRA_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALLV_INTRA_ALGORITHM
MPICH_INEIGHBOR_ALLTOALLV_INTRA_ALGORITHM
Description: Variable to select ineighbor_alltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLTOALLV_INTRA_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLTOALLV_INTER_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALLV_INTER_ALGORITHM
MPICH_INEIGHBOR_ALLTOALLV_INTER_ALGORITHM
Description: Variable to select ineighbor_alltoallv algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLTOALLV_INTER_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
MPICH_NEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
Description: Variable to select neighbor_alltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLTOALLW_INTRA_ALGORITHM_auto
MPIR_CVAR_NEIGHBOR_ALLTOALLW_INTER_ALGORITHM
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLW_INTER_ALGORITHM
MPICH_NEIGHBOR_ALLTOALLW_INTER_ALGORITHM
Description: Variable to select neighbor_alltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
nb - Force nb algorithm
Default: MPIR_CVAR_NEIGHBOR_ALLTOALLW_INTER_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
MPICH_INEIGHBOR_ALLTOALLW_INTRA_ALGORITHM
Description: Variable to select ineighbor_alltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLTOALLW_INTRA_ALGORITHM_auto
MPIR_CVAR_INEIGHBOR_ALLTOALLW_INTER_ALGORITHM
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALLW_INTER_ALGORITHM
MPICH_INEIGHBOR_ALLTOALLW_INTER_ALGORITHM
Description: Variable to select ineighbor_alltoallw algorithm
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE)
sched_auto - Internal algorithm selection for sched-based
algorithms
sched_linear - Force linear algorithm
tsp_linear - Force generic transport based linear algorithm
Default: MPIR_CVAR_INEIGHBOR_ALLTOALLW_INTER_ALGORITHM_auto
MPIR_CVAR_BARRIER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_BARRIER_DEVICE_COLLECTIVE
MPICH_BARRIER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Barrier will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IBARRIER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IBARRIER_DEVICE_COLLECTIVE
MPICH_IBARRIER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ibarrier will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_BARRIER_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_BARRIER_INIT_DEVICE_COLLECTIVE
MPICH_BARRIER_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Barrier will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_BCAST_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_BCAST_DEVICE_COLLECTIVE
MPICH_BCAST_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Bcast will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IBCAST_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IBCAST_DEVICE_COLLECTIVE
MPICH_IBCAST_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ibcast will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_BCAST_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_BCAST_INIT_DEVICE_COLLECTIVE
MPICH_BCAST_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Bcast_init will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_GATHER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_GATHER_DEVICE_COLLECTIVE
MPICH_GATHER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Gather will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IGATHER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IGATHER_DEVICE_COLLECTIVE
MPICH_IGATHER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Igather will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_GATHER_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_GATHER_INIT_DEVICE_COLLECTIVE
MPICH_GATHER_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Gather_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_GATHERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_GATHERV_DEVICE_COLLECTIVE
MPICH_GATHERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Gatherv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IGATHERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IGATHERV_DEVICE_COLLECTIVE
MPICH_IGATHERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Igatherv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_GATHERV_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_GATHERV_INIT_DEVICE_COLLECTIVE
MPICH_GATHERV_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Gatherv_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_SCATTER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_SCATTER_DEVICE_COLLECTIVE
MPICH_SCATTER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Scatter will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ISCATTER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ISCATTER_DEVICE_COLLECTIVE
MPICH_ISCATTER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iscatter will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_SCATTER_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_SCATTER_INIT_DEVICE_COLLECTIVE
MPICH_SCATTER_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Scatter_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_SCATTERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_SCATTERV_DEVICE_COLLECTIVE
MPICH_SCATTERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Scatterv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ISCATTERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ISCATTERV_DEVICE_COLLECTIVE
MPICH_ISCATTERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iscatterv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_SCATTERV_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_SCATTERV_INIT_DEVICE_COLLECTIVE
MPICH_SCATTERV_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Scatterv_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLGATHER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLGATHER_DEVICE_COLLECTIVE
MPICH_ALLGATHER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Allgather will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IALLGATHER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IALLGATHER_DEVICE_COLLECTIVE
MPICH_IALLGATHER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iallgather will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLGATHER_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLGATHER_INIT_DEVICE_COLLECTIVE
MPICH_ALLGATHER_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Allgather_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLGATHERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLGATHERV_DEVICE_COLLECTIVE
MPICH_ALLGATHERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Allgatherv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IALLGATHERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IALLGATHERV_DEVICE_COLLECTIVE
MPICH_IALLGATHERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iallgatherv will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLGATHERV_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLGATHERV_INIT_DEVICE_COLLECTIVE
MPICH_ALLGATHERV_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Allgatherv_init will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLTOALL_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLTOALL_DEVICE_COLLECTIVE
MPICH_ALLTOALL_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Alltoall will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IALLTOALL_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IALLTOALL_DEVICE_COLLECTIVE
MPICH_IALLTOALL_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ialltoall will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLTOALL_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLTOALL_INIT_DEVICE_COLLECTIVE
MPICH_ALLTOALL_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Alltoall_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLTOALLV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLTOALLV_DEVICE_COLLECTIVE
MPICH_ALLTOALLV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Alltoallv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IALLTOALLV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IALLTOALLV_DEVICE_COLLECTIVE
MPICH_IALLTOALLV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ialltoallv will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLTOALLV_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLTOALLV_INIT_DEVICE_COLLECTIVE
MPICH_ALLTOALLV_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Alltoallv_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLTOALLW_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLTOALLW_DEVICE_COLLECTIVE
MPICH_ALLTOALLW_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Alltoallw will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IALLTOALLW_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IALLTOALLW_DEVICE_COLLECTIVE
MPICH_IALLTOALLW_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ialltoallw will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLTOALLW_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLTOALLW_INIT_DEVICE_COLLECTIVE
MPICH_ALLTOALLW_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Alltoallw_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_REDUCE_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_REDUCE_DEVICE_COLLECTIVE
MPICH_REDUCE_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Reduce will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IREDUCE_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IREDUCE_DEVICE_COLLECTIVE
MPICH_IREDUCE_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ireduce will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_REDUCE_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_REDUCE_INIT_DEVICE_COLLECTIVE
MPICH_REDUCE_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Reduce_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLREDUCE_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLREDUCE_DEVICE_COLLECTIVE
MPICH_ALLREDUCE_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Allreduce will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IALLREDUCE_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IALLREDUCE_DEVICE_COLLECTIVE
MPICH_IALLREDUCE_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iallreduce will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ALLREDUCE_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ALLREDUCE_INIT_DEVICE_COLLECTIVE
MPICH_ALLREDUCE_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Allreduce_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_REDUCE_SCATTER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_REDUCE_SCATTER_DEVICE_COLLECTIVE
MPICH_REDUCE_SCATTER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Reduce_scatter will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IREDUCE_SCATTER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IREDUCE_SCATTER_DEVICE_COLLECTIVE
MPICH_IREDUCE_SCATTER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ireduce_scatter will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_REDUCE_SCATTER_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_REDUCE_SCATTER_INIT_DEVICE_COLLECTIVE
MPICH_REDUCE_SCATTER_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Reduce_scatter_init will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_REDUCE_SCATTER_BLOCK_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_REDUCE_SCATTER_BLOCK_DEVICE_COLLECTIVE
MPICH_REDUCE_SCATTER_BLOCK_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Reduce_scatter_block will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IREDUCE_SCATTER_BLOCK_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IREDUCE_SCATTER_BLOCK_DEVICE_COLLECTIVE
MPICH_IREDUCE_SCATTER_BLOCK_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ireduce_scatter_block
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_REDUCE_SCATTER_BLOCK_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_REDUCE_SCATTER_BLOCK_INIT_DEVICE_COLLECTIVE
MPICH_REDUCE_SCATTER_BLOCK_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Reduce_scatter_block_init
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_SCAN_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_SCAN_DEVICE_COLLECTIVE
MPICH_SCAN_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Scan will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_ISCAN_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_ISCAN_DEVICE_COLLECTIVE
MPICH_ISCAN_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iscan will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_SCAN_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_SCAN_INIT_DEVICE_COLLECTIVE
MPICH_SCAN_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Scan_init will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_EXSCAN_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_EXSCAN_DEVICE_COLLECTIVE
MPICH_EXSCAN_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Exscan will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_IEXSCAN_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_IEXSCAN_DEVICE_COLLECTIVE
MPICH_IEXSCAN_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Iexscan will allow the
device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_EXSCAN_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_EXSCAN_INIT_DEVICE_COLLECTIVE
MPICH_EXSCAN_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Exscan_init will allow
the device to override the MPIR-level collective algorithms. The
device might still call the MPIR-level algorithms manually. If set
to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLGATHER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHER_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLGATHER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_allgather will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_INEIGHBOR_ALLGATHER_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_INEIGHBOR_ALLGATHER_DEVICE_COLLECTIVE
MPICH_INEIGHBOR_ALLGATHER_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ineighbor_allgather will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLGATHER_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHER_INIT_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLGATHER_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_allgather_init
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLGATHERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHERV_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLGATHERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_allgatherv will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_INEIGHBOR_ALLGATHERV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_INEIGHBOR_ALLGATHERV_DEVICE_COLLECTIVE
MPICH_INEIGHBOR_ALLGATHERV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ineighbor_allgatherv will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLGATHERV_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLGATHERV_INIT_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLGATHERV_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_allgatherv_init
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLTOALL_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALL_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLTOALL_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_alltoall will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_INEIGHBOR_ALLTOALL_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALL_DEVICE_COLLECTIVE
MPICH_INEIGHBOR_ALLTOALL_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ineighbor_alltoall will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLTOALL_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALL_INIT_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLTOALL_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_alltoall_init
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLTOALLV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLV_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLTOALLV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_alltoallv will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_INEIGHBOR_ALLTOALLV_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALLV_DEVICE_COLLECTIVE
MPICH_INEIGHBOR_ALLTOALLV_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ineighbor_alltoallv will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLTOALLV_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLV_INIT_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLTOALLV_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_alltoallv_init
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_alltoallw will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_INEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_INEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
MPICH_INEIGHBOR_ALLTOALLW_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Ineighbor_alltoallw will
allow the device to override the MPIR-level collective algorithms.
The device might still call the MPIR-level algorithms manually. If
set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_NEIGHBOR_ALLTOALLW_INIT_DEVICE_COLLECTIVE
Aliases: MPIR_PARAM_NEIGHBOR_ALLTOALLW_INIT_DEVICE_COLLECTIVE
MPICH_NEIGHBOR_ALLTOALLW_INIT_DEVICE_COLLECTIVE
Description: This CVAR is only used when MPIR_CVAR_DEVICE_COLLECTIVES
is set to "percoll". If set to true, MPI_Neighbor_alltoallw_init
will allow the device to override the MPIR-level collective
algorithms. The device might still call the MPIR-level algorithms
manually. If set to false, the device-override will be disabled.
Default: 1
MPIR_CVAR_COLL_HYBRID_MEMORY
Aliases: MPIR_PARAM_COLL_HYBRID_MEMORY
MPICH_COLL_HYBRID_MEMORY
Description: This cvar indicates if the memory used in the collective
operations are the same type. It set to true, it means in a
collective operation, some buffers could be on the CPU and some
buffers could be on the GPU. If set to false, it means all the data
in a collective operation are on the same type of memory.
Default: 1
MPIR_CVAR_ALLTOALLV_PAIRWISE_NEW
Aliases: MPIR_PARAM_ALLTOALLV_PAIRWISE_NEW
MPICH_ALLTOALLV_PAIRWISE_NEW
MPIR_CVAR_ALLTOALL_PAIRWISE_NEW
MPIR_CVAR_ALLTOALLW_PAIRWISE_NEW
MPIR_PARAM_ALLTOALL_PAIRWISE_NEW
MPIR_PARAM_ALLTOALLW_PAIRWISE_NEW
MPICH_ALLTOALL_PAIRWISE_NEW
MPICH_ALLTOALLW_PAIRWISE_NEW
Description: If on, use a new algorithm that orders bit-wise pairs on
all processes.
Default: 0
MPIR_CVAR_GATHER_VSMALL_MSG_SIZE
Aliases: MPIR_PARAM_GATHER_VSMALL_MSG_SIZE
MPICH_GATHER_VSMALL_MSG_SIZE
Description: use a temporary buffer for intracommunicator MPI_Gather if
the send buffer size is < this value (in bytes) (See also:
MPIR_CVAR_GATHER_INTER_SHORT_MSG_SIZE)
Default: 1024
MPIR_CVAR_IALLTOALL_BRUCKS_KVAL
Aliases: MPIR_PARAM_IALLTOALL_BRUCKS_KVAL
MPICH_IALLTOALL_BRUCKS_KVAL
Description: radix (k) value for generic transport brucks based
ialltoall
Default: 2
MPIR_CVAR_IALLTOALL_BRUCKS_BUFFER_PER_NBR
Aliases: MPIR_PARAM_IALLTOALL_BRUCKS_BUFFER_PER_NBR
MPICH_IALLTOALL_BRUCKS_BUFFER_PER_NBR
Description: If set to true, the tsp based brucks algorithm will
allocate dedicated send and receive buffers for every neighbor in
the brucks algorithm. Otherwise, it would reuse a single buffer for
sending and receiving data to/from neighbors
Default: 0
MPIR_CVAR_IALLTOALL_SCATTERED_OUTSTANDING_TASKS
Aliases: MPIR_PARAM_IALLTOALL_SCATTERED_OUTSTANDING_TASKS
MPICH_IALLTOALL_SCATTERED_OUTSTANDING_TASKS
Description: Maximum number of outstanding sends and recvs posted at a
time
Default: 64
MPIR_CVAR_IALLTOALL_SCATTERED_BATCH_SIZE
Aliases: MPIR_PARAM_IALLTOALL_SCATTERED_BATCH_SIZE
MPICH_IALLTOALL_SCATTERED_BATCH_SIZE
Description: Number of send/receive tasks that scattered algorithm
waits for completion before posting another batch of send/receives
of that size
Default: 4
MPIR_CVAR_DEVICE_COLLECTIVES
Aliases: MPIR_PARAM_DEVICE_COLLECTIVES
MPICH_DEVICE_COLLECTIVES
Description: Variable to select whether the device can override the
MPIR-level collective algorithms.
all - Always prefer the device collectives
none - Never pick the device collectives
percoll - Use the per-collective CVARs to decide
Default: MPIR_CVAR_DEVICE_COLLECTIVES_percoll
MPIR_CVAR_COLLECTIVE_FALLBACK
Aliases: MPIR_PARAM_COLLECTIVE_FALLBACK
MPICH_COLLECTIVE_FALLBACK
Description: Variable to control what the MPI library should do if the
user-specified collective algorithm does not work for the
arguments passed in by the user.
error - throw an error
print - print an error message and fallback to the internally
selected algorithm
silent - silently fallback to the internally selected algorithm
Default: MPIR_CVAR_COLLECTIVE_FALLBACK_silent
MPIR_CVAR_COLL_SELECTION_TUNING_JSON_FILE
Aliases: MPIR_PARAM_COLL_SELECTION_TUNING_JSON_FILE
MPICH_COLL_SELECTION_TUNING_JSON_FILE
Description: Defines the location of tuning file.
Default: ""
MPIR_CVAR_HIERARCHY_DUMP
Aliases: MPIR_PARAM_HIERARCHY_DUMP
MPICH_HIERARCHY_DUMP
Description: If set to true, each rank will dump the hierarchy data
structure to a file named "hierarchy[rank]" in the current folder.
If set to false, the hierarchy data structure will not be dumped.
Default: 0
MPIR_CVAR_COORDINATES_FILE
Aliases: MPIR_PARAM_COORDINATES_FILE
MPICH_COORDINATES_FILE
Description: Defines the location of the input coordinates file.
Default: ""
MPIR_CVAR_COLL_TREE_DUMP
Aliases: MPIR_PARAM_COLL_TREE_DUMP
MPICH_COLL_TREE_DUMP
Description: If set to true, each rank will dump the tree to a file
named "colltree[rank].json" in the current folder. If set to false,
the tree will not be dumped.
Default: 0
MPIR_CVAR_COORDINATES_DUMP
Aliases: MPIR_PARAM_COORDINATES_DUMP
MPICH_COORDINATES_DUMP
Description: If set to true, rank 0 will dump the network coordinates
to a file named "coords" in the current folder. If set to false,
the network coordinates will not be dumped.
Default: 0
MPIR_CVAR_PROGRESS_MAX_COLLS
Aliases: MPIR_PARAM_PROGRESS_MAX_COLLS
MPICH_PROGRESS_MAX_COLLS
Description: Maximum number of collective operations at a time that the
progress engine should make progress on
Default: 0
MPIR_CVAR_COMM_SPLIT_USE_QSORT
Aliases: MPIR_PARAM_COMM_SPLIT_USE_QSORT
MPICH_COMM_SPLIT_USE_QSORT
Description: Use qsort(3) in the implementation of MPI_Comm_split
instead of bubble sort.
Default: 1
MPIR_CVAR_CTXID_EAGER_SIZE
Aliases: MPIR_PARAM_CTXID_EAGER_SIZE
MPICH_CTXID_EAGER_SIZE
Description: The MPIR_CVAR_CTXID_EAGER_SIZE environment variable allows
you to specify how many words in the context ID mask will be set
aside for the eager allocation protocol. If the application is
running out of context IDs, reducing this value may help.
Default: 2
MPIR_CVAR_DATALOOP_FAST_SEEK
Aliases: MPIR_PARAM_DATALOOP_FAST_SEEK
MPICH_DATALOOP_FAST_SEEK
Description: use a datatype-specialized algorithm to shortcut seeking
to the correct location in a noncontiguous buffer
Default: 1
MPIR_CVAR_YAKSA_COMPLEX_SUPPORT
Aliases: MPIR_PARAM_YAKSA_COMPLEX_SUPPORT
MPICH_YAKSA_COMPLEX_SUPPORT
Description: This CVAR indicates that complex type reduction is not
supported in yaksa.
Default: 0
MPIR_CVAR_GPU_DOUBLE_SUPPORT
Aliases: MPIR_PARAM_GPU_DOUBLE_SUPPORT
MPICH_GPU_DOUBLE_SUPPORT
Description: This CVAR indicates that double type is not supported on
the GPU.
Default: 0
MPIR_CVAR_GPU_LONG_DOUBLE_SUPPORT
Aliases: MPIR_PARAM_GPU_LONG_DOUBLE_SUPPORT
MPICH_GPU_LONG_DOUBLE_SUPPORT
Description: This CVAR indicates that double type is not supported on
the GPU.
Default: 0
MPIR_CVAR_ENABLE_YAKSA_REDUCTION
Aliases: MPIR_PARAM_ENABLE_YAKSA_REDUCTION
MPICH_ENABLE_YAKSA_REDUCTION
Description: This cvar enables yaksa based reduction for local reduce.
Default: 1
MPIR_CVAR_YAKSA_REDUCTION_THRESHOLD
Aliases: MPIR_PARAM_YAKSA_REDUCTION_THRESHOLD
MPICH_YAKSA_REDUCTION_THRESHOLD
Description: This cvar disables yaksa based reduction for messages
above the threshold. The default is no limit.
Default: -1
MPIR_CVAR_PROCTABLE_SIZE
Aliases: MPIR_PARAM_PROCTABLE_SIZE
MPICH_PROCTABLE_SIZE
Description: Size of the "MPIR" debugger interface proctable (process
table).
Default: 64
MPIR_CVAR_PROCTABLE_PRINT
Aliases: MPIR_PARAM_PROCTABLE_PRINT
MPICH_PROCTABLE_PRINT
Description: If true, dump the proctable entries at
MPII_Wait_for_debugger-time.
Default: 0
MPIR_CVAR_PRINT_ERROR_STACK
Aliases: MPIR_PARAM_PRINT_ERROR_STACK
MPICH_PRINT_ERROR_STACK
Description: If true, print an error stack trace at error handling
time.
Default: 1
MPIR_CVAR_CHOP_ERROR_STACK
Aliases: MPIR_PARAM_CHOP_ERROR_STACK
MPICH_CHOP_ERROR_STACK
Description: If >0, truncate error stack output lines this many
characters wide. If 0, do not truncate, and if <0 use a sensible
default.
Default: 0
MPIR_CVAR_ASYNC_PROGRESS
Aliases: MPIR_PARAM_ASYNC_PROGRESS
MPICH_ASYNC_PROGRESS
Description: If set to true, MPICH will initiate an additional thread
to make asynchronous progress on all communication operations
including point-to-point, collective, one-sided operations and I/O.
Setting this variable will automatically increase the
thread-safety level to MPI_THREAD_MULTIPLE. While this improves
the progress semantics, it might cause a small amount of
performance overhead for regular MPI operations. The user is
encouraged to leave one or more hardware threads vacant in order to
prevent contention between the application threads and the progress
thread(s). The impact of oversubscription is highly system
dependent but may be substantial in some cases, hence this
recommendation.
Default: 0
MPIR_CVAR_PROGRESS_THREAD_AFFINITY
Aliases: MPIR_PARAM_PROGRESS_THREAD_AFFINITY
MPICH_PROGRESS_THREAD_AFFINITY
Description: Specifies affinity for all progress threads of local
processes. Can be set to auto or comma-separated list of logical
processors. When set to auto - MPICH will automatically select
logical CPU cores to decide affinity of the progress threads. When
set to comma-separated list of logical processors - In case of N
progress threads per process, the first N logical processors from
list will be assigned to threads of first local process, the next N
logical processors from list - to second local process and so on.
For example, thread affinity is "0,1,2,3", 2 progress threads per
process and 2 processes per node. Progress threads of first local
process will be pinned on logical processors "0,1", progress
threads of second local process - on "2,3". Cannot work together
with MPIR_CVAR_NUM_CLIQUES or MPIR_CVAR_ODD_EVEN_CLIQUES.
Default: ""
MPIR_CVAR_SUPPRESS_ABORT_MESSAGE
Aliases: MPIR_PARAM_SUPPRESS_ABORT_MESSAGE
MPICH_SUPPRESS_ABORT_MESSAGE
Description: Disable printing of abort error message.
Default: 0
MPIR_CVAR_COREDUMP_ON_ABORT
Aliases: MPIR_PARAM_COREDUMP_ON_ABORT
MPICH_COREDUMP_ON_ABORT
Description: Call libc abort() to generate a corefile
Default: 0
MPIR_CVAR_ERROR_CHECKING
Aliases: MPIR_PARAM_ERROR_CHECKING
MPICH_ERROR_CHECKING
Description: If true, perform checks for errors, typically to verify
valid inputs to MPI routines. Only effective when MPICH is
configured with --enable-error-checking=runtime .
Default: 1
MPIR_CVAR_MEMDUMP
Aliases: MPIR_PARAM_MEMDUMP
MPICH_MEMDUMP
Description: If true, list any memory that was allocated by MPICH and
that remains allocated when MPI_Finalize completes.
Default: 1
MPIR_CVAR_DEBUG_SUMMARY
Aliases: MPIR_PARAM_DEBUG_SUMMARY
MPICH_DEBUG_SUMMARY
MPIR_CVAR_MEM_CATEGORY_INFORMATION
MPIR_CVAR_CH4_OFI_CAPABILITY_SETS_DEBUG
MPIR_CVAR_CH4_UCX_CAPABILITY_DEBUG
MPIR_PARAM_MEM_CATEGORY_INFORMATION
MPIR_PARAM_CH4_OFI_CAPABILITY_SETS_DEBUG
MPIR_PARAM_CH4_UCX_CAPABILITY_DEBUG
MPICH_MEM_CATEGORY_INFORMATION
MPICH_CH4_OFI_CAPABILITY_SETS_DEBUG
MPICH_CH4_UCX_CAPABILITY_DEBUG
Description: 1: Print internal summary of various debug information,
such as memory allocation by category. Each layer may print their
own summary information. For example, ch4-ofi may print its
provider capability settings. 2: Also print the preferred NIC for
each rank
Default: 0
MPIR_CVAR_DEFAULT_THREAD_LEVEL
Aliases: MPIR_PARAM_DEFAULT_THREAD_LEVEL
MPICH_DEFAULT_THREAD_LEVEL
Description: Sets the default thread level to use when using MPI_INIT.
This variable is case-insensitive.
Default: "MPI_THREAD_SINGLE"
MPIR_CVAR_DEBUG_HOLD
Aliases: MPIR_PARAM_DEBUG_HOLD
MPICH_DEBUG_HOLD
Description: If true, causes processes to wait in MPI_Init and
MPI_Initthread for a debugger to be attached. Once the debugger
has attached, the variable 'hold' should be set to 0 in order to
allow the process to continue (e.g., in gdb, "set hold=0").
Default: 0
MPIR_CVAR_GPU_USE_IMMEDIATE_COMMAND_LIST
Aliases: MPIR_PARAM_GPU_USE_IMMEDIATE_COMMAND_LIST
MPICH_GPU_USE_IMMEDIATE_COMMAND_LIST
Description: If true, mpl/ze will use immediate command list for
copying
Default: 0
MPIR_CVAR_GPU_ROUND_ROBIN_COMMAND_QUEUES
Aliases: MPIR_PARAM_GPU_ROUND_ROBIN_COMMAND_QUEUES
MPICH_GPU_ROUND_ROBIN_COMMAND_QUEUES
Description: If true, mpl/ze will use command queues in a round-robin
fashion. If false, only command queues of index 0 will be used.
Default: 0
MPIR_CVAR_NO_COLLECTIVE_FINALIZE
Aliases: MPIR_PARAM_NO_COLLECTIVE_FINALIZE
MPICH_NO_COLLECTIVE_FINALIZE
Description: If true, prevent MPI_Finalize to invoke collective
behavior such as barrier or communicating to other processes.
Consequently, it may result in leaking memory or losing messages
due to pre-mature exiting. The default is false, which may invoke
collective behaviors at finalize.
Default: 0
MPIR_CVAR_FINALIZE_WAIT
Aliases: MPIR_PARAM_FINALIZE_WAIT
MPICH_FINALIZE_WAIT
Description: If true, poll progress at MPI_Finalize until reference
count on MPI_COMM_WORLD and MPI_COMM_SELF reaches zero. This may be
necessary to prevent remote processes hanging if it has pending
communication protocols, e.g. a rendezvous send.
Default: 0
MPIR_CVAR_INIT_SKIP_PMI_BARRIER
Aliases: MPIR_PARAM_INIT_SKIP_PMI_BARRIER
MPICH_INIT_SKIP_PMI_BARRIER
Description: Skip MPIR_pmi_barrier() in MPI_Init
Default: 1
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE
Aliases: MPIR_PARAM_GPU_FAST_COPY_MAX_SIZE
MPICH_GPU_FAST_COPY_MAX_SIZE
Description: If a send message size is less than or equal to
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE (in bytes), then enable GPU-based
fast memcpy. The environment variable is valid only when then GPU
IPC shmmod is enabled.
Default: 4096
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE_H2D
Aliases: MPIR_PARAM_GPU_FAST_COPY_MAX_SIZE_H2D
MPICH_GPU_FAST_COPY_MAX_SIZE_H2D
Description: If a receive message size is less than or equal to
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE_H2D (in bytes), then enable
GPU-based fast memcpy.
Default: 4096
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE_D2H
Aliases: MPIR_PARAM_GPU_FAST_COPY_MAX_SIZE_D2H
MPICH_GPU_FAST_COPY_MAX_SIZE_D2H
Description: If a send message size is less than or equal to
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE_D2H (in bytes), then enable
GPU-based fast memcpy.
Default: 256
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE_D2D
Aliases: MPIR_PARAM_GPU_FAST_COPY_MAX_SIZE_D2D
MPICH_GPU_FAST_COPY_MAX_SIZE_D2D
Description: If a send message size is less than or equal to
MPIR_CVAR_GPU_FAST_COPY_MAX_SIZE_D2D (in bytes), then enable
GPU-based fast memcpy.
Default: 128
MPIR_CVAR_REQUEST_ERR_FATAL
Aliases: MPIR_PARAM_REQUEST_ERR_FATAL
MPICH_REQUEST_ERR_FATAL
Description: By default, MPI_Waitall, MPI_Testall, MPI_Waitsome, and
MPI_Testsome return MPI_ERR_IN_STATUS when one of the request
fails. If MPIR_CVAR_REQUEST_ERR_FATAL is set to true, these
routines will return the error code of the request immediately. The
default MPI_ERRS_ARE_FATAL error handler will dump a error stack in
this case, which maybe more convenient for debugging. This cvar
will also make nonblocking shched return error right away as it
issues operations.
Default: 0
MPIR_CVAR_REQUEST_POLL_FREQ
Aliases: MPIR_PARAM_REQUEST_POLL_FREQ
MPICH_REQUEST_POLL_FREQ
Description: How frequent to poll during MPI_{Waitany,Waitsome} in
terms of number of processed requests before polling.
Default: 8
MPIR_CVAR_REQUEST_BATCH_SIZE
Aliases: MPIR_PARAM_REQUEST_BATCH_SIZE
MPICH_REQUEST_BATCH_SIZE
Description: The number of requests to make completion as a batch in
MPI_Waitall and MPI_Testall implementation. A large number is
likely to cause more cache misses.
Default: 64
MPIR_CVAR_DIMS_VERBOSE
Aliases: MPIR_PARAM_DIMS_VERBOSE
MPICH_DIMS_VERBOSE
Description: If true, enable verbose output about the actions of the
implementation of MPI_Dims_create.
Default: 0
MPIR_CVAR_QMPI_TOOL_LIST
Aliases: MPIR_PARAM_QMPI_TOOL_LIST
MPICH_QMPI_TOOL_LIST
Description: Set the number and order of QMPI tools to be loaded by the
MPI library when it is initialized.
Default: NULL
MPIR_CVAR_NAMESERV_FILE_PUBDIR
Aliases: MPIR_PARAM_NAMESERV_FILE_PUBDIR
MPICH_NAMESERV_FILE_PUBDIR
MPIR_CVAR_NAMEPUB_DIR
MPIR_PARAM_NAMEPUB_DIR
MPICH_NAMEPUB_DIR
Description: Sets the directory to use for MPI service publishing in
the file nameserv implementation. Allows the user to override
where the publish and lookup information is placed for
connect/accept based applications.
Default: NULL
MPIR_CVAR_ABORT_ON_LEAKED_HANDLES
Aliases: MPIR_PARAM_ABORT_ON_LEAKED_HANDLES
MPICH_ABORT_ON_LEAKED_HANDLES
Description: If true, MPI will call MPI_Abort at MPI_Finalize if any
MPI object handles have been leaked. For example, if MPI_Comm_dup
is called without calling a corresponding MPI_Comm_free. For
uninteresting reasons, enabling this option may prevent all known
object leaks from being reported. MPICH must have been configure
with "--enable-g=handlealloc" or better in order for this
functionality to work.
Default: 0
MPIR_CVAR_NETLOC_NODE_FILE
Aliases: MPIR_PARAM_NETLOC_NODE_FILE
MPICH_NETLOC_NODE_FILE
Description: Subnet json file
Default: "auto"
MPIR_CVAR_NOLOCAL
Aliases: MPIR_PARAM_NOLOCAL
MPICH_NOLOCAL
MPIR_CVAR_NO_LOCAL
MPIR_PARAM_NO_LOCAL
MPICH_NO_LOCAL
Description: If true, force all processes to operate as though all
processes are located on another node. For example, this disables
shared memory communication hierarchical collectives.
Default: 0
MPIR_CVAR_ODD_EVEN_CLIQUES
Aliases: MPIR_PARAM_ODD_EVEN_CLIQUES
MPICH_ODD_EVEN_CLIQUES
MPIR_CVAR_EVEN_ODD_CLIQUES
MPIR_PARAM_EVEN_ODD_CLIQUES
MPICH_EVEN_ODD_CLIQUES
Description: If true, odd procs on a node are seen as local to each
other, and even procs on a node are seen as local to each other.
Used for debugging on a single machine. Deprecated in favor of
MPIR_CVAR_NUM_CLIQUES.
Default: 0
MPIR_CVAR_NUM_CLIQUES
Aliases: MPIR_PARAM_NUM_CLIQUES
MPICH_NUM_CLIQUES
Description: Specify the number of cliques that should be used to
partition procs on a local node. Procs with the same clique number
are seen as local to each other. Used for debugging on a single
machine.
Default: 1
MPIR_CVAR_CLIQUES_BY_BLOCK
Aliases: MPIR_PARAM_CLIQUES_BY_BLOCK
MPICH_CLIQUES_BY_BLOCK
Description: Specify to divide processes into cliques by uniform
blocks. The default is to divide in round-robin fashion. Used for
debugging on a single machine.
Default: 0
MPIR_CVAR_PMI_VERSION
Aliases: MPIR_PARAM_PMI_VERSION
MPICH_PMI_VERSION
Description: Variable to select runtime PMI version.
1 - PMI (default)
2 - PMI2
x - PMIx
auto - Auto-detect PMI version
Default: MPIR_CVAR_PMI_VERSION_auto
MPIR_CVAR_PMI_DISABLE_GROUP
Aliases: MPIR_PARAM_PMI_DISABLE_GROUP
MPICH_PMI_DISABLE_GROUP
Description: Set this cvar to true if PMI_Barrier_group or PMIx_Fence
over a group is not supported.
Default: 0
MPIR_CVAR_COLL_ALIAS_CHECK
Aliases: MPIR_PARAM_COLL_ALIAS_CHECK
MPICH_COLL_ALIAS_CHECK
Description: Enable checking of aliasing in collective operations
Default: 1
MPIR_CVAR_ENABLE_GPU
Aliases: MPIR_PARAM_ENABLE_GPU
MPICH_ENABLE_GPU
Description: Control MPICH GPU support. If set to 0, all GPU support is
disabled and we do not query the buffer type internally because we
assume no GPU buffer is use.
Default: 1
MPIR_CVAR_GPU_HAS_WAIT_KERNEL
Aliases: MPIR_PARAM_GPU_HAS_WAIT_KERNEL
MPICH_GPU_HAS_WAIT_KERNEL
Description: If set to 1, avoid allocate allocating GPU registered host
buffers for temporary buffers. When stream workq and GPU wait
kernels are in use, access APIs for GPU registered memory may cause
deadlock.
Default: 0
MPIR_CVAR_ENABLE_GPU_REGISTER
Aliases: MPIR_PARAM_ENABLE_GPU_REGISTER
MPICH_ENABLE_GPU_REGISTER
Description: Control whether to actually register buffers with the GPU
runtime in MPIR_gpu_register_host. This could lower the latency of
certain GPU communication at the cost of some amount of GPU memory
consumed by the MPI library. By default, registration is enabled.
Default: 1
MPIR_CVAR_PROGRESS_TIMEOUT
Aliases: MPIR_PARAM_PROGRESS_TIMEOUT
MPICH_PROGRESS_TIMEOUT
MPIR_CVAR_DEBUG_PROGRESS_TIMEOUT
MPIR_PARAM_DEBUG_PROGRESS_TIMEOUT
MPICH_DEBUG_PROGRESS_TIMEOUT
Description: Sets the timeout in seconds to dump outstanding requests
when progress wait is not making progress for some time.
Default: 0
MPIR_CVAR_POLLS_BEFORE_YIELD
Aliases: MPIR_PARAM_POLLS_BEFORE_YIELD
MPICH_POLLS_BEFORE_YIELD
Description: When MPICH is in a busy waiting loop, it will periodically
call a function to yield the processor. This cvar sets the number
of loops before the yield function is called. A value of 0
disables yielding.
Default: 1000
MPIR_CVAR_CH3_INTERFACE_HOSTNAME
Aliases: MPIR_PARAM_CH3_INTERFACE_HOSTNAME
MPICH_CH3_INTERFACE_HOSTNAME
MPIR_CVAR_INTERFACE_HOSTNAME
MPIR_PARAM_INTERFACE_HOSTNAME
MPICH_INTERFACE_HOSTNAME
Description: If non-NULL, this cvar specifies the IP address that other
processes should use when connecting to this process. This cvar is
mutually exclusive with the MPIR_CVAR_CH3_NETWORK_IFACE cvar and it
is an error to set them both.
Default: NULL
MPIR_CVAR_CH3_PORT_RANGE
Aliases: MPIR_PARAM_CH3_PORT_RANGE
MPICH_CH3_PORT_RANGE
MPIR_CVAR_PORTRANGE
MPIR_CVAR_PORT_RANGE
MPIR_PARAM_PORTRANGE
MPIR_PARAM_PORT_RANGE
MPICH_PORTRANGE
MPICH_PORT_RANGE
Description: The MPIR_CVAR_CH3_PORT_RANGE environment variable allows
you to specify the range of TCP ports to be used by the process
manager and the MPICH library. The format of this variable is
<low>:<high>. To specify any available port, use 0:0.
Default: {0,0}
MPIR_CVAR_NEMESIS_TCP_NETWORK_IFACE
Aliases: MPIR_PARAM_NEMESIS_TCP_NETWORK_IFACE
MPICH_NEMESIS_TCP_NETWORK_IFACE
MPIR_CVAR_NETWORK_IFACE
MPIR_PARAM_NETWORK_IFACE
MPICH_NETWORK_IFACE
Description: If non-NULL, this cvar specifies which pseudo-ethernet
interface the tcp netmod should use (e.g., "eth1", "ib0"). Note,
this is a Linux-specific cvar. This cvar is mutually exclusive with
the MPIR_CVAR_CH3_INTERFACE_HOSTNAME cvar and it is an error to set
them both.
Default: NULL
MPIR_CVAR_NEMESIS_TCP_HOST_LOOKUP_RETRIES
Aliases: MPIR_PARAM_NEMESIS_TCP_HOST_LOOKUP_RETRIES
MPICH_NEMESIS_TCP_HOST_LOOKUP_RETRIES
Description: This cvar controls the number of times to retry the
gethostbyname() function before giving up.
Default: 10
MPIR_CVAR_NEMESIS_ENABLE_CKPOINT
Aliases: MPIR_PARAM_NEMESIS_ENABLE_CKPOINT
MPICH_NEMESIS_ENABLE_CKPOINT
Description: If true, enables checkpointing support and returns an
error if checkpointing library cannot be initialized.
Default: 0
MPIR_CVAR_NEMESIS_SHM_EAGER_MAX_SZ
Aliases: MPIR_PARAM_NEMESIS_SHM_EAGER_MAX_SZ
MPICH_NEMESIS_SHM_EAGER_MAX_SZ
Description: This cvar controls the message size at which Nemesis
switches from eager to rendezvous mode for shared memory. If this
cvar is set to -1, then Nemesis will choose an appropriate value.
Default: -1
MPIR_CVAR_NEMESIS_SHM_READY_EAGER_MAX_SZ
Aliases: MPIR_PARAM_NEMESIS_SHM_READY_EAGER_MAX_SZ
MPICH_NEMESIS_SHM_READY_EAGER_MAX_SZ
Description: This cvar controls the message size at which Nemesis
switches from eager to rendezvous mode for ready-send messages. If
this cvar is set to -1, then ready messages will always be sent
eagerly. If this cvar is set to -2, then Nemesis will choose an
appropriate value.
Default: -2
MPIR_CVAR_ENABLE_FT
Aliases: MPIR_PARAM_ENABLE_FT
MPICH_ENABLE_FT
Description: Enable fault tolerance functions
Default: 0
MPIR_CVAR_NEMESIS_NETMOD
Aliases: MPIR_PARAM_NEMESIS_NETMOD
MPICH_NEMESIS_NETMOD
Description: If non-empty, this cvar specifies which network module
should be used for communication. This variable is
case-insensitive.
Default: ""
MPIR_CVAR_CH3_ENABLE_HCOLL
Aliases: MPIR_PARAM_CH3_ENABLE_HCOLL
MPICH_CH3_ENABLE_HCOLL
Description: If true, enable HCOLL collectives.
Default: 0
MPIR_CVAR_CH3_COMM_CONNECT_TIMEOUT
Aliases: MPIR_PARAM_CH3_COMM_CONNECT_TIMEOUT
MPICH_CH3_COMM_CONNECT_TIMEOUT
Description: The default time out period in seconds for a connection
attempt to the server communicator where the named port exists but
no pending accept. User can change the value for a specified
connection through its info argument.
Default: 180
MPIR_CVAR_CH3_RMA_OP_PIGGYBACK_LOCK_DATA_SIZE
Aliases: MPIR_PARAM_CH3_RMA_OP_PIGGYBACK_LOCK_DATA_SIZE
MPICH_CH3_RMA_OP_PIGGYBACK_LOCK_DATA_SIZE
Description: Specify the threshold of data size of a RMA operation
which can be piggybacked with a LOCK message. It is always a
positive value and should not be smaller than
MPIDI_RMA_IMMED_BYTES. If user sets it as a small value, for middle
and large data size, we will lose performance because of always
waiting for round-trip of LOCK synchronization; if user sets it as
a large value, we need to consume more memory on target side to
buffer this lock request when lock is not satisfied.
Default: 65536
MPIR_CVAR_CH3_RMA_ACTIVE_REQ_THRESHOLD
Aliases: MPIR_PARAM_CH3_RMA_ACTIVE_REQ_THRESHOLD
MPICH_CH3_RMA_ACTIVE_REQ_THRESHOLD
Description: Threshold of number of active requests to trigger blocking
waiting in operation routines. When the value is negative, we never
blockingly wait in operation routines. When the value is zero, we
always trigger blocking waiting in operation routines to wait until
no. of active requests becomes zero. When the value is positive, we
do blocking waiting in operation routines to wait until no. of
active requests being reduced to this value.
Default: 65536
MPIR_CVAR_CH3_RMA_POKE_PROGRESS_REQ_THRESHOLD
Aliases: MPIR_PARAM_CH3_RMA_POKE_PROGRESS_REQ_THRESHOLD
MPICH_CH3_RMA_POKE_PROGRESS_REQ_THRESHOLD
Description: Threshold at which the RMA implementation attempts to
complete requests while completing RMA operations and while using
the lazy synchronization approach. Change this value if programs
fail because they run out of requests or other internal resources
Default: 128
MPIR_CVAR_CH3_RMA_SCALABLE_FENCE_PROCESS_NUM
Aliases: MPIR_PARAM_CH3_RMA_SCALABLE_FENCE_PROCESS_NUM
MPICH_CH3_RMA_SCALABLE_FENCE_PROCESS_NUM
Description: Specify the threshold of switching the algorithm used in
FENCE from the basic algorithm to the scalable algorithm. The value
can be negative, zero or positive. When the number of processes is
larger than or equal to this value, FENCE will use a scalable
algorithm which do not use O(P) data structure; when the number of
processes is smaller than the value, FENCE will use a basic but
fast algorithm which requires an O(P) data structure.
Default: 1024
MPIR_CVAR_CH3_RMA_DELAY_ISSUING_FOR_PIGGYBACKING
Aliases: MPIR_PARAM_CH3_RMA_DELAY_ISSUING_FOR_PIGGYBACKING
MPICH_CH3_RMA_DELAY_ISSUING_FOR_PIGGYBACKING
Description: Specify if delay issuing of RMA operations for
piggybacking LOCK/UNLOCK/FLUSH is enabled. It can be either 0 or 1.
When it is set to 1, the issuing of LOCK message is delayed until
origin process see the first RMA operation and piggyback LOCK with
that operation, and the origin process always keeps the current
last operation until the ending synchronization call in order to
piggyback UNLOCK/FLUSH with that operation. When it is set to 0, in
WIN_LOCK/UNLOCK case, the LOCK message is sent out as early as
possible, in WIN_LOCK_ALL/UNLOCK_ALL case, the origin process still
tries to piggyback LOCK message with the first operation; for
UNLOCK/FLUSH message, the origin process no longer keeps the
current last operation but only piggyback UNLOCK/FLUSH if there is
an operation available in the ending synchronization call.
Default: 0
MPIR_CVAR_CH3_RMA_SLOTS_SIZE
Aliases: MPIR_PARAM_CH3_RMA_SLOTS_SIZE
MPICH_CH3_RMA_SLOTS_SIZE
Description: Number of RMA slots during window creation. Each slot
contains a linked list of target elements. The distribution of
ranks among slots follows a round-robin pattern. Requires a
positive value.
Default: 262144
MPIR_CVAR_CH3_RMA_TARGET_LOCK_DATA_BYTES
Aliases: MPIR_PARAM_CH3_RMA_TARGET_LOCK_DATA_BYTES
MPICH_CH3_RMA_TARGET_LOCK_DATA_BYTES
Description: Size (in bytes) of available lock data this window can
provided. If current buffered lock data is more than this value,
the process will drop the upcoming operation data. Requires a
positive value.
Default: 655360
MPIR_CVAR_CH3_EAGER_MAX_MSG_SIZE
Aliases: MPIR_PARAM_CH3_EAGER_MAX_MSG_SIZE
MPICH_CH3_EAGER_MAX_MSG_SIZE
Description: This cvar controls the message size at which CH3 switches
from eager to rendezvous mode.
Default: 131072
MPIR_CVAR_CH3_PG_VERBOSE
Aliases: MPIR_PARAM_CH3_PG_VERBOSE
MPICH_CH3_PG_VERBOSE
Description: If set, print the PG state on finalize.
Default: 0
MPIR_CVAR_CH3_RMA_OP_WIN_POOL_SIZE
Aliases: MPIR_PARAM_CH3_RMA_OP_WIN_POOL_SIZE
MPICH_CH3_RMA_OP_WIN_POOL_SIZE
Description: Size of the window-private RMA operations pool (in number
of operations) that stores information about RMA operations that
could not be issued immediately. Requires a positive value.
Default: 256
MPIR_CVAR_CH3_RMA_OP_GLOBAL_POOL_SIZE
Aliases: MPIR_PARAM_CH3_RMA_OP_GLOBAL_POOL_SIZE
MPICH_CH3_RMA_OP_GLOBAL_POOL_SIZE
Description: Size of the Global RMA operations pool (in number of
operations) that stores information about RMA operations that could
not be issued immediately. Requires a positive value.
Default: 16384
MPIR_CVAR_CH3_RMA_TARGET_WIN_POOL_SIZE
Aliases: MPIR_PARAM_CH3_RMA_TARGET_WIN_POOL_SIZE
MPICH_CH3_RMA_TARGET_WIN_POOL_SIZE
Description: Size of the window-private RMA target pool (in number of
targets) that stores information about RMA targets that could not
be issued immediately. Requires a positive value.
Default: 256
MPIR_CVAR_CH3_RMA_TARGET_GLOBAL_POOL_SIZE
Aliases: MPIR_PARAM_CH3_RMA_TARGET_GLOBAL_POOL_SIZE
MPICH_CH3_RMA_TARGET_GLOBAL_POOL_SIZE
Description: Size of the Global RMA targets pool (in number of targets)
that stores information about RMA targets that could not be issued
immediately. Requires a positive value.
Default: 16384
MPIR_CVAR_CH3_RMA_TARGET_LOCK_ENTRY_WIN_POOL_SIZE
Aliases: MPIR_PARAM_CH3_RMA_TARGET_LOCK_ENTRY_WIN_POOL_SIZE
MPICH_CH3_RMA_TARGET_LOCK_ENTRY_WIN_POOL_SIZE
Description: Size of the window-private RMA lock entries pool (in
number of lock entries) that stores information about RMA lock
requests that could not be satisfied immediately. Requires a
positive value.
Default: 256
MPIR_CVAR_OFI_USE_PROVIDER
Aliases: MPIR_PARAM_OFI_USE_PROVIDER
MPICH_OFI_USE_PROVIDER
Description: This variable is no longer supported. Use FI_PROVIDER
instead to select libfabric providers.
Default: NULL
MPIR_CVAR_SINGLE_HOST_ENABLED
Aliases: MPIR_PARAM_SINGLE_HOST_ENABLED
MPICH_SINGLE_HOST_ENABLED
Description: Set this variable to true to indicate that processes are
launched on a single host. The current implication is to avoid the
cxi provider to prevent the use of scarce hardware resources.
Default: 1
MPIR_CVAR_CH4_OFI_AM_LONG_FORCE_PIPELINE
Aliases: MPIR_PARAM_CH4_OFI_AM_LONG_FORCE_PIPELINE
MPICH_CH4_OFI_AM_LONG_FORCE_PIPELINE
Description: For long message to be sent using pipeline rather than
default RDMA read.
Default: 0
MPIR_CVAR_BCAST_OFI_INTRA_ALGORITHM
Aliases: MPIR_PARAM_BCAST_OFI_INTRA_ALGORITHM
MPICH_BCAST_OFI_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node bcast
mpir - Fallback to MPIR collectives
trigger_tree_tagged - Force triggered ops based Tagged Tree
trigger_tree_rma - Force triggered ops based RMA Tree
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_OFI_COLL_SELECTION_TUNING_JSON_FILE)
Default: MPIR_CVAR_BCAST_OFI_INTRA_ALGORITHM_auto
MPIR_CVAR_OFI_SKIP_IPV6
Aliases: MPIR_PARAM_OFI_SKIP_IPV6
MPICH_OFI_SKIP_IPV6
Description: Skip IPv6 providers.
Default: 0
MPIR_CVAR_CH4_OFI_ENABLE_DATA
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_DATA
MPICH_CH4_OFI_ENABLE_DATA
Description: Enable immediate data fields in OFI to transmit source
rank outside of the match bits
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_AV_TABLE
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_AV_TABLE
MPICH_CH4_OFI_ENABLE_AV_TABLE
Description: If true, the OFI addressing information will be stored
with an FI_AV_TABLE. If false, an FI_AV_MAP will be used.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_SHARED_AV
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_SHARED_AV
MPICH_CH4_OFI_ENABLE_SHARED_AV
Description: If true, it will try open shared av at initialization.
Default: 0
MPIR_CVAR_CH4_OFI_ENABLE_SCALABLE_ENDPOINTS
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_SCALABLE_ENDPOINTS
MPICH_CH4_OFI_ENABLE_SCALABLE_ENDPOINTS
Description: If true, use OFI scalable endpoints.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_SHARED_CONTEXTS
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_SHARED_CONTEXTS
MPICH_CH4_OFI_ENABLE_SHARED_CONTEXTS
Description: If set to false (zero), MPICH does not use OFI shared
contexts. If set to -1, it is determined by the OFI capability sets
based on the provider. Otherwise, MPICH tries to use OFI shared
contexts. If they are unavailable, it'll fall back to the mode
without shared contexts.
Default: 0
MPIR_CVAR_CH4_OFI_ENABLE_MR_VIRT_ADDRESS
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MR_VIRT_ADDRESS
MPICH_CH4_OFI_ENABLE_MR_VIRT_ADDRESS
Description: If true, enable virtual addressing for OFI memory regions.
This variable is only meaningful for OFI versions 1.5+. It is
equivalent to using FI_MR_BASIC in versions of OFI older than 1.5.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_MR_ALLOCATED
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MR_ALLOCATED
MPICH_CH4_OFI_ENABLE_MR_ALLOCATED
Description: If true, require all OFI memory regions must be backed by
physical memory pages at the time the registration call is made.
This variable is only meaningful for OFI versions 1.5+. It is
equivalent to using FI_MR_BASIC in versions of OFI older than 1.5.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_MR_REGISTER_NULL
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MR_REGISTER_NULL
MPICH_CH4_OFI_ENABLE_MR_REGISTER_NULL
Description: If true, memory registration call supports registering
with NULL addresses.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_MR_PROV_KEY
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MR_PROV_KEY
MPICH_CH4_OFI_ENABLE_MR_PROV_KEY
Description: If true, enable provider supplied key for OFI memory
regions. This variable is only meaningful for OFI versions 1.5+. It
is equivalent to using FI_MR_BASIC in versions of OFI older than
1.5.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_TAGGED
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_TAGGED
MPICH_CH4_OFI_ENABLE_TAGGED
Description: If true, use tagged message transmission functions in OFI.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_AM
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_AM
MPICH_CH4_OFI_ENABLE_AM
Description: If true, enable OFI active message support.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_RMA
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_RMA
MPICH_CH4_OFI_ENABLE_RMA
Description: If true, enable OFI RMA support for MPI RMA operations.
OFI support for basic RMA is always required to implement large
messgage transfers in the active message code path.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_ATOMICS
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_ATOMICS
MPICH_CH4_OFI_ENABLE_ATOMICS
Description: If true, enable OFI Atomics support.
Default: -1
MPIR_CVAR_CH4_OFI_FETCH_ATOMIC_IOVECS
Aliases: MPIR_PARAM_CH4_OFI_FETCH_ATOMIC_IOVECS
MPICH_CH4_OFI_FETCH_ATOMIC_IOVECS
Description: Specifies the maximum number of iovecs that can be used by
the OFI provider for fetch_atomic operations. The default value is
-1, indicating that no value is set.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_DATA_AUTO_PROGRESS
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_DATA_AUTO_PROGRESS
MPICH_CH4_OFI_ENABLE_DATA_AUTO_PROGRESS
Description: If true, enable MPI data auto progress.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_CONTROL_AUTO_PROGRESS
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_CONTROL_AUTO_PROGRESS
MPICH_CH4_OFI_ENABLE_CONTROL_AUTO_PROGRESS
Description: If true, enable MPI control auto progress.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_PT2PT_NOPACK
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_PT2PT_NOPACK
MPICH_CH4_OFI_ENABLE_PT2PT_NOPACK
Description: If true, enable iovec for pt2pt.
Default: -1
MPIR_CVAR_CH4_OFI_ENABLE_HMEM
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_HMEM
MPICH_CH4_OFI_ENABLE_HMEM
Description: If true, uses GPU direct RDMA support in the provider.
Default: 0
MPIR_CVAR_CH4_OFI_ENABLE_MR_HMEM
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MR_HMEM
MPICH_CH4_OFI_ENABLE_MR_HMEM
Description: If true, need to register the buffer to use GPU direct
RDMA.
Default: -1
MPIR_CVAR_CH4_OFI_GPU_RDMA_THRESHOLD
Aliases: MPIR_PARAM_CH4_OFI_GPU_RDMA_THRESHOLD
MPICH_CH4_OFI_GPU_RDMA_THRESHOLD
Description: The threshold to start using GPU direct RDMA.
Default: 0
MPIR_CVAR_CH4_OFI_CONTEXT_ID_BITS
Aliases: MPIR_PARAM_CH4_OFI_CONTEXT_ID_BITS
MPICH_CH4_OFI_CONTEXT_ID_BITS
Description: Specifies the number of bits that will be used for
matching the context ID. The default value is -1, indicating that
no value is set and that the default will be defined in the
ofi_types.h file.
Default: -1
MPIR_CVAR_CH4_OFI_RANK_BITS
Aliases: MPIR_PARAM_CH4_OFI_RANK_BITS
MPICH_CH4_OFI_RANK_BITS
Description: Specifies the number of bits that will be used for
matching the MPI rank. The default value is -1, indicating that no
value is set and that the default will be defined in the
ofi_types.h file.
Default: -1
MPIR_CVAR_CH4_OFI_TAG_BITS
Aliases: MPIR_PARAM_CH4_OFI_TAG_BITS
MPICH_CH4_OFI_TAG_BITS
Description: Specifies the number of bits that will be used for
matching the user tag. The default value is -1, indicating that no
value is set and that the default will be defined in the
ofi_types.h file.
Default: -1
MPIR_CVAR_CH4_OFI_MAJOR_VERSION
Aliases: MPIR_PARAM_CH4_OFI_MAJOR_VERSION
MPICH_CH4_OFI_MAJOR_VERSION
Description: Specifies the major version of the OFI library. The
default is the major version of the OFI library used with MPICH. If
using this CVAR, it is recommended that the user also specifies a
specific OFI provider.
Default: -1
MPIR_CVAR_CH4_OFI_MINOR_VERSION
Aliases: MPIR_PARAM_CH4_OFI_MINOR_VERSION
MPICH_CH4_OFI_MINOR_VERSION
Description: Specifies the major version of the OFI library. The
default is the minor version of the OFI library used with MPICH. If
using this CVAR, it is recommended that the user also specifies a
specific OFI provider.
Default: -1
MPIR_CVAR_CH4_OFI_MAX_RMA_SEP_CTX
Aliases: MPIR_PARAM_CH4_OFI_MAX_RMA_SEP_CTX
MPICH_CH4_OFI_MAX_RMA_SEP_CTX
Description: If set to positive, this CVAR specifies the maximum number
of transmit contexts RMA can utilize in a scalable endpoint. This
value is effective only when scalable endpoint is available,
otherwise it will be ignored.
Default: 0
MPIR_CVAR_CH4_OFI_MAX_EAGAIN_RETRY
Aliases: MPIR_PARAM_CH4_OFI_MAX_EAGAIN_RETRY
MPICH_CH4_OFI_MAX_EAGAIN_RETRY
Description: If set to positive, this CVAR specifies the maximum number
of retries of an ofi operations before returning MPIX_ERR_EAGAIN.
This value is effective only when the communicator has the
MPI_OFI_set_eagain info hint set to true.
Default: -1
MPIR_CVAR_CH4_OFI_NUM_AM_BUFFERS
Aliases: MPIR_PARAM_CH4_OFI_NUM_AM_BUFFERS
MPICH_CH4_OFI_NUM_AM_BUFFERS
Description: Specifies the number of buffers for receiving active
messages.
Default: -1
MPIR_CVAR_CH4_OFI_NUM_OPTIMIZED_MEMORY_REGIONS
Aliases: MPIR_PARAM_CH4_OFI_NUM_OPTIMIZED_MEMORY_REGIONS
MPICH_CH4_OFI_NUM_OPTIMIZED_MEMORY_REGIONS
Description: Specifies the number of optimized memory regions supported
by the provider. An optimized memory region is used for
lower-overhead, unordered RMA operations. It uses a low-overhead RX
path and additionally, a low-overhead packet format may be used to
target an optimized memory region.
Default: 0
MPIR_CVAR_CH4_OFI_RMA_PROGRESS_INTERVAL
Aliases: MPIR_PARAM_CH4_OFI_RMA_PROGRESS_INTERVAL
MPICH_CH4_OFI_RMA_PROGRESS_INTERVAL
Description: Specifies the interval for manually flushing RMA
operations when automatic progress is not enabled. It the
underlying OFI provider supports auto data progress, this value is
ignored. If the value is -1, this optimization will be turned off.
Default: 100
MPIR_CVAR_CH4_OFI_RMA_IOVEC_MAX
Aliases: MPIR_PARAM_CH4_OFI_RMA_IOVEC_MAX
MPICH_CH4_OFI_RMA_IOVEC_MAX
Description: Specifies the maximum number of iovecs to allocate for RMA
operations to/from noncontiguous buffers.
Default: 16384
MPIR_CVAR_CH4_OFI_MAX_NICS
Aliases: MPIR_PARAM_CH4_OFI_MAX_NICS
MPICH_CH4_OFI_MAX_NICS
Description: If set to positive number, this cvar determines the
maximum number of physical nics to use (if more than one is
available). If the number is -1, underlying netmod or shmmod
automatically uses an optimal number depending on what is detected
on the system up to the limit determined by MPIDI_MAX_NICS (in
ofi_types.h).
Default: 1
MPIR_CVAR_CH4_OFI_ENABLE_MULTI_NIC_STRIPING
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MULTI_NIC_STRIPING
MPICH_CH4_OFI_ENABLE_MULTI_NIC_STRIPING
Description: If true, this cvar enables striping of large messages
across multiple NICs.
Default: 0
MPIR_CVAR_CH4_OFI_MULTI_NIC_STRIPING_THRESHOLD
Aliases: MPIR_PARAM_CH4_OFI_MULTI_NIC_STRIPING_THRESHOLD
MPICH_CH4_OFI_MULTI_NIC_STRIPING_THRESHOLD
Description: Striping will happen for message sizes beyond this
threshold.
Default: 1048576
MPIR_CVAR_CH4_OFI_ENABLE_MULTI_NIC_HASHING
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_MULTI_NIC_HASHING
MPICH_CH4_OFI_ENABLE_MULTI_NIC_HASHING
Description: Multi-NIC hashing means to use more than one NIC to send
and receive messages above a certain size. If set to positive
number, this feature will be turned on. If set to 0, this feature
will be turned off. If the number is -1, MPICH automatically
determines whether to use multi-nic hashing depending on what is
detected on the system (e.g., number of NICs available, number of
processes sharing the NICs).
Default: 0
MPIR_CVAR_CH4_OFI_MULTIRECV_BUFFER_SIZE
Aliases: MPIR_PARAM_CH4_OFI_MULTIRECV_BUFFER_SIZE
MPICH_CH4_OFI_MULTIRECV_BUFFER_SIZE
Description: Controls the multirecv am buffer size. It is recommended
to match this to the hugepage size so that the buffer can be
allocated at the page boundary.
Default: 2097152
MPIR_CVAR_OFI_USE_MIN_NICS
Aliases: MPIR_PARAM_OFI_USE_MIN_NICS
MPICH_OFI_USE_MIN_NICS
Description: If true and all nodes do not have the same number of NICs,
MPICH will fall back to using the fewest number of NICs instead of
returning an error.
Default: 1
MPIR_CVAR_CH4_OFI_ENABLE_TRIGGERED
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_TRIGGERED
MPICH_CH4_OFI_ENABLE_TRIGGERED
Description: If true, enable OFI triggered ops for MPI collectives.
Default: -1
MPIR_CVAR_CH4_OFI_PIPELINE_CHUNK_SZ
Aliases: MPIR_PARAM_CH4_OFI_PIPELINE_CHUNK_SZ
MPICH_CH4_OFI_PIPELINE_CHUNK_SZ
Description: Specifies the chunk size (in bytes) for pipeline data
transfer.
Default: 1048576
MPIR_CVAR_CH4_OFI_PIPELINE_NUM_CHUNKS
Aliases: MPIR_PARAM_CH4_OFI_PIPELINE_NUM_CHUNKS
MPICH_CH4_OFI_PIPELINE_NUM_CHUNKS
Description: Specifies the number of chunk buffers for pipeline data
transfer.
Default: 32
MPIR_CVAR_CH4_OFI_PIPELINE_MAX_CHUNKS
Aliases: MPIR_PARAM_CH4_OFI_PIPELINE_MAX_CHUNKS
MPICH_CH4_OFI_PIPELINE_MAX_CHUNKS
Description: Specifies the max number of chunk buffers to be reserved
for pipeline data transfer.
Default: 1024
MPIR_CVAR_CH4_OFI_GPU_SEND_ENGINE_TYPE
Aliases: MPIR_PARAM_CH4_OFI_GPU_SEND_ENGINE_TYPE
MPICH_CH4_OFI_GPU_SEND_ENGINE_TYPE
Description: Specifies GPU engine type for GPU pt2pt on the sender
side.
compute - use a compute engine
copy_high_bandwidth - use a high-bandwidth copy engine
copy_low_latency - use a low-latency copy engine
yaksa - use Yaksa
Default: MPIR_CVAR_CH4_OFI_GPU_SEND_ENGINE_TYPE_copy_low_latency
MPIR_CVAR_CH4_OFI_GPU_RECEIVE_ENGINE_TYPE
Aliases: MPIR_PARAM_CH4_OFI_GPU_RECEIVE_ENGINE_TYPE
MPICH_CH4_OFI_GPU_RECEIVE_ENGINE_TYPE
Description: Specifies GPU engine type for GPU pt2pt on the receiver
side.
compute - use a compute engine
copy_high_bandwidth - use a high-bandwidth copy engine
copy_low_latency - use a low-latency copy engine
yaksa - use Yaksa
Default: MPIR_CVAR_CH4_OFI_GPU_RECEIVE_ENGINE_TYPE_copy_low_latency
MPIR_CVAR_CH4_OFI_PREF_NIC
Aliases: MPIR_PARAM_CH4_OFI_PREF_NIC
MPICH_CH4_OFI_PREF_NIC
Description: Accept the NIC value from a user
Default: -1
MPIR_CVAR_CH4_OFI_DISABLE_INJECT_WRITE
Aliases: MPIR_PARAM_CH4_OFI_DISABLE_INJECT_WRITE
MPICH_CH4_OFI_DISABLE_INJECT_WRITE
Description: Avoid use fi_inject_write. For some provider, e.g.
tcp;ofi_rxm, inject write may break the synchronization.
Default: 0
MPIR_CVAR_CH4_OFI_RNDV_PROTOCOL
Aliases: MPIR_PARAM_CH4_OFI_RNDV_PROTOCOL
MPICH_CH4_OFI_RNDV_PROTOCOL
Description: When message size is greater than
MPIR_CVAR_CH4_OFI_EAGER_THRESHOLD,
specify large message protocol.
auto - decide protocols based on buffer attributes and datatypes.
pipeline - use pipeline protocol (forcing pack and unpack).
read - RDMA read.
write - RDMA write.
direct - direct send data using libfabric after the RNDV handshake.
Default: MPIR_CVAR_CH4_OFI_RNDV_PROTOCOL_auto
MPIR_CVAR_CH4_OFI_ENABLE_INJECT
Aliases: MPIR_PARAM_CH4_OFI_ENABLE_INJECT
MPICH_CH4_OFI_ENABLE_INJECT
Description: Set MPIR_CVAR_CH4_OFI_ENABLE_INJECT=0 to disable buffered
send for small messages. This may help avoid hang due to lack of
global progress.
Default: 1
MPIR_CVAR_CH4_OFI_EAGER_THRESHOLD
Aliases: MPIR_PARAM_CH4_OFI_EAGER_THRESHOLD
MPICH_CH4_OFI_EAGER_THRESHOLD
Description: Messages below MPIR_CVAR_CH4_OFI_EAGER_THRESHOLD will be
sent eagerly using fi_tagged interfaces. Messages above the
threshold will perform an MPICH-level rendezvous handshake before
sending the data. If set to -1, MPICH will only perform rendezvous
for messages larger than the provider max_msg_size. Note the MPICH
eager/rendezvous threshold is independent of any internal libfabric
provider threshold.
Default: -1
MPIR_CVAR_CH4_UCX_ENABLE_UCC
Aliases: MPIR_PARAM_CH4_UCX_ENABLE_UCC
MPICH_CH4_UCX_ENABLE_UCC
MPIR_CVAR_CH4_UCC_ENABLE
MPIR_PARAM_CH4_UCC_ENABLE
MPICH_CH4_UCC_ENABLE
Description: Enable UCC support.
Default: 0
MPIR_CVAR_CH4_UCX_UCC_ENABLE_DEBUG
Aliases: MPIR_PARAM_CH4_UCX_UCC_ENABLE_DEBUG
MPICH_CH4_UCX_UCC_ENABLE_DEBUG
MPIR_CVAR_CH4_UCC_ENABLE_DEBUG
MPIR_PARAM_CH4_UCC_ENABLE_DEBUG
MPICH_CH4_UCC_ENABLE_DEBUG
Description: Enable additional debug output for UCC wrappers.
Default: 0
MPIR_CVAR_CH4_UCX_UCC_VERBOSITY_LEVEL
Aliases: MPIR_PARAM_CH4_UCX_UCC_VERBOSITY_LEVEL
MPICH_CH4_UCX_UCC_VERBOSITY_LEVEL
MPIR_CVAR_CH4_UCC_VERBOSITY_LEVEL
MPIR_PARAM_CH4_UCC_VERBOSITY_LEVEL
MPICH_CH4_UCC_VERBOSITY_LEVEL
Description: Set verbosity output level for UCC wrappers.
Default: "0"
MPIR_CVAR_UCX_DT_RECV
Aliases: MPIR_PARAM_UCX_DT_RECV
MPICH_UCX_DT_RECV
Description: Variable to select method for receiving noncontiguous data
true - Use UCX datatype with pack/unpack callbacks
false - MPICH will decide to pack/unpack at
completion or use IOVs
based on the datatype
Default: 0
MPIR_CVAR_CH4_CMA_ENABLE
Aliases: MPIR_PARAM_CH4_CMA_ENABLE
MPICH_CH4_CMA_ENABLE
Description: Set to 1 to manually enable CMA. It is disabled by default
because the CMA requires the ptrace_scope permission, which is
often disabled.
Default: 1
MPIR_CVAR_CH4_IPC_CMA_P2P_THRESHOLD
Aliases: MPIR_PARAM_CH4_IPC_CMA_P2P_THRESHOLD
MPICH_CH4_IPC_CMA_P2P_THRESHOLD
Description: If a send message size is greater than or equal to
MPIR_CVAR_CH4_IPC_CMA_P2P_THRESHOLD (in bytes), then enable
CMA-based single copy protocol for intranode communication. The
environment variable is valid only when the CMA submodule is
enabled.
Default: 8192
MPIR_CVAR_CH4_IPC_GPU_HANDLE_CACHE
Aliases: MPIR_PARAM_CH4_IPC_GPU_HANDLE_CACHE
MPICH_CH4_IPC_GPU_HANDLE_CACHE
Description: By default, we will cache ipc handles using the
specialized cache mechanism. If the
gpu-specific backend does not implement a specialized cache, then
we will fallback to
the generic cache mechanism. Users can optionally force the generic
cache mechanism or
disable ipc caching entirely.
generic - use the cache mechanism in the generic layer
specialized - use the cache mechanism in a gpu-specific mpl layer
(if applicable)
disabled - disable caching completely
Default: MPIR_CVAR_CH4_IPC_GPU_HANDLE_CACHE_specialized
MPIR_CVAR_CH4_IPC_GPU_MAX_CACHE_ENTRIES
Aliases: MPIR_PARAM_CH4_IPC_GPU_MAX_CACHE_ENTRIES
MPICH_CH4_IPC_GPU_MAX_CACHE_ENTRIES
Description: The maximum number of entries to hold per device in the
cache containing IPC mapped buffers. When an entry is evicted, the
corresponding IPC handle is closed. This value is relevant only
when MPIR_CVAR_CH4_IPC_GPU_CACHE_SIZE=limited.
Default: 16
MPIR_CVAR_CH4_IPC_GPU_CACHE_SIZE
Aliases: MPIR_PARAM_CH4_IPC_GPU_CACHE_SIZE
MPICH_CH4_IPC_GPU_CACHE_SIZE
Description: The behavior of the cache containing IPC mapped buffers.
unlimited - don't restrict the cache size
limited - limit the cache size based on
MPIR_CVAR_CH4_IPC_GPU_MAX_CACHE_ENTRIES
disabled - don't cache mapped IPC buffers
Default: MPIR_CVAR_CH4_IPC_GPU_CACHE_SIZE_limited
MPIR_CVAR_CH4_IPC_GPU_P2P_THRESHOLD
Aliases: MPIR_PARAM_CH4_IPC_GPU_P2P_THRESHOLD
MPICH_CH4_IPC_GPU_P2P_THRESHOLD
Description: If a send message size is greater than or equal to
MPIR_CVAR_CH4_IPC_GPU_P2P_THRESHOLD (in bytes), then enable
GPU-based single copy protocol for intranode communication. The
environment variable is valid only when then GPU IPC shmmod is
enabled.
Default: 1048576
MPIR_CVAR_CH4_IPC_ZE_SHAREABLE_HANDLE
Aliases: MPIR_PARAM_CH4_IPC_ZE_SHAREABLE_HANDLE
MPICH_CH4_IPC_ZE_SHAREABLE_HANDLE
Description: Variable to select implementation for ZE shareable IPC
handle
pidfd - use pidfd_getfd syscall to implement shareable IPC handle
drmfd - force to use device fd-based shareable IPC handle
Default: MPIR_CVAR_CH4_IPC_ZE_SHAREABLE_HANDLE_drmfd
MPIR_CVAR_CH4_IPC_GPU_ENGINE_TYPE
Aliases: MPIR_PARAM_CH4_IPC_GPU_ENGINE_TYPE
MPICH_CH4_IPC_GPU_ENGINE_TYPE
Description: By default, select engine type automatically
auto - select automatically
compute - use compute engine
copy_high_bandwidth - use high-bandwidth copy engine
copy_low_latency - use low-latency copy engine
Default: MPIR_CVAR_CH4_IPC_GPU_ENGINE_TYPE_auto
MPIR_CVAR_CH4_IPC_GPU_READ_WRITE_PROTOCOL
Aliases: MPIR_PARAM_CH4_IPC_GPU_READ_WRITE_PROTOCOL
MPICH_CH4_IPC_GPU_READ_WRITE_PROTOCOL
Description: By default, use read protocol.
auto - select automatically
read - use read protocol
write - use write protocol if remote device is visible
Default: MPIR_CVAR_CH4_IPC_GPU_READ_WRITE_PROTOCOL_read
MPIR_CVAR_CH4_IPC_GPU_RMA_ENGINE_TYPE
Aliases: MPIR_PARAM_CH4_IPC_GPU_RMA_ENGINE_TYPE
MPICH_CH4_IPC_GPU_RMA_ENGINE_TYPE
Description: By default, select engine type automatically
yaksa - don't select, use yaksa
auto - select automatically
compute - use compute engine
copy_high_bandwidth - use high-bandwidth copy engine
copy_low_latency - use low-latency copy engine
Default: MPIR_CVAR_CH4_IPC_GPU_RMA_ENGINE_TYPE_auto
MPIR_CVAR_CH4_IPC_MAP_REPEAT_ADDR
Aliases: MPIR_PARAM_CH4_IPC_MAP_REPEAT_ADDR
MPICH_CH4_IPC_MAP_REPEAT_ADDR
Description: Enable to track how often a buffer is being sent
repeatedly. This will be used in determine whether to use IPC
algorithm to deliver the message. The choice will depend on the IPC
driver. In the case of high-latency buffers such as GPU device
buffer, we will enable IPC if EITHER the message size is above a
threshold or the message buffer is being repeated. On the other
hand, if the address mapping overhead is relatively high, such as
the case for XPMEM, we will enable IPC when BOTH conditions --
message size and repeat count -- are met.
Default: 1
MPIR_CVAR_CH4_XPMEM_ENABLE
Aliases: MPIR_PARAM_CH4_XPMEM_ENABLE
MPICH_CH4_XPMEM_ENABLE
Description: To manually disable XPMEM set to 0. The environment
variable is valid only when the XPMEM submodule is enabled.
Default: 1
MPIR_CVAR_CH4_IPC_XPMEM_P2P_THRESHOLD
Aliases: MPIR_PARAM_CH4_IPC_XPMEM_P2P_THRESHOLD
MPICH_CH4_IPC_XPMEM_P2P_THRESHOLD
Description: If a send message size is greater than or equal to
MPIR_CVAR_CH4_IPC_XPMEM_P2P_THRESHOLD (in bytes), then enable
XPMEM-based single copy protocol for intranode communication. The
environment variable is valid only when the XPMEM submodule is
enabled.
Default: 65536
MPIR_CVAR_CH4_IPC_XPMEM_P2P_UPPER_THRESHOLD
Aliases: MPIR_PARAM_CH4_IPC_XPMEM_P2P_UPPER_THRESHOLD
MPICH_CH4_IPC_XPMEM_P2P_UPPER_THRESHOLD
Description: If a send message size is greater than or equal to
MPIR_CVAR_CH4_IPC_XPMEM_P2P_UPPER_THRESHOLD (in bytes), then skip
XPMEM-based single copy protocol for intranode communication. The
environment variable is valid only when the XPMEM submodule is
enabled. The default is -1, which does not limit the upper
threshold.
Default: -1
MPIR_CVAR_BCAST_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_BCAST_POSIX_INTRA_ALGORITHM
MPICH_BCAST_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node bcast
mpir - Fallback to MPIR collectives
release_gather - Force shm optimized algo using release, gather
primitives
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE)
ipc_read - Uses read-based collective with ipc
Default: MPIR_CVAR_BCAST_POSIX_INTRA_ALGORITHM_auto
MPIR_CVAR_IBCAST_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IBCAST_POSIX_INTRA_ALGORITHM
MPICH_IBCAST_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node bcast
mpir - Fallback to MPIR collectives
release_gather - Force shm optimized algo using release, gather
primitives
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE)
Default: MPIR_CVAR_IBCAST_POSIX_INTRA_ALGORITHM_auto
MPIR_CVAR_REDUCE_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_REDUCE_POSIX_INTRA_ALGORITHM
MPICH_REDUCE_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node reduce
mpir - Fallback to MPIR collectives
release_gather - Force shm optimized algo using release, gather
primitives
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE)
Default: MPIR_CVAR_REDUCE_POSIX_INTRA_ALGORITHM_auto
MPIR_CVAR_IREDUCE_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_IREDUCE_POSIX_INTRA_ALGORITHM
MPICH_IREDUCE_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node reduce
mpir - Fallback to MPIR collectives
release_gather - Force shm optimized algo using release, gather
primitives
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE)
Default: MPIR_CVAR_IREDUCE_POSIX_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLREDUCE_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLREDUCE_POSIX_INTRA_ALGORITHM
MPICH_ALLREDUCE_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node allreduce
mpir - Fallback to MPIR collectives
release_gather - Force shm optimized algo using release, gather
primitives
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE)
Default: MPIR_CVAR_ALLREDUCE_POSIX_INTRA_ALGORITHM_auto
MPIR_CVAR_BARRIER_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_BARRIER_POSIX_INTRA_ALGORITHM
MPICH_BARRIER_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node barrier
mpir - Fallback to MPIR collectives
release_gather - Force shm optimized algo using release, gather
primitives
auto - Internal algorithm selection (can be overridden with
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE)
Default: MPIR_CVAR_BARRIER_POSIX_INTRA_ALGORITHM_auto
MPIR_CVAR_ALLTOALL_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLTOALL_POSIX_INTRA_ALGORITHM
MPICH_ALLTOALL_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node alltoall
mpir - Fallback to MPIR collectives (default)
ipc_read - Uses read-based collective with ipc
Default: MPIR_CVAR_ALLTOALL_POSIX_INTRA_ALGORITHM_mpir
MPIR_CVAR_ALLGATHER_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLGATHER_POSIX_INTRA_ALGORITHM
MPICH_ALLGATHER_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node allgather
mpir - Fallback to MPIR collectives (default)
ipc_read - Uses read-based collective with ipc
Default: MPIR_CVAR_ALLGATHER_POSIX_INTRA_ALGORITHM_mpir
MPIR_CVAR_ALLGATHERV_POSIX_INTRA_ALGORITHM
Aliases: MPIR_PARAM_ALLGATHERV_POSIX_INTRA_ALGORITHM
MPICH_ALLGATHERV_POSIX_INTRA_ALGORITHM
Description: Variable to select algorithm for intra-node allgatherv
mpir - Fallback to MPIR collectives (default)
ipc_read - Uses read-based collective with ipc
Default: MPIR_CVAR_ALLGATHERV_POSIX_INTRA_ALGORITHM_mpir
MPIR_CVAR_POSIX_POLL_FREQUENCY
Aliases: MPIR_PARAM_POSIX_POLL_FREQUENCY
MPICH_POSIX_POLL_FREQUENCY
Description: This cvar sets the number of loops before the yield
function is called. A value of 0 disables yielding.
Default: 1000
MPIR_CVAR_BCAST_IPC_READ_MSG_SIZE_THRESHOLD
Aliases: MPIR_PARAM_BCAST_IPC_READ_MSG_SIZE_THRESHOLD
MPICH_BCAST_IPC_READ_MSG_SIZE_THRESHOLD
Description: Use gpu ipc read bcast only when the message size is
larger than this threshold.
Default: 256
MPIR_CVAR_ALLTOALL_IPC_READ_MSG_SIZE_THRESHOLD
Aliases: MPIR_PARAM_ALLTOALL_IPC_READ_MSG_SIZE_THRESHOLD
MPICH_ALLTOALL_IPC_READ_MSG_SIZE_THRESHOLD
Description: Use gpu ipc read alltoall only when the message size is
larger than this threshold.
Default: 256
MPIR_CVAR_ALLGATHER_IPC_READ_MSG_SIZE_THRESHOLD
Aliases: MPIR_PARAM_ALLGATHER_IPC_READ_MSG_SIZE_THRESHOLD
MPICH_ALLGATHER_IPC_READ_MSG_SIZE_THRESHOLD
Description: Use gpu ipc read allgather only when the message size is
larger than this threshold.
Default: 256
MPIR_CVAR_ALLGATHERV_IPC_READ_MSG_SIZE_THRESHOLD
Aliases: MPIR_PARAM_ALLGATHERV_IPC_READ_MSG_SIZE_THRESHOLD
MPICH_ALLGATHERV_IPC_READ_MSG_SIZE_THRESHOLD
Description: Use gpu ipc read allgatherv only when the message size is
larger than this threshold.
Default: 256
MPIR_CVAR_POSIX_NUM_COLLS_THRESHOLD
Aliases: MPIR_PARAM_POSIX_NUM_COLLS_THRESHOLD
MPICH_POSIX_NUM_COLLS_THRESHOLD
Description: Use posix optimized collectives (release_gather) only when
the total number of Bcast, Reduce, Barrier, and Allreduce calls on
the node level communicator is more than this threshold.
Default: 5
MPIR_CVAR_CH4_SHM_POSIX_EAGER
Aliases: MPIR_PARAM_CH4_SHM_POSIX_EAGER
MPICH_CH4_SHM_POSIX_EAGER
Description: If non-empty, this cvar specifies which shm posix eager
module to use
Default: ""
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE
Aliases: MPIR_PARAM_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE
MPICH_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE
Description: Defines the location of tuning file.
Default: ""
MPIR_CVAR_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE_GPU
Aliases: MPIR_PARAM_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE_GPU
MPICH_CH4_POSIX_COLL_SELECTION_TUNING_JSON_FILE_GPU
Description: Defines the location of tuning file for GPU.
Default: ""
MPIR_CVAR_CH4_SHM_POSIX_TOPO_ENABLE
Aliases: MPIR_PARAM_CH4_SHM_POSIX_TOPO_ENABLE
MPICH_CH4_SHM_POSIX_TOPO_ENABLE
Description: Controls topology-aware communication in POSIX.
Default: 1
MPIR_CVAR_CH4_SHM_POSIX_IQUEUE_NUM_CELLS
Aliases: MPIR_PARAM_CH4_SHM_POSIX_IQUEUE_NUM_CELLS
MPICH_CH4_SHM_POSIX_IQUEUE_NUM_CELLS
Description: The number of cells used for the depth of the iqueue.
Default: 64
MPIR_CVAR_CH4_SHM_POSIX_IQUEUE_CELL_SIZE
Aliases: MPIR_PARAM_CH4_SHM_POSIX_IQUEUE_CELL_SIZE
MPICH_CH4_SHM_POSIX_IQUEUE_CELL_SIZE
Description: Size of each cell.
Default: 8192
MPIR_CVAR_COLL_SHM_LIMIT_PER_NODE
Aliases: MPIR_PARAM_COLL_SHM_LIMIT_PER_NODE
MPICH_COLL_SHM_LIMIT_PER_NODE
Description: Maximum shared memory created per node for optimized
intra-node collectives (in KB)
Default: 65536
MPIR_CVAR_BCAST_INTRANODE_BUFFER_TOTAL_SIZE
Aliases: MPIR_PARAM_BCAST_INTRANODE_BUFFER_TOTAL_SIZE
MPICH_BCAST_INTRANODE_BUFFER_TOTAL_SIZE
Description: Total size of the bcast buffer (in bytes)
Default: 32768
MPIR_CVAR_BCAST_INTRANODE_NUM_CELLS
Aliases: MPIR_PARAM_BCAST_INTRANODE_NUM_CELLS
MPICH_BCAST_INTRANODE_NUM_CELLS
Description: Number of cells the bcast buffer is divided into
Default: 4
MPIR_CVAR_REDUCE_INTRANODE_BUFFER_TOTAL_SIZE
Aliases: MPIR_PARAM_REDUCE_INTRANODE_BUFFER_TOTAL_SIZE
MPICH_REDUCE_INTRANODE_BUFFER_TOTAL_SIZE
Description: Total size of the reduce buffer per rank (in bytes)
Default: 32768
MPIR_CVAR_REDUCE_INTRANODE_NUM_CELLS
Aliases: MPIR_PARAM_REDUCE_INTRANODE_NUM_CELLS
MPICH_REDUCE_INTRANODE_NUM_CELLS
Description: Number of cells the reduce buffer is divided into, for
each rank
Default: 4
MPIR_CVAR_BCAST_INTRANODE_TREE_KVAL
Aliases: MPIR_PARAM_BCAST_INTRANODE_TREE_KVAL
MPICH_BCAST_INTRANODE_TREE_KVAL
Description: K value for the kary/knomial tree for intra-node bcast
Default: 64
MPIR_CVAR_BCAST_INTRANODE_TREE_TYPE
Aliases: MPIR_PARAM_BCAST_INTRANODE_TREE_TYPE
MPICH_BCAST_INTRANODE_TREE_TYPE
Description: Tree type for intra-node bcast tree kary - kary tree
type knomial_1 - knomial_1 tree type (ranks are added in order from
the left side) knomial_2 - knomial_2 tree type (ranks are added in
order from the right side) knomial_2 is only supported with non
topology aware trees.
Default: "kary"
MPIR_CVAR_REDUCE_INTRANODE_MSG_SIZE_THRESHOLD
Aliases: MPIR_PARAM_REDUCE_INTRANODE_MSG_SIZE_THRESHOLD
MPICH_REDUCE_INTRANODE_MSG_SIZE_THRESHOLD
Description: MPIR_CVAR_REDUCE_INTRANODE_TREE_KVAL and
MPIR_CVAR_REDUCE_INTRANODE_TREE_TYPE are used when the message size
is smaller than or equal to this threshold;
MPIR_CVAR_REDUCE_INTRANODE_TREE_KVAL_LARGE and
MPIR_CVAR_REDUCE_INTRANODE_TREE_TYPE_LARGE are used when the
message size is larger than this threshold.
Default: 2048
MPIR_CVAR_REDUCE_INTRANODE_TREE_KVAL
Aliases: MPIR_PARAM_REDUCE_INTRANODE_TREE_KVAL
MPICH_REDUCE_INTRANODE_TREE_KVAL
Description: K value for the kary/knomial tree for intra-node reduce
Default: 4
MPIR_CVAR_REDUCE_INTRANODE_TREE_KVAL_LARGE
Aliases: MPIR_PARAM_REDUCE_INTRANODE_TREE_KVAL_LARGE
MPICH_REDUCE_INTRANODE_TREE_KVAL_LARGE
Description: K value for the kary/knomial tree for intra-node reduce.
Used for large messages.
Default: 2
MPIR_CVAR_REDUCE_INTRANODE_TREE_TYPE
Aliases: MPIR_PARAM_REDUCE_INTRANODE_TREE_TYPE
MPICH_REDUCE_INTRANODE_TREE_TYPE
Description: Tree type for intra-node reduce tree kary - kary tree
type knomial_1 - knomial_1 tree type (ranks are added in order from
the left side) knomial_2 - knomial_2 tree type (ranks are added in
order from the right side) knomial_2 is only supported with non
topology aware trees.
Default: "kary"
MPIR_CVAR_REDUCE_INTRANODE_TREE_TYPE_LARGE
Aliases: MPIR_PARAM_REDUCE_INTRANODE_TREE_TYPE_LARGE
MPICH_REDUCE_INTRANODE_TREE_TYPE_LARGE
Description: Tree type for intra-node reduce tree. Used for large
messages. kary - kary tree type knomial_1 - knomial_1 tree
type (ranks are added in order from the left side) knomial_2 -
knomial_2 tree type (ranks are added in order from the right side)
knomial_2 is only supported with non topology aware trees.
Default: "kary"
MPIR_CVAR_ENABLE_INTRANODE_TOPOLOGY_AWARE_TREES
Aliases: MPIR_PARAM_ENABLE_INTRANODE_TOPOLOGY_AWARE_TREES
MPICH_ENABLE_INTRANODE_TOPOLOGY_AWARE_TREES
Description: Enable collective specific intra-node trees which leverage
the memory hierarchy of a machine. Depends on hwloc to extract the
binding information of each rank. Pick a leader rank per package
(socket), then create a per_package tree for ranks on a same
package, package leaders tree for package leaders. For Bcast -
Assemble the per_package and package_leaders tree in such a way
that leaders interact among themselves first before interacting
with package local ranks. Both the package_leaders and per_package
trees are left skewed (children are added from left to right, first
child to be added is the first one to be processed in traversal)
For Reduce - Assemble the per_package and package_leaders tree in
such a way that a leader rank interacts with its package local
ranks first, then with the other package leaders. Both the
per_package and package_leaders tree is right skewed (children are
added in reverse order, first child to be added is the last one to
be processed in traversal) The tree radix and tree type of
package_leaders and per_package tree is
MPIR_CVAR_BCAST{REDUCE}_INTRANODE_TREE_KVAL and
MPIR_CVAR_BCAST{REDUCE}_INTRANODE_TREE_TYPE respectively for bast
and reduce. But of as now topology aware trees are only kary and
knomial_1. knomial_2 is not implemented.
Default: 1
MPIR_CVAR_BARRIER_COMPOSITION
Aliases: MPIR_PARAM_BARRIER_COMPOSITION
MPICH_BARRIER_COMPOSITION
Description: Select composition (inter_node + intra_node) for Barrier 0
Auto selection 1 NM + SHM 2 NM only
Default: 0
MPIR_CVAR_BCAST_COMPOSITION
Aliases: MPIR_PARAM_BCAST_COMPOSITION
MPICH_BCAST_COMPOSITION
Description: Select composition (inter_node + intra_node) for Bcast 0
Auto selection 1 NM + SHM with explicit send-recv between rank 0
and root 2 NM + SHM without the explicit send-recv 3 NM only
Default: 0
MPIR_CVAR_ALLREDUCE_COMPOSITION
Aliases: MPIR_PARAM_ALLREDUCE_COMPOSITION
MPICH_ALLREDUCE_COMPOSITION
Description: Select composition (inter_node + intra_node) for Allreduce
0 Auto selection 1 NM + SHM with reduce + bcast 2 NM only
composition 3 SHM only composition 4 Multi leaders based inter node
+ intra node composition
Default: 0
MPIR_CVAR_ALLGATHER_COMPOSITION
Aliases: MPIR_PARAM_ALLGATHER_COMPOSITION
MPICH_ALLGATHER_COMPOSITION
Description: Select composition (inter_node + intra_node) for Allgather
0 Auto selection 1 Multi leaders based inter node + intra node
composition 2 NM only composition
Default: 0
MPIR_CVAR_ALLTOALL_COMPOSITION
Aliases: MPIR_PARAM_ALLTOALL_COMPOSITION
MPICH_ALLTOALL_COMPOSITION
Description: Select composition (inter_node + intra_node) for Alltoall
0 Auto selection 1 Multi leaders based inter node + intra node
composition 2 NM only composition
Default: 0
MPIR_CVAR_REDUCE_COMPOSITION
Aliases: MPIR_PARAM_REDUCE_COMPOSITION
MPICH_REDUCE_COMPOSITION
Description: Select composition (inter_node + intra_node) for Reduce 0
Auto selection 1 NM + SHM with explicit send-recv between rank 0
and root 2 NM + SHM without the explicit send-recv 3 NM only
Default: 0
MPIR_CVAR_ALLTOALL_SHM_PER_RANK
Aliases: MPIR_PARAM_ALLTOALL_SHM_PER_RANK
MPICH_ALLTOALL_SHM_PER_RANK
Description: Shared memory region per rank for multi-leaders based
composition for MPI_Alltoall (in bytes)
Default: 4096
MPIR_CVAR_ALLGATHER_SHM_PER_RANK
Aliases: MPIR_PARAM_ALLGATHER_SHM_PER_RANK
MPICH_ALLGATHER_SHM_PER_RANK
Description: Shared memory region per rank for multi-leaders based
composition for MPI_Allgather (in bytes)
Default: 4096
MPIR_CVAR_NUM_MULTI_LEADS
Aliases: MPIR_PARAM_NUM_MULTI_LEADS
MPICH_NUM_MULTI_LEADS
Description: Number of leader ranks per node to be used for
multi-leaders based collective algorithms
Default: 4
MPIR_CVAR_ALLREDUCE_SHM_PER_LEADER
Aliases: MPIR_PARAM_ALLREDUCE_SHM_PER_LEADER
MPICH_ALLREDUCE_SHM_PER_LEADER
Description: Shared memory region per node-leader for multi-leaders
based composition for MPI_Allreduce (in bytes) If it is undefined
by the user, it is set to the message size of the first call to the
algorithm. Max shared memory size is limited to 4MB.
Default: -1
MPIR_CVAR_ALLREDUCE_CACHE_PER_LEADER
Aliases: MPIR_PARAM_ALLREDUCE_CACHE_PER_LEADER
MPICH_ALLREDUCE_CACHE_PER_LEADER
Description: Amount of data reduced in allreduce delta composition's
reduce local step (in bytes). Smaller msg size per leader avoids
cache misses and improves performance. Experiments indicate 512 to
be the best value.
Default: 512
MPIR_CVAR_ALLREDUCE_LOCAL_COPY_OFFSETS
Aliases: MPIR_PARAM_ALLREDUCE_LOCAL_COPY_OFFSETS
MPICH_ALLREDUCE_LOCAL_COPY_OFFSETS
Description: number of offsets in the allreduce delta composition's
local copy The value of 2 performed the best in our 2 NIC test
cases.
Default: 2
MPIR_CVAR_CH4_NETMOD
Aliases: MPIR_PARAM_CH4_NETMOD
MPICH_CH4_NETMOD
Description: If non-empty, this cvar specifies which network module to
use
Default: ""
MPIR_CVAR_CH4_SHM
Aliases: MPIR_PARAM_CH4_SHM
MPICH_CH4_SHM
Description: If non-empty, this cvar specifies which shm module to use
Default: ""
MPIR_CVAR_CH4_ROOTS_ONLY_PMI
Aliases: MPIR_PARAM_CH4_ROOTS_ONLY_PMI
MPICH_CH4_ROOTS_ONLY_PMI
Description: Enables an optimized business card exchange over PMI for
node root processes only.
Default: 1
MPIR_CVAR_CH4_RUNTIME_CONF_DEBUG
Aliases: MPIR_PARAM_CH4_RUNTIME_CONF_DEBUG
MPICH_CH4_RUNTIME_CONF_DEBUG
Description: If enabled, CH4-level runtime configurations are printed
out
Default: 0
MPIR_CVAR_CH4_MT_MODEL
Aliases: MPIR_PARAM_CH4_MT_MODEL
MPICH_CH4_MT_MODEL
Description: Specifies the CH4 multi-threading model. Possible values
are: direct (default) lockless
Default: ""
MPIR_CVAR_CH4_COLL_SELECTION_TUNING_JSON_FILE
Aliases: MPIR_PARAM_CH4_COLL_SELECTION_TUNING_JSON_FILE
MPICH_CH4_COLL_SELECTION_TUNING_JSON_FILE
Description: Defines the location of tuning file.
Default: ""
MPIR_CVAR_CH4_COLL_SELECTION_TUNING_JSON_FILE_GPU
Aliases: MPIR_PARAM_CH4_COLL_SELECTION_TUNING_JSON_FILE_GPU
MPICH_CH4_COLL_SELECTION_TUNING_JSON_FILE_GPU
Description: Defines the location of tuning file for GPU.
Default: ""
MPIR_CVAR_CH4_IOV_DENSITY_MIN
Aliases: MPIR_PARAM_CH4_IOV_DENSITY_MIN
MPICH_CH4_IOV_DENSITY_MIN
Description: Defines the threshold of high-density datatype. The
density is calculated by (datatype_size /
datatype_num_contig_blocks).
Default: 16384
MPIR_CVAR_CH4_PACK_BUFFER_SIZE
Aliases: MPIR_PARAM_CH4_PACK_BUFFER_SIZE
MPICH_CH4_PACK_BUFFER_SIZE
Description: Specifies the number of buffers for packing/unpacking
active messages in each block of the pool. The size here should be
greater or equal to the max of the eager buffer limit of SHM and
NETMOD.
Default: 16384
MPIR_CVAR_CH4_NUM_PACK_BUFFERS_PER_CHUNK
Aliases: MPIR_PARAM_CH4_NUM_PACK_BUFFERS_PER_CHUNK
MPICH_CH4_NUM_PACK_BUFFERS_PER_CHUNK
Description: Specifies the number of buffers for packing/unpacking
active messages in each block of the pool.
Default: 64
MPIR_CVAR_CH4_MAX_NUM_PACK_BUFFERS
Aliases: MPIR_PARAM_CH4_MAX_NUM_PACK_BUFFERS
MPICH_CH4_MAX_NUM_PACK_BUFFERS
Description: Specifies the max number of buffers for packing/unpacking
buffers in the pool. Use 0 for unlimited.
Default: 0
MPIR_CVAR_CH4_GPU_COLL_SWAP_BUFFER_SZ
Aliases: MPIR_PARAM_CH4_GPU_COLL_SWAP_BUFFER_SZ
MPICH_CH4_GPU_COLL_SWAP_BUFFER_SZ
Description: Specifies the buffer size (in bytes) for GPU collectives
data transfer.
Default: 1048576
MPIR_CVAR_CH4_GPU_COLL_NUM_BUFFERS_PER_CHUNK
Aliases: MPIR_PARAM_CH4_GPU_COLL_NUM_BUFFERS_PER_CHUNK
MPICH_CH4_GPU_COLL_NUM_BUFFERS_PER_CHUNK
Description: Specifies the number of buffers for GPU collectives data
transfer in each block/chunk of the pool.
Default: 1
MPIR_CVAR_CH4_GPU_COLL_MAX_NUM_BUFFERS
Aliases: MPIR_PARAM_CH4_GPU_COLL_MAX_NUM_BUFFERS
MPICH_CH4_GPU_COLL_MAX_NUM_BUFFERS
Description: Specifies the total number of buffers for GPU collectives
data transfer.
Default: 256
MPIR_CVAR_CH4_GLOBAL_PROGRESS
Aliases: MPIR_PARAM_CH4_GLOBAL_PROGRESS
MPICH_CH4_GLOBAL_PROGRESS
Description: If on, poll global progress every once a while. With
per-vci configuration, turning global progress off may improve the
threading performance.
Default: 1
MPIR_CVAR_CH4_PROGRESS_THROTTLE
Aliases: MPIR_PARAM_CH4_PROGRESS_THROTTLE
MPICH_CH4_PROGRESS_THROTTLE
Description: When running high PPN (high number of processes on a
single node), keep polling progress may monopolize the underlying
atomic queue and preventing packets being enqueued. A work around
is to hold back progress polling. Setting
MPIR_CVAR_CH4_PROGRESS_THROTTLE=true will throttle the progress
polling by injecting usleep(1) every once a while.
Default: 0
MPIR_CVAR_CH4_PROGRESS_THROTTLE_NO_PROGRESS_COUNT
Aliases: MPIR_PARAM_CH4_PROGRESS_THROTTLE_NO_PROGRESS_COUNT
MPICH_CH4_PROGRESS_THROTTLE_NO_PROGRESS_COUNT
Description: When MPIR_CVAR_CH4_PROGRESS_THROTTLE=true,
MPIR_CVAR_CH4_PROGRESS_THROTTLE_NO_PROGRESS_COUNT is the number of
consecutive polls that must fail to make progress before calling
usleep(1) in the progress. A higher value makes the usleep less
frequent, and a lower value makes the usleep more frequent.
Default: 4096
MPIR_CVAR_CH4_COMM_CONNECT_TIMEOUT
Aliases: MPIR_PARAM_CH4_COMM_CONNECT_TIMEOUT
MPICH_CH4_COMM_CONNECT_TIMEOUT
Description: The default time out period in seconds for a connection
attempt to the server communicator where the named port exists but
no pending accept. User can change the value for a specified
connection through its info argument.
Default: 180
MPIR_CVAR_CH4_ENABLE_STREAM_WORKQ
Aliases: MPIR_PARAM_CH4_ENABLE_STREAM_WORKQ
MPICH_CH4_ENABLE_STREAM_WORKQ
Description: Enable stream enqueue operations via stream work queue.
Requires progress thread on the corresponding MPIX stream.
Reference: MPIX_Stream_progress and MPIX_Start_progress_thread.
Default: 0
MPIR_CVAR_CH4_NUM_VCIS
Aliases: MPIR_PARAM_CH4_NUM_VCIS
MPICH_CH4_NUM_VCIS
Description: Sets the number of VCIs to be implicitly used (should be a
subset of MPIDI_CH4_MAX_VCIS).
Default: 1
MPIR_CVAR_CH4_RESERVE_VCIS
Aliases: MPIR_PARAM_CH4_RESERVE_VCIS
MPICH_CH4_RESERVE_VCIS
Description: Sets the number of VCIs that user can explicitly allocate
(should be a subset of MPIDI_CH4_MAX_VCIS).
Default: 0
MPIR_CVAR_CH4_RMA_MEM_EFFICIENT
Aliases: MPIR_PARAM_CH4_RMA_MEM_EFFICIENT
MPICH_CH4_RMA_MEM_EFFICIENT
Description: If true, memory-saving mode is on, per-target object is
released at the epoch end call. If false, performance-efficient
mode is on, all allocated target objects are cached and freed at
win_finalize.
Default: 0
MPIR_CVAR_CH4_RMA_ENABLE_DYNAMIC_AM_PROGRESS
Aliases: MPIR_PARAM_CH4_RMA_ENABLE_DYNAMIC_AM_PROGRESS
MPICH_CH4_RMA_ENABLE_DYNAMIC_AM_PROGRESS
Description: If true, allows RMA synchronization calls to dynamically
reduce the frequency of internal progress polling for incoming RMA
active messages received on the target process. The RMA
synchronization call initially polls progress with a low frequency
(defined by MPIR_CVAR_CH4_RMA_AM_PROGRESS_LOW_FREQ_INTERVAL) to
reduce synchronization overhead. Once any RMA active message has
been received, it will always poll progress once at every
synchronization call to ensure prompt target-side progress.
Effective only for passive target synchronization
MPI_Win_flush{_all} and MPI_Win_flush_local{_all}.
Default: 0
MPIR_CVAR_CH4_RMA_AM_PROGRESS_INTERVAL
Aliases: MPIR_PARAM_CH4_RMA_AM_PROGRESS_INTERVAL
MPICH_CH4_RMA_AM_PROGRESS_INTERVAL
Description: Specifies a static interval of progress polling for
incoming RMA active messages received on the target process.
Effective only for passive-target synchronization
MPI_Win_flush{_all} and MPI_Win_flush_local{_all}. Interval
indicates the number of performed flush calls before polling. It is
counted globally across all windows. Invalid when
MPIR_CVAR_CH4_RMA_ENABLE_DYNAMIC_AM_PROGRESS is true.
Default: 1
MPIR_CVAR_CH4_RMA_AM_PROGRESS_LOW_FREQ_INTERVAL
Aliases: MPIR_PARAM_CH4_RMA_AM_PROGRESS_LOW_FREQ_INTERVAL
MPICH_CH4_RMA_AM_PROGRESS_LOW_FREQ_INTERVAL
Description: Specifies the interval of progress polling with low
frequency for incoming RMA active message received on the target
process. Effective only for passive-target synchronization
MPI_Win_flush{_all} and MPI_Win_flush_local{_all}. Interval
indicates the number of performed flush calls before polling. It is
counted globally across all windows. Used when
MPIR_CVAR_CH4_RMA_ENABLE_DYNAMIC_AM_PROGRESS is true.
Default: 100
MPIR_CVAR_GENQ_SHMEM_POOL_FREE_QUEUE_SENDER_SIDE
Aliases: MPIR_PARAM_GENQ_SHMEM_POOL_FREE_QUEUE_SENDER_SIDE
MPICH_GENQ_SHMEM_POOL_FREE_QUEUE_SENDER_SIDE
Description: The genq shmem code allocates pools of cells on each
process and, when needed, a cell is removed from the pool and
passed to another process. This can happen by either removing a
cell from the pool of the sending process or from the pool of the
receiving process. This CVAR determines which pool to use. If true,
the cell will come from the sender-side. If false, the cell will
com from the receiver-side. There are specific advantages of using
receiver-side cells when combined with the "avx" fast configure
option, which allows MPICH to use AVX streaming copy
intrintrinsics, when available, to avoid polluting the cache of the
sender with the data being copied to the receiver. Using
receiver-side cells does have the trade-off of requiring an MPMC
lock for the free queue rather than an MPSC lock, which is used for
sender-side cells. Initial performance analysis shows that using
the MPMC lock in this case had no significant performance loss. By
default, the queue will continue to use sender-side queues until
the performance impact is verified.
Default: 1
MPIR_CVAR_ENABLE_HCOLL
Aliases: MPIR_PARAM_ENABLE_HCOLL
MPICH_ENABLE_HCOLL
Description: Enable hcoll collective support.
Default: 0
MPIR_CVAR_COLL_SCHED_DUMP
Aliases: MPIR_PARAM_COLL_SCHED_DUMP
MPICH_COLL_SCHED_DUMP
Description: Print schedule data for nonblocking collective operations.
Default: 0
MPIR_CVAR_SHM_RANDOM_ADDR_RETRY
Aliases: MPIR_PARAM_SHM_RANDOM_ADDR_RETRY
MPICH_SHM_RANDOM_ADDR_RETRY
Description: The default number of retries for generating a random
address. A retrying involves only local operations.
Default: 100
MPIR_CVAR_SHM_SYMHEAP_RETRY
Aliases: MPIR_PARAM_SHM_SYMHEAP_RETRY
MPICH_SHM_SYMHEAP_RETRY
Description: The default number of retries for allocating a symmetric
heap in shared memory. A retrying involves collective communication
over the group in the shared memory.
Default: 100
MPIR_CVAR_ENABLE_HEAVY_YIELD
Aliases: MPIR_PARAM_ENABLE_HEAVY_YIELD
MPICH_ENABLE_HEAVY_YIELD
Description: If enabled, use nanosleep to ensure other threads have a
chance to grab the lock. Note: this may not work with some thread
runtimes, e.g. non-preemptive user-level threads.
Default: 0
|