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
|
.. _ch_ksp:
KSP: Linear System Solvers
--------------------------
The ``KSP`` object is the heart of PETSc, because it provides uniform
and efficient access to all of the package’s linear system solvers,
including parallel and sequential, direct and iterative. ``KSP`` is
intended for solving systems of the form
.. math::
:label: eq_axeqb
A x = b,
where :math:`A` denotes the matrix representation of a linear operator,
:math:`b` is the right-hand-side vector, and :math:`x` is the solution
vector. ``KSP`` uses the same calling sequence for both direct and
iterative solution of a linear system. In addition, particular solution
techniques and their associated options can be selected at runtime.
The combination of a Krylov subspace method and a preconditioner is at
the center of most modern numerical codes for the iterative solution of
linear systems. Many textbooks (e.g. :cite:`fgn` :cite:`vandervorst2003`, or :cite:`saad2003`) provide an
overview of the theory of such methods.
The ``KSP`` package, discussed in
:any:`sec_ksp`, provides many popular Krylov subspace
iterative methods; the ``PC`` module, described in
:any:`sec_pc`, includes a variety of preconditioners.
.. _sec_usingksp:
Using KSP
~~~~~~~~~
To solve a linear system with ``KSP``, one must first create a solver
context with the command
.. code-block::
KSPCreate(MPI_Comm comm,KSP *ksp);
Here ``comm`` is the MPI communicator and ``ksp`` is the newly formed
solver context. Before actually solving a linear system with ``KSP``,
the user must call the following routine to set the matrices associated
with the linear system:
.. code-block::
KSPSetOperators(KSP ksp,Mat Amat,Mat Pmat);
The argument ``Amat``, representing the matrix that defines the linear
system, is a symbolic placeholder for any kind of matrix or operator. In
particular, ``KSP`` *does* support matrix-free methods. The routine
``MatCreateShell()`` in :any:`sec_matrixfree`
provides further information regarding matrix-free methods. Typically,
the matrix from which the preconditioner is to be constructed, ``Pmat``,
is the same as the matrix that defines the linear system, ``Amat``;
however, occasionally these matrices differ (for instance, when a
preconditioning matrix is obtained from a lower order method than that
employed to form the linear system matrix).
Much of the power of ``KSP`` can be accessed through the single routine
.. code-block::
KSPSetFromOptions(KSP ksp);
This routine accepts the option ``-help`` as well as any of
the ``KSP`` and ``PC`` options discussed below. To solve a linear
system, one sets the right hand size and solution vectors using the
command
.. code-block::
KSPSolve(KSP ksp,Vec b,Vec x);
where ``b`` and ``x`` respectively denote the right-hand side and
solution vectors. On return, the iteration number at which the iterative
process stopped can be obtained using
.. code-block::
KSPGetIterationNumber(KSP ksp, PetscInt *its);
Note that this does not state that the method converged at this
iteration: it can also have reached the maximum number of iterations, or
have diverged.
:any:`sec_convergencetests` gives more details
regarding convergence testing. Note that multiple linear solves can be
performed by the same ``KSP`` context. Once the ``KSP`` context is no
longer needed, it should be destroyed with the command
.. code-block::
KSPDestroy(KSP *ksp);
The above procedure is sufficient for general use of the ``KSP``
package. One additional step is required for users who wish to customize
certain preconditioners (e.g., see :any:`sec_bjacobi`) or
to log certain performance data using the PETSc profiling facilities (as
discussed in :any:`ch_profiling`). In this case, the user can
optionally explicitly call
.. code-block::
KSPSetUp(KSP ksp);
before calling ``KSPSolve()`` to perform any setup required for the
linear solvers. The explicit call of this routine enables the separate
profiling of any computations performed during the set up phase, such
as incomplete factorization for the ILU preconditioner.
The default solver within ``KSP`` is restarted GMRES, ``KSPGMRES``, preconditioned for
the uniprocess case with ILU(0), and for the multiprocess case with the
block Jacobi method (with one block per process, each of which is solved
with ILU(0)). A variety of other solvers and options are also available.
To allow application programmers to set any of the preconditioner or
Krylov subspace options directly within the code, we provide routines
that extract the ``PC`` and ``KSP`` contexts,
.. code-block::
KSPGetPC(KSP ksp,PC *pc);
The application programmer can then directly call any of the ``PC`` or
``KSP`` routines to modify the corresponding default options.
To solve a linear system with a direct solver (supported by
PETSc for sequential matrices, and by several external solvers through
PETSc interfaces, see :any:`sec_externalsol`) one may use
the options ``-ksp_type`` ``preonly`` (or the equivalent ``-ksp_type`` ``none``)
``-pc_type`` ``lu`` or ``-pc_type`` ``cholesky`` (see below).
By default, if a direct solver is used, the factorization is *not* done
in-place. This approach prevents the user from the unexpected surprise
of having a corrupted matrix after a linear solve. The routine
``PCFactorSetUseInPlace()``, discussed below, causes factorization to be
done in-place.
Solving Successive Linear Systems
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When solving multiple linear systems of the same size with the same
method, several options are available. To solve successive linear
systems having the *same* preconditioner matrix (i.e., the same data
structure with exactly the same matrix elements) but different
right-hand-side vectors, the user should simply call ``KSPSolve()``
multiple times. The preconditioner setup operations (e.g., factorization
for ILU) will be done during the first call to ``KSPSolve()`` only; such
operations will *not* be repeated for successive solves.
To solve successive linear systems that have *different* matrix values, because you
have changed the matrix values in the ``Mat`` objects you passed to ``KSPSetOperators()``,
still simply call ``KPSSolve()``. In this case the preconditioner will be recomputed
automatically. Use the option ``-ksp_reuse_preconditioner true``, or call
``KSPSetReusePreconditioner()``, to reuse the previously computed preconditioner.
For many problems, if the matrix changes values only slightly, reusing the
old preconditioner can be more efficient.
If you wish to reuse the ``KSP`` with a different sized matrix and vectors, you must
call ``KSPReset()`` before calling ``KSPSetOperators()`` with the new matrix.
.. _sec_ksp:
Krylov Methods
~~~~~~~~~~~~~~
The Krylov subspace methods accept a number of options, many of which
are discussed below. First, to set the Krylov subspace method that is to
be used, one calls the command
.. code-block::
KSPSetType(KSP ksp,KSPType method);
The type can be one of ``KSPRICHARDSON``, ``KSPCHEBYSHEV``, ``KSPCG``,
``KSPGMRES``, ``KSPTCQMR``, ``KSPBCGS``, ``KSPCGS``, ``KSPTFQMR``,
``KSPCR``, ``KSPLSQR``, ``KSPBICG``, ``KSPPREONLY`` (or the equivalent ``KSPNONE``), or others; see
:any:`tab-kspdefaults` or the ``KSPType`` man page for more.
The ``KSP`` method can also be set with the options database command
``-ksp_type``, followed by one of the options ``richardson``,
``chebyshev``, ``cg``, ``gmres``, ``tcqmr``, ``bcgs``, ``cgs``,
``tfqmr``, ``cr``, ``lsqr``, ``bicg``, ``preonly`` (or the equivalent ``none``), or others (see
:any:`tab-kspdefaults` or the ``KSPType`` man page). There are
method-specific options. For instance, for the Richardson, Chebyshev, and
GMRES methods:
.. code-block::
KSPRichardsonSetScale(KSP ksp,PetscReal scale);
KSPChebyshevSetEigenvalues(KSP ksp,PetscReal emax,PetscReal emin);
KSPGMRESSetRestart(KSP ksp,PetscInt max_steps);
The default parameter values are
``scale=1.0, emax=0.01, emin=100.0``, and ``max_steps=30``. The
GMRES restart and Richardson damping factor can also be set with the
options ``-ksp_gmres_restart <n>`` and
``-ksp_richardson_scale <factor>``.
The default technique for orthogonalization of the Krylov vectors in
GMRES is the unmodified (classical) Gram-Schmidt method, which can be
set with
.. code-block::
KSPGMRESSetOrthogonalization(KSP ksp,KSPGMRESClassicalGramSchmidtOrthogonalization);
or the options database command ``-ksp_gmres_classicalgramschmidt``. By
default this will *not* use iterative refinement to improve the
stability of the orthogonalization. This can be changed with the option
.. code-block::
KSPGMRESSetCGSRefinementType(KSP ksp,KSPGMRESCGSRefinementType type)
or via the options database with
::
-ksp_gmres_cgs_refinement_type <refine_never,refine_ifneeded,refine_always>
The values for ``KSPGMRESCGSRefinementType()`` are
``KSP_GMRES_CGS_REFINE_NEVER``, ``KSP_GMRES_CGS_REFINE_IFNEEDED``
and ``KSP_GMRES_CGS_REFINE_ALWAYS``.
One can also use modified Gram-Schmidt, by using the orthogonalization
routine ``KSPGMRESModifiedGramSchmidtOrthogonalization()`` or by using
the command line option ``-ksp_gmres_modifiedgramschmidt``.
For the conjugate gradient method with complex numbers, there are two
slightly different algorithms depending on whether the matrix is
Hermitian symmetric or truly symmetric (the default is to assume that it
is Hermitian symmetric). To indicate that it is symmetric, one uses the
command
.. code-block::
KSPCGSetType(ksp,KSP_CG_SYMMETRIC);
Note that this option is not valid for all matrices.
Some ``KSP`` types do not support preconditioning. For instance,
the CGLS algorithm does not involve a preconditioner; any preconditioner
set to work with the ``KSP`` object is ignored if ``KSPCGLS`` was
selected.
By default, ``KSP`` assumes an initial guess of zero by zeroing the
initial value for the solution vector that is given; this zeroing is
done at the call to ``KSPSolve()``. To use a nonzero initial guess, the
user *must* call
.. code-block::
KSPSetInitialGuessNonzero(KSP ksp,PetscBool flg);
.. _sec_ksppc:
Preconditioning within KSP
^^^^^^^^^^^^^^^^^^^^^^^^^^
Since the rate of convergence of Krylov projection methods for a
particular linear system is strongly dependent on its spectrum,
preconditioning is typically used to alter the spectrum and hence
accelerate the convergence rate of iterative techniques. Preconditioning
can be applied to the system :eq:`eq_axeqb` by
.. math::
:label: eq_prec
(M_L^{-1} A M_R^{-1}) \, (M_R x) = M_L^{-1} b,
where :math:`M_L` and :math:`M_R` indicate preconditioning matrices (or,
matrices from which the preconditioner is to be constructed). If
:math:`M_L = I` in :eq:`eq_prec`, right preconditioning
results, and the residual of :eq:`eq_axeqb`,
.. math:: r \equiv b - Ax = b - A M_R^{-1} \, M_R x,
is preserved. In contrast, the residual is altered for left
(:math:`M_R = I`) and symmetric preconditioning, as given by
.. math:: r_L \equiv M_L^{-1} b - M_L^{-1} A x = M_L^{-1} r.
By default, most KSP implementations use left preconditioning. Some more
naturally use other options, though. For instance, ``KSPQCG`` defaults
to use symmetric preconditioning and ``KSPFGMRES`` uses right
preconditioning by default. Right preconditioning can be activated for
some methods by using the options database command
``-ksp_pc_side right`` or calling the routine
.. code-block::
KSPSetPCSide(ksp,PC_RIGHT);
Attempting to use right preconditioning for a method that does not
currently support it results in an error message of the form
.. code-block:: none
KSPSetUp_Richardson:No right preconditioning for KSPRICHARDSON
.. list-table:: KSP Objects
:name: tab-kspdefaults
:header-rows: 1
* - Method
- KSPType
- Options Database
* - Richardson
- ``KSPRICHARDSON``
- ``richardson``
* - Chebyshev
- ``KSPCHEBYSHEV``
- ``chebyshev``
* - Conjugate Gradient :cite:`hs:52`
- ``KSPCG``
- ``cg``
* - Pipelined Conjugate Gradients :cite:`ghyselsvanroose2014`
- ``KSPPIPECG``
- ``pipecg``
* - Pipelined Conjugate Gradients (Gropp)
- ``KSPGROPPCG``
- ``groppcg``
* - Pipelined Conjugate Gradients with Residual Replacement
- ``KSPPIPECGRR``
- ``pipecgrr``
* - Conjugate Gradients for the Normal Equations
- ``KSPCGNE``
- ``cgne``
* - Flexible Conjugate Gradients :cite:`flexiblecg`
- ``KSPFCG``
- ``fcg``
* - Pipelined, Flexible Conjugate Gradients :cite:`sananschneppmay2016`
- ``KSPPIPEFCG``
- ``pipefcg``
* - Conjugate Gradients for Least Squares
- ``KSPCGLS``
- ``cgls``
* - Conjugate Gradients with Constraint (1)
- ``KSPNASH``
- ``nash``
* - Conjugate Gradients with Constraint (2)
- ``KSPSTCG``
- ``stcg``
* - Conjugate Gradients with Constraint (3)
- ``KSPGLTR``
- ``gltr``
* - Conjugate Gradients with Constraint (4)
- ``KSPQCG``
- ``qcg``
* - BiConjugate Gradient
- ``KSPBICG``
- ``bicg``
* - BiCGSTAB :cite:`v:92`
- ``KSPBCGS``
- ``bcgs``
* - Improved BiCGSTAB
- ``KSPIBCGS``
- ``ibcgs``
* - QMRCGSTAB :cite:`chan1994qmrcgs`
- ``KSPQMRCGS``
- ``qmrcgs``
* - Flexible BiCGSTAB
- ``KSPFBCGS``
- ``fbcgs``
* - Flexible BiCGSTAB (variant)
- ``KSPFBCGSR``
- ``fbcgsr``
* - Enhanced BiCGSTAB(L)
- ``KSPBCGSL``
- ``bcgsl``
* - Minimal Residual Method :cite:`paige.saunders:solution`
- ``KSPMINRES``
- ``minres``
* - Generalized Minimal Residual :cite:`saad.schultz:gmres`
- ``KSPGMRES``
- ``gmres``
* - Flexible Generalized Minimal Residual :cite:`saad1993`
- ``KSPFGMRES``
- ``fgmres``
* - Deflated Generalized Minimal Residual
- ``KSPDGMRES``
- ``dgmres``
* - Pipelined Generalized Minimal Residual :cite:`ghyselsashbymeerbergenvanroose2013`
- ``KSPPGMRES``
- ``pgmres``
* - Pipelined, Flexible Generalized Minimal Residual :cite:`sananschneppmay2016`
- ``KSPPIPEFGMRES``
- ``pipefgmres``
* - Generalized Minimal Residual with Accelerated Restart
- ``KSPLGMRES``
- ``lgmres``
* - Conjugate Residual :cite:`eisenstat1983variational`
- ``KSPCR``
- ``cr``
* - Generalized Conjugate Residual
- ``KSPGCR``
- ``gcr``
* - Pipelined Conjugate Residual
- ``KSPPIPECR``
- ``pipecr``
* - Pipelined, Flexible Conjugate Residual :cite:`sananschneppmay2016`
- ``KSPPIPEGCR``
- ``pipegcr``
* - FETI-DP
- ``KSPFETIDP``
- ``fetidp``
* - Conjugate Gradient Squared :cite:`so:89`
- ``KSPCGS``
- ``cgs``
* - Transpose-Free Quasi-Minimal Residual (1) :cite:`f:93`
- ``KSPTFQMR``
- ``tfqmr``
* - Transpose-Free Quasi-Minimal Residual (2)
- ``KSPTCQMR``
- ``tcqmr``
* - Least Squares Method
- ``KSPLSQR``
- ``lsqr``
* - Symmetric LQ Method :cite:`paige.saunders:solution`
- ``KSPSYMMLQ``
- ``symmlq``
* - TSIRM
- ``KSPTSIRM``
- ``tsirm``
* - Python Shell
- ``KSPPYTHON``
- ``python``
* - Shell for no ``KSP`` method
- ``KSPNONE``
- ``none``
Note: the bi-conjugate gradient method requires application of both the
matrix and its transpose plus the preconditioner and its transpose.
Currently not all matrices and preconditioners provide this support and
thus the ``KSPBICG`` cannot always be used.
Note: PETSc implements the FETI-DP (Finite Element Tearing and
Interconnecting Dual-Primal) method as an implementation of ``KSP`` since it recasts the
original problem into a constrained minimization one with Lagrange
multipliers. The only matrix type supported is ``MATIS``. Support for
saddle point problems is provided. See the man page for ``KSPFETIDP`` for
further details.
.. _sec_convergencetests:
Convergence Tests
^^^^^^^^^^^^^^^^^
The default convergence test, ``KSPConvergedDefault()``, uses the $ l_2 $ norm of the preconditioned $ B(b - A x) $ or unconditioned residual $ b - Ax$, depending on the ``KSPType`` and the value of ``KSPNormType`` set with ``KSPSetNormType``. For ``KSPCG`` and ``KSPGMRES`` the default is the norm of the preconditioned residual.
The preconditioned residual is used by default for
convergence testing of all left-preconditioned ``KSP`` methods. For the
conjugate gradient, Richardson, and Chebyshev methods the true residual
can be used by the options database command
``-ksp_norm_type unpreconditioned`` or by calling the routine
.. code-block::
KSPSetNormType(ksp, KSP_NORM_UNPRECONDITIONED);
``KSPCG`` also supports using the natural norm induced by the symmetric positive-definite
matrix that defines the linear system with the options database command ``-ksp_norm_type natural`` or by calling the routine
.. code-block::
KSPSetNormType(ksp, KSP_NORM_NATURAL);
Convergence (or divergence) is decided
by three quantities: the decrease of the residual norm relative to the
norm of the right-hand side, ``rtol``, the absolute size of the residual
norm, ``atol``, and the relative increase in the residual, ``dtol``.
Convergence is detected at iteration :math:`k` if
.. math:: \| r_k \|_2 < {\rm max} ( \text{rtol} * \| b \|_2, \text{atol}),
where :math:`r_k = b - A x_k`. Divergence is detected if
.. math:: \| r_k \|_2 > \text{dtol} * \| b \|_2.
These parameters, as well as the maximum number of allowable iterations,
can be set with the routine
.. code-block::
KSPSetTolerances(KSP ksp,PetscReal rtol,PetscReal atol,PetscReal dtol,PetscInt maxits);
The user can retain the current value of any of these parameters by
specifying ``PETSC_CURRENT`` as the corresponding tolerance; the
defaults are ``rtol=1e-5``, ``atol=1e-50``, ``dtol=1e5``, and
``maxits=1e4``. Using ``PETSC_DETERMINE`` will set the parameters back to their
initial values when the object's type was set. These parameters can also be set from the options
database with the commands ``-ksp_rtol`` ``<rtol>``, ``-ksp_atol``
``<atol>``, ``-ksp_divtol`` ``<dtol>``, and ``-ksp_max_it`` ``<its>``.
In addition to providing an interface to a simple convergence test,
``KSP`` allows the application programmer the flexibility to provide
customized convergence-testing routines. The user can specify a
customized routine with the command
.. code-block::
KSPSetConvergenceTest(KSP ksp,PetscErrorCode (*test)(KSP ksp,PetscInt it,PetscReal rnorm, KSPConvergedReason *reason,void *ctx),void *ctx,PetscErrorCode (*destroy)(void *ctx));
The final routine argument, ``ctx``, is an optional context for private
data for the user-defined convergence routine, ``test``. Other ``test``
routine arguments are the iteration number, ``it``, and the residual’s
norm, ``rnorm``. The routine for detecting convergence,
``test``, should set ``reason`` to positive for convergence, 0 for no
convergence, and negative for failure to converge. A full list of
possible values is given in the ``KSPConvergedReason`` manual page.
You can use ``KSPGetConvergedReason()`` after
``KSPSolve()`` to see why convergence/divergence was detected.
.. _sec_kspmonitor:
Convergence Monitoring
^^^^^^^^^^^^^^^^^^^^^^
By default, the Krylov solvers, `KSPSolve()`, run silently without displaying
information about the iterations. The user can indicate that the norms
of the residuals should be displayed at each iteration by using ``-ksp_monitor`` with
the options database. To display the residual norms in a graphical
window (running under X Windows), one should use
``-ksp_monitor draw::draw_lg``. Application programmers can also
provide their own routines to perform the monitoring by using the
command
.. code-block::
KSPMonitorSet(KSP ksp,PetscErrorCode (*mon)(KSP ksp,PetscInt it,PetscReal rnorm,void *ctx),void *ctx,PetscErrorCode (*mondestroy)(void**));
The final routine argument, ``ctx``, is an optional context for private
data for the user-defined monitoring routine, ``mon``. Other ``mon``
routine arguments are the iteration number (``it``) and the residual’s
norm (``rnorm``), as discussed above in :any:`sec_convergencetests`.
A helpful routine within user-defined
monitors is ``PetscObjectGetComm((PetscObject)ksp,MPI_Comm *comm)``,
which returns in ``comm`` the MPI communicator for the ``KSP`` context.
See :any:`sec_writing` for more discussion of the use of
MPI communicators within PETSc.
Many monitoring routines are supplied with PETSc, including
.. code-block::
KSPMonitorResidual(KSP,PetscInt,PetscReal, void *);
KSPMonitorSingularValue(KSP,PetscInt,PetscReal,void *);
KSPMonitorTrueResidual(KSP,PetscInt,PetscReal, void *);
The default monitor simply prints an estimate of a norm of
the residual at each iteration. The routine
``KSPMonitorSingularValue()`` is appropriate only for use with the
conjugate gradient method or GMRES, since it prints estimates of the
extreme singular values of the preconditioned operator at each
iteration computed via the Lanczos or Arnoldi algorithms.
Since ``KSPMonitorTrueResidual()`` prints the true
residual at each iteration by actually computing the residual using the
formula :math:`r = b - Ax`, the routine is slow and should be used only
for testing or convergence studies, not for timing. These ``KSPSolve()`` monitors may
be accessed with the command line options ``-ksp_monitor``,
``-ksp_monitor_singular_value``, and ``-ksp_monitor_true_residual``.
To employ the default graphical monitor, one should use the command
``-ksp_monitor draw::draw_lg``.
One can cancel hardwired monitoring routines for KSP at runtime with
``-ksp_monitor_cancel``.
Understanding the Operator’s Spectrum
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Since the convergence of Krylov subspace methods depends strongly on the
spectrum (eigenvalues) of the preconditioned operator, PETSc has
specific routines for eigenvalue approximation via the Arnoldi or
Lanczos iteration. First, before the linear solve one must call
.. code-block::
KSPSetComputeEigenvalues(ksp,PETSC_TRUE);
Then after the ``KSP`` solve one calls
.. code-block::
KSPComputeEigenvalues(KSP ksp,PetscInt n,PetscReal *realpart,PetscReal *complexpart,PetscInt *neig);
Here, ``n`` is the size of the two arrays and the eigenvalues are
inserted into those two arrays. ``neig`` is the number of eigenvalues
computed; this number depends on the size of the Krylov space generated
during the linear system solution, for GMRES it is never larger than the
``restart`` parameter. There is an additional routine
.. code-block::
KSPComputeEigenvaluesExplicitly(KSP ksp, PetscInt n,PetscReal *realpart,PetscReal *complexpart);
that is useful only for very small problems. It explicitly computes the
full representation of the preconditioned operator and calls LAPACK to
compute its eigenvalues. It should be only used for matrices of size up
to a couple hundred. The ``PetscDrawSP*()`` routines are very useful for
drawing scatter plots of the eigenvalues.
The eigenvalues may also be computed and displayed graphically with the
options data base commands ``-ksp_view_eigenvalues draw`` and
``-ksp_view_eigenvalues_explicit draw``. Or they can be dumped to the
screen in ASCII text via ``-ksp_view_eigenvalues`` and
``-ksp_view_eigenvalues_explicit``.
.. _sec_flexibleksp:
Flexible Krylov Methods
^^^^^^^^^^^^^^^^^^^^^^^
Standard Krylov methods require that the preconditioner be a linear operator, thus, for example, a standard ``KSP`` method
cannot use a ``KSP`` in its preconditioner, as is common in the Block-Jacobi method ``PCBJACOBI``, for example.
Flexible Krylov methods are a subset of methods that allow (with modest additional requirements
on memory) the preconditioner to be nonlinear. For example, they can be used with the ``PCKSP`` preconditioner.
The flexible ``KSP`` methods have the label "Flexible" in :any:`tab-kspdefaults`.
One can use ``KSPMonitorDynamicTolerance()`` to control the tolerances used by inner ``KSP`` solvers in ``PCKSP``, ``PCBJACOBI``, and ``PCDEFLATION``.
In addition to supporting ``PCKSP``, the flexible methods support ``KSP*SetModifyPC()``, for example, ``KSPFGMRESSetModifyPC()``, these functions
allow the user to provide a callback function that changes the preconditioner at each Krylov iteration. Its calling sequence is as follows.
.. code-block::
PetscErrorCode f(KSP ksp,PetscInt total_its,PetscInt its_since_restart,PetscReal res_norm,void *ctx);
.. _sec_pipelineksp:
Pipelined Krylov Methods
^^^^^^^^^^^^^^^^^^^^^^^^
Standard Krylov methods have one or more global reductions resulting from the computations of inner products or norms in each iteration.
These reductions need to block until all MPI processes have received the results. For a large number of MPI processes (this number is machine dependent
but can be above 10,000 processes) this synchronization is very time consuming and can significantly slow the computation. Pipelined Krylov
methods overlap the reduction operations with local computations (generally the application of the matrix-vector products and precondtiioners)
thus effectively "hiding" the time of the reductions. In addition, they may reduce the number of global synchronizations by rearranging the
computations in a way that some of them can be collapsed, e.g., two or more calls to ``MPI_Allreduce()`` may be combined into one call.
The pipeline ``KSP`` methods have the label "Pipeline" in :any:`tab-kspdefaults`.
Special configuration of MPI may be necessary for reductions to make asynchronous progress, which is important for
performance of pipelined methods. See :any:`doc_faq_pipelined` for details.
Other KSP Options
^^^^^^^^^^^^^^^^^
To obtain the solution vector and right-hand side from a ``KSP``
context, one uses
.. code-block::
KSPGetSolution(KSP ksp,Vec *x);
KSPGetRhs(KSP ksp,Vec *rhs);
During the iterative process the solution may not yet have been
calculated or it may be stored in a different location. To access the
approximate solution during the iterative process, one uses the command
.. code-block::
KSPBuildSolution(KSP ksp,Vec w,Vec *v);
where the solution is returned in ``v``. The user can optionally provide
a vector in ``w`` as the location to store the vector; however, if ``w``
is ``NULL``, space allocated by PETSc in the ``KSP`` context is used.
One should not destroy this vector. For certain ``KSP`` methods (e.g.,
GMRES), the construction of the solution is expensive, while for many
others it doesn’t even require a vector copy.
Access to the residual is done in a similar way with the command
.. code-block::
KSPBuildResidual(KSP ksp,Vec t,Vec w,Vec *v);
Again, for GMRES and certain other methods this is an expensive
operation.
.. _sec_pc:
Preconditioners
~~~~~~~~~~~~~~~
As discussed in :any:`sec_ksppc`, Krylov subspace methods
are typically used in conjunction with a preconditioner. To employ a
particular preconditioning method, the user can either select it from
the options database using input of the form ``-pc_type <methodname>``
or set the method with the command
.. code-block::
PCSetType(PC pc,PCType method);
In :any:`tab-pcdefaults` we summarize the basic
preconditioning methods supported in PETSc. See the ``PCType`` manual
page for a complete list.
The ``PCSHELL`` preconditioner allows users to provide their own
specific, application-provided custom preconditioner.
The direct
preconditioner, ``PCLU`` , is, in fact, a direct solver for the linear
system that uses LU factorization. ``PCLU`` is included as a
preconditioner so that PETSc has a consistent interface among direct and
iterative linear solvers.
PETSc provides several domain decomposition methods/preconditioners including
``PCASM``, ``PCGASM``, ``PCBDDC``, and ``PCHPDDM``. In addition PETSc provides
multiple multigrid solvers/preconditioners including ``PCMG``, ``PCGAMG``, ``PCHYPRE``,
and ``PCML``. See further discussion below.
.. list-table:: PETSc Preconditioners (partial list)
:name: tab-pcdefaults
:header-rows: 1
* - Method
- PCType
- Options Database
* - Jacobi
- ``PCJACOBI``
- ``jacobi``
* - Block Jacobi
- ``PCBJACOBI``
- ``bjacobi``
* - SOR (and SSOR)
- ``PCSOR``
- ``sor``
* - SOR with Eisenstat trick
- ``PCEISENSTAT``
- ``eisenstat``
* - Incomplete Cholesky
- ``PCICC``
- ``icc``
* - Incomplete LU
- ``PCILU``
- ``ilu``
* - Additive Schwarz
- ``PCASM``
- ``asm``
* - Generalized Additive Schwarz
- ``PCGASM``
- ``gasm``
* - Algebraic Multigrid
- ``PCGAMG``
- ``gamg``
* - Balancing Domain Decomposition by Constraints
- ``PCBDDC``
- ``bddc``
* - Linear solver
- ``PCKSP``
- ``ksp``
* - Combination of preconditioners
- ``PCCOMPOSITE``
- ``composite``
* - LU
- ``PCLU``
- ``lu``
* - Cholesky
- ``PCCHOLESKY``
- ``cholesky``
* - No preconditioning
- ``PCNONE``
- ``none``
* - Shell for user-defined ``PC``
- ``PCSHELL``
- ``shell``
Each preconditioner may have associated with it a set of options, which
can be set with routines and options database commands provided for this
purpose. Such routine names and commands are all of the form
``PC<TYPE><Option>`` and ``-pc_<type>_<option> [value]``. A complete
list can be found by consulting the ``PCType`` manual page; we discuss
just a few in the sections below.
.. _sec_ilu_icc:
ILU and ICC Preconditioners
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Some of the options for ILU preconditioner are
.. code-block::
PCFactorSetLevels(PC pc,PetscInt levels);
PCFactorSetReuseOrdering(PC pc,PetscBool flag);
PCFactorSetDropTolerance(PC pc,PetscReal dt,PetscReal dtcol,PetscInt dtcount);
PCFactorSetReuseFill(PC pc,PetscBool flag);
PCFactorSetUseInPlace(PC pc,PetscBool flg);
PCFactorSetAllowDiagonalFill(PC pc,PetscBool flg);
When repeatedly solving linear systems with the same ``KSP`` context,
one can reuse some information computed during the first linear solve.
In particular, ``PCFactorSetReuseOrdering()`` causes the ordering (for
example, set with ``-pc_factor_mat_ordering_type`` ``order``) computed
in the first factorization to be reused for later factorizations.
``PCFactorSetUseInPlace()`` is often used with ``PCASM`` or
``PCBJACOBI`` when zero fill is used, since it reuses the matrix space
to store the incomplete factorization it saves memory and copying time.
Note that in-place factorization is not appropriate with any ordering
besides natural and cannot be used with the drop tolerance
factorization. These options may be set in the database with
- ``-pc_factor_levels <levels>``
- ``-pc_factor_reuse_ordering``
- ``-pc_factor_reuse_fill``
- ``-pc_factor_in_place``
- ``-pc_factor_nonzeros_along_diagonal``
- ``-pc_factor_diagonal_fill``
See :any:`sec_symbolfactor` for information on
preallocation of memory for anticipated fill during factorization. By
alleviating the considerable overhead for dynamic memory allocation,
such tuning can significantly enhance performance.
PETSc supports incomplete factorization preconditioners
for several matrix types for sequential matrices (for example
``MATSEQAIJ``, ``MATSEQBAIJ``, and ``MATSEQSBAIJ``).
SOR and SSOR Preconditioners
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
PETSc provides only a sequential SOR preconditioner; it can only be
used with sequential matrices or as the subblock preconditioner when
using block Jacobi or ASM preconditioning (see below).
The options for SOR preconditioning with ``PCSOR`` are
.. code-block::
PCSORSetOmega(PC pc,PetscReal omega);
PCSORSetIterations(PC pc,PetscInt its,PetscInt lits);
PCSORSetSymmetric(PC pc,MatSORType type);
The first of these commands sets the relaxation factor for successive
over (under) relaxation. The second command sets the number of inner
iterations ``its`` and local iterations ``lits`` (the number of
smoothing sweeps on a process before doing a ghost point update from the
other processes) to use between steps of the Krylov space method. The
total number of SOR sweeps is given by ``its*lits``. The third command
sets the kind of SOR sweep, where the argument ``type`` can be one of
``SOR_FORWARD_SWEEP``, ``SOR_BACKWARD_SWEEP`` or
``SOR_SYMMETRIC_SWEEP``, the default being ``SOR_FORWARD_SWEEP``.
Setting the type to be ``SOR_SYMMETRIC_SWEEP`` produces the SSOR method.
In addition, each process can locally and independently perform the
specified variant of SOR with the types ``SOR_LOCAL_FORWARD_SWEEP``,
``SOR_LOCAL_BACKWARD_SWEEP``, and ``SOR_LOCAL_SYMMETRIC_SWEEP``. These
variants can also be set with the options ``-pc_sor_omega <omega>``,
``-pc_sor_its <its>``, ``-pc_sor_lits <lits>``, ``-pc_sor_backward``,
``-pc_sor_symmetric``, ``-pc_sor_local_forward``,
``-pc_sor_local_backward``, and ``-pc_sor_local_symmetric``.
The Eisenstat trick :cite:`eisenstat81` for SSOR
preconditioning can be employed with the method ``PCEISENSTAT``
(``-pc_type`` ``eisenstat``). By using both left and right
preconditioning of the linear system, this variant of SSOR requires
about half of the floating-point operations for conventional SSOR. The
option ``-pc_eisenstat_no_diagonal_scaling`` (or the routine
``PCEisenstatSetNoDiagonalScaling()``) turns off diagonal scaling in
conjunction with Eisenstat SSOR method, while the option
``-pc_eisenstat_omega <omega>`` (or the routine
``PCEisenstatSetOmega(PC pc,PetscReal omega)``) sets the SSOR relaxation
coefficient, ``omega``, as discussed above.
.. _sec_factorization:
LU Factorization
^^^^^^^^^^^^^^^^
The LU preconditioner provides several options. The first, given by the
command
.. code-block::
PCFactorSetUseInPlace(PC pc,PetscBool flg);
causes the factorization to be performed in-place and hence destroys the
original matrix. The options database variant of this command is
``-pc_factor_in_place``. Another direct preconditioner option is
selecting the ordering of equations with the command
``-pc_factor_mat_ordering_type <ordering>``. The possible orderings are
- ``MATORDERINGNATURAL`` - Natural
- ``MATORDERINGND`` - Nested Dissection
- ``MATORDERING1WD`` - One-way Dissection
- ``MATORDERINGRCM`` - Reverse Cuthill-McKee
- ``MATORDERINGQMD`` - Quotient Minimum Degree
These orderings can also be set through the options database by
specifying one of the following: ``-pc_factor_mat_ordering_type``
``natural``, or ``nd``, or ``1wd``, or ``rcm``, or ``qmd``. In addition,
see ``MatGetOrdering()``, discussed in :any:`sec_matfactor`.
The sparse LU factorization provided in PETSc does not perform pivoting
for numerical stability (since they are designed to preserve nonzero
structure), and thus occasionally an LU factorization will fail with a
zero pivot when, in fact, the matrix is non-singular. The option
``-pc_factor_nonzeros_along_diagonal <tol>`` will often help eliminate
the zero pivot, by preprocessing the column ordering to remove small
values from the diagonal. Here, ``tol`` is an optional tolerance to
decide if a value is nonzero; by default it is ``1.e-10``.
In addition, :any:`sec_symbolfactor` provides information
on preallocation of memory for anticipated fill during factorization.
Such tuning can significantly enhance performance, since it eliminates
the considerable overhead for dynamic memory allocation.
.. _sec_bjacobi:
Block Jacobi and Overlapping Additive Schwarz Preconditioners
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The block Jacobi and overlapping additive Schwarz (domain decomposition) methods in PETSc are
supported in parallel; however, only the uniprocess version of the block
Gauss-Seidel method is available. By default, the PETSc
implementations of these methods employ ILU(0) factorization on each
individual block (that is, the default solver on each subblock is
``PCType=PCILU``, ``KSPType=KSPPREONLY`` (or equivalently ``KSPType=KSPNONE``); the user can set alternative
linear solvers via the options ``-sub_ksp_type`` and ``-sub_pc_type``.
In fact, all of the ``KSP`` and ``PC`` options can be applied to the
subproblems by inserting the prefix ``-sub_`` at the beginning of the
option name. These options database commands set the particular options
for *all* of the blocks within the global problem. In addition, the
routines
.. code-block::
PCBJacobiGetSubKSP(PC pc,PetscInt *n_local,PetscInt *first_local,KSP **subksp);
PCASMGetSubKSP(PC pc,PetscInt *n_local,PetscInt *first_local,KSP **subksp);
extract the ``KSP`` context for each local block. The argument
``n_local`` is the number of blocks on the calling process, and
``first_local`` indicates the global number of the first block on the
process. The blocks are numbered successively by processes from zero
through :math:`b_g-1`, where :math:`b_g` is the number of global blocks.
The array of ``KSP`` contexts for the local blocks is given by
``subksp``. This mechanism enables the user to set different solvers for
the various blocks. To set the appropriate data structures, the user
*must* explicitly call ``KSPSetUp()`` before calling
``PCBJacobiGetSubKSP()`` or ``PCASMGetSubKSP(``). For further details,
see
`KSP Tutorial ex7 <PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/ksp/ksp/tutorials/ex7.c.html>`__
or
`KSP Tutorial ex8 <PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/ksp/ksp/tutorials/ex8.c.html>`__.
The block Jacobi, block Gauss-Seidel, and additive Schwarz
preconditioners allow the user to set the number of blocks into which
the problem is divided. The options database commands to set this value
are ``-pc_bjacobi_blocks`` ``n`` and ``-pc_bgs_blocks`` ``n``, and,
within a program, the corresponding routines are
.. code-block::
PCBJacobiSetTotalBlocks(PC pc,PetscInt blocks,PetscInt *size);
PCASMSetTotalSubdomains(PC pc,PetscInt n,IS *is,IS *islocal);
PCASMSetType(PC pc,PCASMType type);
The optional argument ``size`` is an array indicating the size of each
block. Currently, for certain parallel matrix formats, only a single
block per process is supported. However, the ``MATMPIAIJ`` and
``MATMPIBAIJ`` formats support the use of general blocks as long as no
blocks are shared among processes. The ``is`` argument contains the
index sets that define the subdomains.
The object ``PCASMType`` is one of ``PC_ASM_BASIC``,
``PC_ASM_INTERPOLATE``, ``PC_ASM_RESTRICT``, or ``PC_ASM_NONE`` and may
also be set with the options database ``-pc_asm_type`` ``[basic``,
``interpolate``, ``restrict``, ``none]``. The type ``PC_ASM_BASIC`` (or
``-pc_asm_type`` ``basic``) corresponds to the standard additive Schwarz
method that uses the full restriction and interpolation operators. The
type ``PC_ASM_RESTRICT`` (or ``-pc_asm_type`` ``restrict``) uses a full
restriction operator, but during the interpolation process ignores the
off-process values. Similarly, ``PC_ASM_INTERPOLATE`` (or
``-pc_asm_type`` ``interpolate``) uses a limited restriction process in
conjunction with a full interpolation, while ``PC_ASM_NONE`` (or
``-pc_asm_type`` ``none``) ignores off-process values for both
restriction and interpolation. The ASM types with limited restriction or
interpolation were suggested by Xiao-Chuan Cai and Marcus Sarkis
:cite:`cs99`. ``PC_ASM_RESTRICT`` is the PETSc default, as
it saves substantial communication and for many problems has the added
benefit of requiring fewer iterations for convergence than the standard
additive Schwarz method.
The user can also set the number of blocks and sizes on a per-process
basis with the commands
.. code-block::
PCBJacobiSetLocalBlocks(PC pc,PetscInt blocks,PetscInt *size);
PCASMSetLocalSubdomains(PC pc,PetscInt N,IS *is,IS *islocal);
For the ASM preconditioner one can use the following command to set the
overlap to compute in constructing the subdomains.
.. code-block::
PCASMSetOverlap(PC pc,PetscInt overlap);
The overlap defaults to 1, so if one desires that no additional overlap
be computed beyond what may have been set with a call to
``PCASMSetTotalSubdomains()`` or ``PCASMSetLocalSubdomains()``, then
``overlap`` must be set to be 0. In particular, if one does *not*
explicitly set the subdomains in an application code, then all overlap
would be computed internally by PETSc, and using an overlap of 0 would
result in an ASM variant that is equivalent to the block Jacobi
preconditioner. Note that one can define initial index sets ``is`` with
*any* overlap via ``PCASMSetTotalSubdomains()`` or
``PCASMSetLocalSubdomains()``; the routine ``PCASMSetOverlap()`` merely
allows PETSc to extend that overlap further if desired.
``PCGASM`` is a generalization of ``PCASM`` that allows
the user to specify subdomains that span multiple MPI processes. This can be
useful for problems where small subdomains result in poor convergence.
To be effective, the multi-processor subproblems must be solved using a
sufficiently strong subsolver, such as ``PCLU``, for which ``SuperLU_DIST`` or a
similar parallel direct solver could be used; other choices may include
a multigrid solver on the subdomains.
The interface for ``PCGASM`` is similar to that of ``PCASM``. In
particular, ``PCGASMType`` is one of ``PC_GASM_BASIC``,
``PC_GASM_INTERPOLATE``, ``PC_GASM_RESTRICT``, ``PC_GASM_NONE``. These
options have the same meaning as with ``PCASM`` and may also be set with
the options database ``-pc_gasm_type`` ``[basic``, ``interpolate``,
``restrict``, ``none]``.
Unlike ``PCASM``, however, ``PCGASM`` allows the user to define
subdomains that span multiple MPI processes. The simplest way to do this is
using a call to ``PCGASMSetTotalSubdomains(PC pc,PetscInt N)`` with
the total number of subdomains ``N`` that is smaller than the MPI
communicator ``size``. In this case ``PCGASM`` will coalesce ``size/N``
consecutive single-rank subdomains into a single multi-rank subdomain.
The single-rank subdomains contain the degrees of freedom corresponding
to the locally-owned rows of the ``PCGASM`` preconditioning matrix –
these are the subdomains ``PCASM`` and ``PCGASM`` use by default.
Each of the multirank subdomain subproblems is defined on the
subcommunicator that contains the coalesced ``PCGASM`` processes. In general
this might not result in a very good subproblem if the single-rank
problems corresponding to the coalesced processes are not very strongly
connected. In the future this will be addressed with a hierarchical
partitioner that generates well-connected coarse subdomains first before
subpartitioning them into the single-rank subdomains.
In the meantime the user can provide his or her own multi-rank
subdomains by calling ``PCGASMSetSubdomains(PC,IS[],IS[])`` where each
of the ``IS`` objects on the list defines the inner (without the
overlap) or the outer (including the overlap) subdomain on the
subcommunicator of the ``IS`` object. A helper subroutine
``PCGASMCreateSubdomains2D()`` is similar to PCASM’s but is capable of
constructing multi-rank subdomains that can be then used with
``PCGASMSetSubdomains()``. An alternative way of creating multi-rank
subdomains is by using the underlying ``DM`` object, if it is capable of
generating such decompositions via ``DMCreateDomainDecomposition()``.
Ordinarily the decomposition specified by the user via
``PCGASMSetSubdomains()`` takes precedence, unless
``PCGASMSetUseDMSubdomains()`` instructs ``PCGASM`` to prefer
``DM``-created decompositions.
Currently there is no support for increasing the overlap of multi-rank
subdomains via ``PCGASMSetOverlap()`` – this functionality works only
for subdomains that fit within a single MPI process, exactly as in
``PCASM``.
Examples of the described ``PCGASM`` usage can be found in
`KSP Tutorial ex62 <PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/ksp/ksp/tutorials/ex62.c.html>`__.
In particular, ``runex62_superlu_dist`` illustrates the use of
``SuperLU_DIST`` as the subdomain solver on coalesced multi-rank
subdomains. The ``runex62_2D_*`` examples illustrate the use of
``PCGASMCreateSubdomains2D()``.
.. _sec_amg:
Algebraic Multigrid (AMG) Preconditioners
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
PETSc has a native algebraic multigrid preconditioner ``PCGAMG`` –
*gamg* – and interfaces to three external AMG packages: *hypre*, *ML*
and *AMGx* (CUDA platforms only) that can be downloaded in the
configuration phase (e.g., ``--download-hypre`` ) and used by
specifying that command line parameter (e.g., ``-pc_type hypre``).
*Hypre* is relatively monolithic in that a PETSc matrix is converted into a hypre
matrix, and then *hypre* is called to solve the entire problem. *ML* is more
modular because PETSc only has *ML* generate the coarse grid spaces
(columns of the prolongation operator), which is the core of an AMG method,
and then constructs a ``PCMG`` with Galerkin coarse grid operator
construction. ``PCGAMG`` is designed from the beginning to be modular, to
allow for new components to be added easily and also populates a
multigrid preconditioner ``PCMG`` so generic multigrid parameters are
used (see :any:`sec_mg`). PETSc provides a fully supported (smoothed) aggregation AMG, but supports the addition of new methods
(``-pc_type gamg -pc_gamg_type agg`` or ``PCSetType(pc,PCGAMG)`` and
``PCGAMGSetType(pc, PCGAMGAGG)``. Examples of extension are reference implementations of
a classical AMG method (``-pc_gamg_type classical``), a (2D) hybrid geometric
AMG method (``-pc_gamg_type geo``) that are not supported. A 2.5D AMG method DofColumns
:cite:`isaacstadlerghattas2015` supports 2D coarsenings extruded in the third dimension. ``PCGAMG`` does require the use
of ``MATAIJ`` matrices. For instance, ``MATBAIJ`` matrices are not supported. One
can use ``MATAIJ`` instead of ``MATBAIJ`` without changing any code other than the
constructor (or the ``-mat_type`` from the command line). For instance,
``MatSetValuesBlocked`` works with ``MATAIJ`` matrices.
**Important parameters for PCGAMGAGG**
* Control the generation of the coarse grid
* ``-pc_gamg_aggressive_coarsening`` <n:int:1> Use aggressive coarsening on the finest n levels to construct the coarser mesh.
See `PCGAMGAGGSetNSmooths()`. The larger value produces a faster preconditioner to create and solve, but the convergence may be slower.
* ``-pc_gamg_low_memory_threshold_filter`` <bool:false> Filter small matrix entries before coarsening the mesh.
See ``PCGAMGSetLowMemoryFilter()``.
* ``-pc_gamg_threshold`` <tol:real:0.0> The threshold of small values to drop when ``-pc_gamg_low_memory_threshold_filter`` is used. A
negative value means keeping even the locations with 0.0. See ``PCGAMGSetThreshold()``
* ``-pc_gamg_threshold_scale`` <v>:real:1.0> Set a scale factor applied to each coarser level when ``-pc_gamg_low_memory_threshold_filter`` is used.
See ``PCGAMGSetThresholdScale()``.
* ``-pc_gamg_mat_coarsen_type`` <mis|hem|misk:misk> Algorithm used to coarsen the matrix graph. See ``MatCoarsenSetType()``.
* ``-pc_gamg_mat_coarsen_max_it`` <it:int:4> Maximum HEM iterations to use. See ``MatCoarsenSetMaximumIterations()``.
* ``-pc_gamg_aggressive_mis_k`` <k:int:2> k distance in MIS coarsening (>2 is 'aggressive') to use in coarsening.
See `PCGAMGMISkSetAggressive()`. The larger value produces a preconditioner that is faster to create and solve with but the convergence may be slower.
This option and the previous option work to determine how aggressively the grids are coarsened.
* ``-pc_gamg_mis_k_minimum_degree_ordering`` <bool:true> Use a minimum degree ordering in the greedy MIS algorithm used to coarsen.
See ``PCGAMGMISkSetMinDegreeOrdering()``
* Control the generation of the prolongation for ``PCGAMGAGG``
* ``-pc_gamg_agg_nsmooths`` <n:int:1> Number of smoothing steps to be used in constructing the prolongation. For symmetric problems,
generally, one or more is best. For some strongly nonsymmetric problems, 0 may be best. See ``PCGAMGSetNSmooths()``.
* Control the amount of parallelism on the levels
* ``-pc_gamg_process_eq_limit`` <n:int:50> Sets the minimum number of equations allowed per process when coarsening (otherwise, fewer MPI processes
are used for the coarser mesh). A larger value will cause the coarser problems to be run on fewer MPI processes, resulting
in less communication and possibly a faster time to solution. See ``PCGAMGSetProcEqLim()``.
* ``-pc_gamg_rank_reduction_factors`` <rn,rn-1,...,r1:int> Set a schedule for MPI rank reduction on coarse grids. ``See PCGAMGSetRankReductionFactors()``
This overrides the lessening of processes that would arise from ``-pc_gamg_process_eq_limit``.
* ``-pc_gamg_repartition`` <bool:false> Run a partitioner on each coarser mesh generated rather than using the default partition arising from the
finer mesh. See ``PCGAMGSetRepartition()``. This increases the preconditioner setup time but will result in less time per
iteration of the solver.
* ``-pc_gamg_parallel_coarse_grid_solver`` <bool:false> Allow the coarse grid solve to run in parallel, depending on the value of ``-pc_gamg_coarse_eq_limit``.
See ``PCGAMGSetParallelCoarseGridSolve()``. If the coarse grid problem is large then this can
improve the time to solution.
* ``-pc_gamg_coarse_eq_limit`` <n:int:50> Sets the minimum number of equations allowed per process on the coarsest level when coarsening
(otherwise fewer MPI processes will be used). A larger value will cause the coarse problems to be run on fewer MPI processes.
This only applies if ``-pc_gamg_parallel_coarse_grid_solver`` is set to true. See ``PCGAMGSetCoarseEqLim()``.
* Control the smoothers
* ``-pc_mg_levels`` <n:int> Set the maximum number of levels to use.
* ``-mg_levels_ksp_type`` <KSPType:chebyshev> If ``KSPCHEBYSHEV`` or ``KSPRICHARDSON`` is not used, then the Krylov
method for the entire multigrid solve has to be a flexible method such as ``KSPFGMRES``. Generally, the
stronger the Krylov method the faster the convergence, but with more cost per iteration. See ``KSPSetType()``.
* ``-mg_levels_ksp_max_it`` <its:int:2> Sets the number of iterations to run the smoother on each level. Generally, the more iterations
, the faster the convergence, but with more cost per multigrid iteration. See ``PCMGSetNumberSmooth()``.
* ``-mg_levels_ksp_xxx`` Sets options for the ``KSP`` in the smoother on the levels.
* ``-mg_levels_pc_type`` <PCType:jacobi> Sets the smoother to use on each level. See ``PCSetType()``. Generally, the
stronger the preconditioner the faster the convergence, but with more cost per iteration.
* ``-mg_levels_pc_xxx`` Sets options for the ``PC`` in the smoother on the levels.
* ``-mg_coarse_ksp_type`` <KSPType:none> Sets the solver ``KSPType`` to use on the coarsest level.
* ``-mg_coarse_pc_type`` <PCType:lu> Sets the solver ``PCType`` to use on the coarsest level.
* ``-pc_gamg_asm_use_agg`` <bool:false> Use ``PCASM`` as the smoother on each level with the aggregates defined by the coarsening process are
the subdomains. This option automatically switches the smoother on the levels to be ``PCASM``.
* ``-mg_levels_pc_asm_overlap`` <n:int:0> Use non-zero overlap with ``-pc_gamg_asm_use_agg``. See ``PCASMSetOverlap()``.
* Control the multigrid algorithm
* ``-pc_mg_type`` <additive|multiplicative|full|kaskade:multiplicative> The type of multigrid to use. Usually, multiplicative is the fastest.
* ``-pc_mg_cycle_type`` <v|w:v> Use V- or W-cycle with ``-pc_mg_type`` ``multiplicative``
``PCGAMG`` provides unsmoothed aggregation (``-pc_gamg_agg_nsmooths 0``) and
smoothed aggregation (``-pc_gamg_agg_nsmooths 1`` or
``PCGAMGSetNSmooths(pc,1)``). Smoothed aggregation (SA), :cite:`vanek1996algebraic`, :cite:`vanek2001convergence`, is recommended
for symmetric positive definite systems. Unsmoothed aggregation can be
useful for asymmetric problems and problems where the highest eigenestimates are problematic. If poor convergence rates are observed using
the smoothed version, one can test unsmoothed aggregation.
**Eigenvalue estimates:** The parameters for the KSP eigen estimator,
used for SA, can be set with ``-pc_gamg_esteig_ksp_max_it`` and
``-pc_gamg_esteig_ksp_type``. For example, CG generally converges to the
highest eigenvalue faster than GMRES (the default for KSP) if your problem
is symmetric positive definite. One can specify CG with
``-pc_gamg_esteig_ksp_type cg``. The default for
``-pc_gamg_esteig_ksp_max_it`` is 10, which we have found is pretty safe
with a (default) safety factor of 1.1. One can specify the range of real
eigenvalues in the same way as with Chebyshev KSP solvers
(smoothers), with ``-pc_gamg_eigenvalues <emin,emax>``. GAMG sets the MG
smoother type to chebyshev by default. By default, GAMG uses its eigen
estimate, if it has one, for Chebyshev smoothers if the smoother uses
Jacobi preconditioning. This can be overridden with
``-pc_gamg_use_sa_esteig <true,false>``.
AMG methods require knowledge of the number of degrees of freedom per
vertex; the default is one (a scalar problem). Vector problems like
elasticity should set the block size of the matrix appropriately with
``-mat_block_size bs`` or ``MatSetBlockSize(mat,bs)``. Equations must be
ordered in “vertex-major” ordering (e.g.,
:math:`x_1,y_1,z_1,x_2,y_2,...`).
**Near null space:** Smoothed aggregation requires an explicit
representation of the (near) null space of the operator for optimal
performance. One can provide an orthonormal set of null space vectors
with ``MatSetNearNullSpace()``. The vector of all ones is the default
for each variable given by the block size (e.g., the translational rigid
body modes). For elasticity, where rotational rigid body modes are
required to complete the near null-space you can use
``MatNullSpaceCreateRigidBody()`` to create the null space vectors and
then ``MatSetNearNullSpace()``.
**Coarse grid data model:** The GAMG framework provides for reducing the
number of active processes on coarse grids to reduce communication costs
when there is not enough parallelism to keep relative communication
costs down. Most AMG solvers reduce to just one active process on the
coarsest grid (the PETSc MG framework also supports redundantly solving
the coarse grid on all processes to reduce communication
costs potentially). However, this forcing to one process can be overridden if one
wishes to use a parallel coarse grid solver. GAMG generalizes this by
reducing the active number of processes on other coarse grids.
GAMG will select the number of active processors by fitting the desired
number of equations per process (set with
``-pc_gamg_process_eq_limit <50>,``) at each level given that size of
each level. If :math:`P_i < P` processors are desired on a level
:math:`i`, then the first :math:`P_i` processes are populated with the grid
and the remaining are empty on that grid. One can, and probably should,
repartition the coarse grids with ``-pc_gamg_repartition <true>``,
otherwise an integer process reduction factor (:math:`q`) is selected
and the equations on the first :math:`q` processes are moved to process
0, and so on. As mentioned, multigrid generally coarsens the problem
until it is small enough to be solved with an exact solver (e.g., LU or
SVD) in a relatively short time. GAMG will stop coarsening when the
number of the equation on a grid falls below the threshold given by
``-pc_gamg_coarse_eq_limit <50>,``.
**Coarse grid parameters:** There are several options to provide
parameters to the coarsening algorithm and parallel data layout. Run a
code using ``PCGAMG`` with ``-help`` to get a full listing of GAMG
parameters with short descriptions. The rate of coarsening is
critical in AMG performance – too slow coarsening will result in an
overly expensive solver per iteration and too fast coarsening will
result in decrease in the convergence rate. ``-pc_gamg_threshold <-1>``
and ``-pc_gamg_aggressive_coarsening <N>`` are the primary parameters that
control coarsening rates, which is very important for AMG performance. A
greedy maximal independent set (MIS) algorithm is used in coarsening.
Squaring the graph implements MIS-2; the root vertex in an
aggregate is more than two edges away from another root vertex instead
of more than one in MIS. The threshold parameter sets a normalized
threshold for which edges are removed from the MIS graph, thereby
coarsening slower. Zero will keep all non-zero edges, a negative number
will keep zero edges, and a positive number will drop small edges. Typical
finite threshold values are in the range of :math:`0.01 - 0.05`. There
are additional parameters for changing the weights on coarse grids.
The parallel MIS algorithms require symmetric weights/matrices. Thus ``PCGAMG``
will automatically make the graph symmetric if it is not symmetric. Since this
has additional cost, users should indicate the symmetry of the matrices they
provide by calling
.. code-block::
MatSetOption(mat,MAT_SYMMETRIC,PETSC_TRUE (or PETSC_FALSE))
or
.. code-block::
MatSetOption(mat,MAT_STRUCTURALLY_SYMMETRIC,PETSC_TRUE (or PETSC_FALSE)).
If they know that the matrix will always have symmetry despite future changes
to the matrix (with, for example, ``MatSetValues()``) then they should also call
.. code-block::
MatSetOption(mat,MAT_SYMMETRY_ETERNAL,PETSC_TRUE (or PETSC_FALSE))
or
.. code-block::
MatSetOption(mat,MAT_STRUCTURAL_SYMMETRY_ETERNAL,PETSC_TRUE (or PETSC_FALSE)).
Using this information allows the algorithm to skip unnecessary computations.
**Troubleshooting algebraic multigrid methods:** If ``PCGAMG``, *ML*, *AMGx* or
*hypre* does not perform well; the first thing to try is one of the other
methods. Often, the default parameters or just the strengths of different
algorithms can fix performance problems or provide useful information to
guide further debugging. There are several sources of poor performance
of AMG solvers and often special purpose methods must be developed to
achieve the full potential of multigrid. To name just a few sources of
performance degradation that may not be fixed with parameters in PETSc
currently: non-elliptic operators, curl/curl operators, highly stretched
grids or highly anisotropic problems, large jumps in material
coefficients with complex geometry (AMG is particularly well suited to
jumps in coefficients, but it is not a perfect solution), highly
incompressible elasticity, not to mention ill-posed problems and many
others. For Grad-Div and Curl-Curl operators, you may want to try the
Auxiliary-space Maxwell Solver (AMS,
``-pc_type hypre -pc_hypre_type ams``) or the Auxiliary-space Divergence
Solver (ADS, ``-pc_type hypre -pc_hypre_type ads``) solvers. These
solvers need some additional information on the underlying mesh;
specifically, AMS needs the discrete gradient operator, which can be
specified via ``PCHYPRESetDiscreteGradient()``. In addition to the
discrete gradient, ADS also needs the specification of the discrete curl
operator, which can be set using ``PCHYPRESetDiscreteCurl()``.
**I am converging slowly, what do I do?** AMG methods are sensitive to
coarsening rates and methods; for GAMG use ``-pc_gamg_threshold <x>``
or ``PCGAMGSetThreshold()`` to regulate coarsening rates; higher values decrease
coarsening rate. Squaring the graph is the second mechanism for
increasing the coarsening rate. Use ``-pc_gamg_aggressive_coarsening <N>``, or
``PCGAMGSetAggressiveLevels(pc,N)``, to aggressive ly coarsen (MIS-2) the graph on the finest N
levels. A high threshold (e.g., :math:`x=0.08`) will result in an
expensive but potentially powerful preconditioner, and a low threshold
(e.g., :math:`x=0.0`) will result in faster coarsening, fewer levels,
cheaper solves, and generally worse convergence rates.
One can run with ``-info :pc`` and grep for ``PCGAMG`` to get statistics on
each level, which can be used to see if you are coarsening at an
appropriate rate. With smoothed aggregation, you generally want to coarse
at about a rate of 3:1 in each dimension. Coarsening too slowly will
result in large numbers of non-zeros per row on coarse grids (this is
reported). The number of non-zeros can go up very high, say about 300
(times the degrees of freedom per vertex) on a 3D hex mesh. One can also
look at the grid complexity, which is also reported (the ratio of the
total number of matrix entries for all levels to the number of matrix
entries on the fine level). Grid complexity should be well under 2.0 and
preferably around :math:`1.3` or lower. If convergence is poor and the
Galerkin coarse grid construction is much smaller than the time for each
solve, one can safely decrease the coarsening rate.
``-pc_gamg_threshold`` :math:`-1.0` is the simplest and most robust
option and is recommended if poor convergence rates are observed, at
least until the source of the problem is discovered. In conclusion, decreasing the coarsening rate (increasing the
threshold) should be tried if convergence is slow.
**A note on Chebyshev smoothers.** Chebyshev solvers are attractive as
multigrid smoothers because they can target a specific interval of the
spectrum, which is the purpose of a smoother. The spectral bounds for
Chebyshev solvers are simple to compute because they rely on the highest
eigenvalue of your (diagonally preconditioned) operator, which is
conceptually simple to compute. However, if this highest eigenvalue
estimate is not accurate (too low), the solvers can fail with an
indefinite preconditioner message. One can run with ``-info`` and grep
for ``PCGAMG`` to get these estimates or use ``-ksp_view``. These highest
eigenvalues are generally between 1.5-3.0. For symmetric positive
definite systems, CG is a better eigenvalue estimator
``-mg_levels_esteig_ksp_type cg``. Bad Eigen estimates often cause indefinite matrix messages. Explicitly damped Jacobi or Krylov
smoothers can provide an alternative to Chebyshev, and *hypre* has
alternative smoothers.
**Now, am I solving alright? Can I expect better?** If you find that you
are getting nearly one digit in reduction of the residual per iteration
and are using a modest number of point smoothing steps (e.g., 1-4
iterations of SOR), then you may be fairly close to textbook multigrid
efficiency. However, you also need to check the setup costs. This can be
determined by running with ``-log_view`` and check that the time for the
Galerkin coarse grid construction (``MatPtAP()``) is not (much) more than
the time spent in each solve (``KSPSolve()``). If the ``MatPtAP()`` time is
too large, then one can increase the coarsening rate by decreasing the
threshold and using aggressive coarsening
(``-pc_gamg_aggressive_coarsening <N>``, squares the graph on the finest N
levels). Likewise, if your ``MatPtAP()`` time is short and your convergence
If the rate is not ideal, you could decrease the coarsening rate.
PETSc’s AMG solver is a framework for developers to
easily add AMG capabilities, like new AMG methods or an AMG component
like a matrix triple product. Contact us directly if you are interested
in contributing.
Using algebraic multigrid as a "standalone" solver is possible but not recommended, as it does not accelerate it with a Krylov method.
Use a ``KSPType`` of ``KSPRICHARDSON``
(or equivalently `-ksp_type richardson`) to achieve this. Using ``KSPPREONLY`` will not work since it only applies a single multigrid cycle.
Adaptive Interpolation
``````````````````````
**Interpolation** transfers a function from the coarse space to the fine space. We would like this process to be accurate for the functions resolved by the coarse grid, in particular the approximate solution computed there. By default, we create these matrices using local interpolation of the fine grid dual basis functions in the coarse basis. However, an adaptive procedure can optimize the coefficients of the interpolator to reproduce pairs of coarse/fine functions which should approximate the lowest modes of the generalized eigenproblem
.. math::
A x = \lambda M x
where :math:`A` is the system matrix and :math:`M` is the smoother. Note that for defect-correction MG, the interpolated solution from the coarse space need not be as accurate as the fine solution, for the same reason that updates in iterative refinement can be less accurate. However, in FAS or in the final interpolation step for each level of Full Multigrid, we must have interpolation as accurate as the fine solution since we are moving the entire solution itself.
**Injection** should accurately transfer the fine solution to the coarse grid. Accuracy here means that the action of a coarse dual function on either should produce approximately the same result. In the structured grid case, this means that we just use the same values on coarse points. This can result in aliasing.
**Restriction** is intended to transfer the fine residual to the coarse space. Here we use averaging (often the transpose of the interpolation operation) to damp out the fine space contributions. Thus, it is less accurate than injection, but avoids aliasing of the high modes.
For a multigrid cycle, the interpolator :math:`P` is intended to accurately reproduce "smooth" functions from the coarse space in the fine space, keeping the energy of the interpolant about the same. For the Laplacian on a structured mesh, it is easy to determine what these low-frequency functions are. They are the Fourier modes. However an arbitrary operator :math:`A` will have different coarse modes that we want to resolve accurately on the fine grid, so that our coarse solve produces a good guess for the fine problem. How do we make sure that our interpolator :math:`P` can do this?
We first must decide what we mean by accurate interpolation of some functions. Suppose we know the continuum function :math:`f` that we care about, and we are only interested in a finite element description of discrete functions. Then the coarse function representing :math:`f` is given by
.. math::
f^C = \sum_i f^C_i \phi^C_i,
and similarly the fine grid form is
.. math::
f^F = \sum_i f^F_i \phi^F_i.
Now we would like the interpolant of the coarse representer to the fine grid to be as close as possible to the fine representer in a least squares sense, meaning we want to solve the minimization problem
.. math::
\min_{P} \| f^F - P f^C \|_2
Now we can express :math:`P` as a matrix by looking at the matrix elements :math:`P_{ij} = \phi^F_i P \phi^C_j`. Then we have
.. math::
\begin{aligned}
&\phi^F_i f^F - \phi^F_i P f^C \\
= &f^F_i - \sum_j P_{ij} f^C_j
\end{aligned}
so that our discrete optimization problem is
.. math::
\min_{P_{ij}} \| f^F_i - \sum_j P_{ij} f^C_j \|_2
and we will treat each row of the interpolator as a separate optimization problem. We could allow an arbitrary sparsity pattern, or try to determine adaptively, as is done in sparse approximate inverse preconditioning. However, we know the supports of the basis functions in finite elements, and thus the naive sparsity pattern from local interpolation can be used.
We note here that the BAMG framework of Brannick et al. :cite:`brandtbrannickkahllivshits2011` does not use fine and coarse functions spaces, but rather a fine point/coarse point division which we will not employ here. Our general PETSc routine should work for both since the input would be the checking set (fine basis coefficients or fine space points) and the approximation set (coarse basis coefficients in the support or coarse points in the sparsity pattern).
We can easily solve the above problem using QR factorization. However, there are many smooth functions from the coarse space that we want interpolated accurately, and a single :math:`f` would not constrain the values :math:`P_{ij}`` well. Therefore, we will use several functions :math:`\{f_k\}` in our minimization,
.. math::
\begin{aligned}
&\min_{P_{ij}} \sum_k w_k \| f^{F,k}_i - \sum_j P_{ij} f^{C,k}_j \|_2 \\
= &\min_{P_{ij}} \sum_k \| \sqrt{w_k} f^{F,k}_i - \sqrt{w_k} \sum_j P_{ij} f^{C,k}_j \|_2 \\
= &\min_{P_{ij}} \| W^{1/2} \mathbf{f}^{F}_i - W^{1/2} \mathbf{f}^{C} p_i \|_2
\end{aligned}
where
.. math::
\begin{aligned}
W &= \begin{pmatrix} w_0 & & \\ & \ddots & \\ & & w_K \end{pmatrix} \\
\mathbf{f}^{F}_i &= \begin{pmatrix} f^{F,0}_i \\ \vdots \\ f^{F,K}_i \end{pmatrix} \\
\mathbf{f}^{C} &= \begin{pmatrix} f^{C,0}_0 & \cdots & f^{C,0}_n \\ \vdots & \ddots & \vdots \\ f^{C,K}_0 & \cdots & f^{C,K}_n \end{pmatrix} \\
p_i &= \begin{pmatrix} P_{i0} \\ \vdots \\ P_{in} \end{pmatrix}
\end{aligned}
or alternatively
.. math::
\begin{aligned}
[W]_{kk} &= w_k \\
[f^{F}_i]_k &= f^{F,k}_i \\
[f^{C}]_{kj} &= f^{C,k}_j \\
[p_i]_j &= P_{ij}
\end{aligned}
We thus have a standard least-squares problem
.. math::
\min_{P_{ij}} \| b - A x \|_2
where
.. math::
\begin{aligned}
A &= W^{1/2} f^{C} \\
b &= W^{1/2} f^{F}_i \\
x &= p_i
\end{aligned}
which can be solved using LAPACK.
We will typically perform this optimization on a multigrid level :math:`l` when the change in eigenvalue from level :math:`l+1` is relatively large, meaning
.. math::
\frac{|\lambda_l - \lambda_{l+1}|}{|\lambda_l|}.
This indicates that the generalized eigenvector associated with that eigenvalue was not adequately represented by :math:`P^l_{l+1}``, and the interpolator should be recomputed.
.. raw:: html
<hr>
Balancing Domain Decomposition by Constraints
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
PETSc provides the Balancing Domain Decomposition by Constraints (``PCBDDC``)
method for preconditioning parallel finite element problems stored in
unassembled format (see ``MATIS``). ``PCBDDC`` is a 2-level non-overlapping
domain decomposition method which can be easily adapted to different
problems and discretizations by means of few user customizations. The
application of the preconditioner to a vector consists in the static
condensation of the residual at the interior of the subdomains by means
of local Dirichlet solves, followed by an additive combination of Neumann
local corrections and the solution of a global coupled coarse problem.
Command line options for the underlying ``KSP`` objects are prefixed by
``-pc_bddc_dirichlet``, ``-pc_bddc_neumann``, and ``-pc_bddc_coarse``
respectively.
The implementation supports any kind of linear system, and
assumes a one-to-one mapping between subdomains and MPI processes.
Complex numbers are supported as well. For non-symmetric problems, use
the runtime option ``-pc_bddc_symmetric 0``.
Unlike conventional non-overlapping methods that iterates just on the
degrees of freedom at the interface between subdomain, ``PCBDDC``
iterates on the whole set of degrees of freedom, allowing the use of
approximate subdomain solvers. When using approximate solvers, the
command line switches ``-pc_bddc_dirichlet_approximate`` and/or
``-pc_bddc_neumann_approximate`` should be used to inform ``PCBDDC``. If
any of the local problems is singular, the nullspace of the local
operator should be attached to the local matrix via
``MatSetNullSpace()``.
At the basis of the method there’s the analysis of the connected
components of the interface for the detection of vertices, edges and
faces equivalence classes. Additional information on the degrees of
freedom can be supplied to ``PCBDDC`` by using the following functions:
- ``PCBDDCSetDofsSplitting()``
- ``PCBDDCSetLocalAdjacencyGraph()``
- ``PCBDDCSetPrimalVerticesLocalIS()``
- ``PCBDDCSetNeumannBoundaries()``
- ``PCBDDCSetDirichletBoundaries()``
- ``PCBDDCSetNeumannBoundariesLocal()``
- ``PCBDDCSetDirichletBoundariesLocal()``
Crucial for the convergence of the iterative process is the
specification of the primal constraints to be imposed at the interface
between subdomains. ``PCBDDC`` uses by default vertex continuities and
edge arithmetic averages, which are enough for the three-dimensional
Poisson problem with constant coefficients. The user can switch on and
off the usage of vertices, edges or face constraints by using the
command line switches ``-pc_bddc_use_vertices``, ``-pc_bddc_use_edges``,
``-pc_bddc_use_faces``. A customization of the constraints is available
by attaching a ``MatNullSpace`` object to the preconditioning matrix via
``MatSetNearNullSpace()``. The vectors of the ``MatNullSpace`` object
should represent the constraints in the form of quadrature rules;
quadrature rules for different classes of the interface can be listed in
the same vector. The number of vectors of the ``MatNullSpace`` object
corresponds to the maximum number of constraints that can be imposed for
each class. Once all the quadrature rules for a given interface class
have been extracted, an SVD operation is performed to retain the
non-singular modes. As an example, the rigid body modes represent an
effective choice for elasticity, even in the almost incompressible case.
For particular problems, e.g. edge-based discretization with Nedelec
elements, a user defined change of basis of the degrees of freedom can
be beneficial for ``PCBDDC``; use ``PCBDDCSetChangeOfBasisMat()`` to
customize the change of basis.
The ``PCBDDC`` method is usually robust with respect to jumps in the material
parameters aligned with the interface; for PDEs with more than one
material parameter you may also consider to use the so-called deluxe
scaling, available via the command line switch
``-pc_bddc_use_deluxe_scaling``. Other scalings are available, see
``PCISSetSubdomainScalingFactor()``,
``PCISSetSubdomainDiagonalScaling()`` or
``PCISSetUseStiffnessScaling()``. However, the convergence properties of
the ``PCBDDC`` method degrades in presence of large jumps in the material
coefficients not aligned with the interface; for such cases, PETSc has
the capability of adaptively computing the primal constraints. Adaptive
selection of constraints could be requested by specifying a threshold
value at command line by using ``-pc_bddc_adaptive_threshold x``. Valid
values for the threshold ``x`` ranges from 1 to infinity, with smaller
values corresponding to more robust preconditioners. For SPD problems in
2D, or in 3D with only face degrees of freedom (like in the case of
Raviart-Thomas or Brezzi-Douglas-Marini elements), such a threshold is a
very accurate estimator of the condition number of the resulting
preconditioned operator. Since the adaptive selection of constraints for
``PCBDDC`` methods is still an active topic of research, its implementation is
currently limited to SPD problems; moreover, because the technique
requires the explicit knowledge of the local Schur complements, it needs
the external package MUMPS.
When solving problems decomposed in thousands of subdomains or more, the
solution of the ``PCBDDC`` coarse problem could become a bottleneck; in order
to overcome this issue, the user could either consider to solve the
parallel coarse problem on a subset of the communicator associated with
``PCBDDC`` by using the command line switch
``-pc_bddc_coarse_redistribute``, or instead use a multilevel approach.
The latter can be requested by specifying the number of requested level
at command line (``-pc_bddc_levels``) or by using ``PCBDDCSetLevels()``.
An additional parameter (see ``PCBDDCSetCoarseningRatio()``) controls
the number of subdomains that will be generated at the next level; the
larger the coarsening ratio, the lower the number of coarser subdomains.
For further details, see the example
`KSP Tutorial ex59 <PETSC_DOC_OUT_ROOT_PLACEHOLDER/src/ksp/ksp/tutorials/ex59.c>`__
and the online documentation for ``PCBDDC``.
Shell Preconditioners
^^^^^^^^^^^^^^^^^^^^^
The shell preconditioner simply uses an application-provided routine to
implement the preconditioner. That is, it allows users to write or wrap their
own custom preconditioners as a ``PC`` and use it with ``KSP``, etc.
To provide a custom preconditioner application, use
.. code-block::
PCShellSetApply(PC pc,PetscErrorCode (*apply)(PC,Vec,Vec));
Often a preconditioner needs access to an application-provided data
structured. For this, one should use
.. code-block::
PCShellSetContext(PC pc,void *ctx);
to set this data structure and
.. code-block::
PCShellGetContext(PC pc,void *ctx);
to retrieve it in ``apply``. The three routine arguments of ``apply()``
are the ``PC``, the input vector, and the output vector, respectively.
For a preconditioner that requires some sort of “setup” before being
used, that requires a new setup every time the operator is changed, one
can provide a routine that is called every time the operator is changed
(usually via ``KSPSetOperators()``).
.. code-block::
PCShellSetSetUp(PC pc,PetscErrorCode (*setup)(PC));
The argument to the ``setup`` routine is the same ``PC`` object which
can be used to obtain the operators with ``PCGetOperators()`` and the
application-provided data structure that was set with
``PCShellSetContext()``.
.. _sec_combining-pcs:
Combining Preconditioners
^^^^^^^^^^^^^^^^^^^^^^^^^
The ``PC`` type ``PCCOMPOSITE`` allows one to form new preconditioners
by combining already-defined preconditioners and solvers. Combining
preconditioners usually requires some experimentation to find a
combination of preconditioners that works better than any single method.
It is a tricky business and is not recommended until your application
code is complete and running and you are trying to improve performance.
In many cases using a single preconditioner is better than a
combination; an exception is the multigrid/multilevel preconditioners
(solvers) that are always combinations of some sort, see :any:`sec_mg`.
Let :math:`B_1` and :math:`B_2` represent the application of two
preconditioners of type ``type1`` and ``type2``. The preconditioner
:math:`B = B_1 + B_2` can be obtained with
.. code-block::
PCSetType(pc,PCCOMPOSITE);
PCCompositeAddPCType(pc,type1);
PCCompositeAddPCType(pc,type2);
Any number of preconditioners may added in this way.
This way of combining preconditioners is called additive, since the
actions of the preconditioners are added together. This is the default
behavior. An alternative can be set with the option
.. code-block::
PCCompositeSetType(pc,PC_COMPOSITE_MULTIPLICATIVE);
In this form the new residual is updated after the application of each
preconditioner and the next preconditioner applied to the next residual.
For example, with two composed preconditioners: :math:`B_1` and
:math:`B_2`; :math:`y = B x` is obtained from
.. math::
\begin{aligned}
y = B_1 x \\
w_1 = x - A y \\
y = y + B_2 w_1\end{aligned}
Loosely, this corresponds to a Gauss-Seidel iteration, while additive
corresponds to a Jacobi iteration.
Under most circumstances, the multiplicative form requires one-half the
number of iterations as the additive form; however, the multiplicative
form does require the application of :math:`A` inside the
preconditioner.
In the multiplicative version, the calculation of the residual inside
the preconditioner can be done in two ways: using the original linear
system matrix or using the matrix used to build the preconditioners
:math:`B_1`, :math:`B_2`, etc. By default it uses the “preconditioner
matrix”, to use the ``Amat`` matrix use the option
.. code-block::
PCSetUseAmat(PC pc);
The individual preconditioners can be accessed (in order to set options)
via
.. code-block::
PCCompositeGetPC(PC pc,PetscInt count,PC *subpc);
For example, to set the first sub preconditioners to use ILU(1)
.. code-block::
PC subpc;
PCCompositeGetPC(pc,0,&subpc);
PCFactorSetFill(subpc,1);
One can also change the operator that is used to construct a particular
``PC`` in the composite ``PC`` calling ``PCSetOperators()`` on the obtained ``PC``.
``PCFIELDSPLIT``, :any:`sec_block_matrices`, provides an alternative approach to defining composite preconditioners
with a variety of pre-defined compositions.
These various options can also be set via the options database. For
example, ``-pc_type`` ``composite`` ``-pc_composite_pcs`` ``jacobi,ilu``
causes the composite preconditioner to be used with two preconditioners:
Jacobi and ILU. The option ``-pc_composite_type`` ``multiplicative``
initiates the multiplicative version of the algorithm, while
``-pc_composite_type`` ``additive`` the additive version. Using the
``Amat`` matrix is obtained with the option ``-pc_use_amat``. One sets
options for the sub-preconditioners with the extra prefix ``-sub_N_``
where ``N`` is the number of the sub-preconditioner. For example,
``-sub_0_pc_ifactor_fill`` ``0``.
PETSc also allows a preconditioner to be a complete ``KSPSolve()`` linear solver. This
is achieved with the ``PCKSP`` type.
.. code-block::
PCSetType(PC pc,PCKSP);
PCKSPGetKSP(pc,&ksp);
/* set any KSP/PC options */
From the command line one can use 5 iterations of biCG-stab with ILU(0)
preconditioning as the preconditioner with
``-pc_type ksp -ksp_pc_type ilu -ksp_ksp_max_it 5 -ksp_ksp_type bcgs``.
By default the inner ``KSP`` solver uses the outer preconditioner
matrix, ``Pmat``, as the matrix to be solved in the linear system; to
use the matrix that defines the linear system, ``Amat`` use the option
.. code-block::
PCSetUseAmat(PC pc);
or at the command line with ``-pc_use_amat``.
Naturally, one can use a ``PCKSP`` preconditioner inside a composite
preconditioner. For example,
``-pc_type composite -pc_composite_pcs ilu,ksp -sub_1_pc_type jacobi -sub_1_ksp_max_it 10``
uses two preconditioners: ILU(0) and 10 iterations of GMRES with Jacobi
preconditioning. However, it is not clear whether one would ever wish to
do such a thing.
.. _sec_mg:
Multigrid Preconditioners
^^^^^^^^^^^^^^^^^^^^^^^^^
A large suite of routines is available for using geometric multigrid as
a preconditioner [2]_. In the ``PC`` framework, the user is required to
provide the coarse grid solver, smoothers, restriction and interpolation
operators, and code to calculate residuals. The ``PC`` package allows
these components to be encapsulated within a PETSc-compliant
preconditioner. We fully support both matrix-free and matrix-based
multigrid solvers.
A multigrid preconditioner is created with the four commands
.. code-block::
KSPCreate(MPI_Comm comm,KSP *ksp);
KSPGetPC(KSP ksp,PC *pc);
PCSetType(PC pc,PCMG);
PCMGSetLevels(pc,PetscInt levels,MPI_Comm *comms);
A large number of parameters affect the multigrid behavior. The command
.. code-block::
PCMGSetType(PC pc,PCMGType mode);
indicates which form of multigrid to apply :cite:`1sbg`.
For standard V or W-cycle multigrids, one sets the ``mode`` to be
``PC_MG_MULTIPLICATIVE``; for the additive form (which in certain cases
reduces to the BPX method, or additive multilevel Schwarz, or multilevel
diagonal scaling), one uses ``PC_MG_ADDITIVE`` as the ``mode``. For a
variant of full multigrid, one can use ``PC_MG_FULL``, and for the
Kaskade algorithm ``PC_MG_KASKADE``. For the multiplicative and full
multigrid options, one can use a W-cycle by calling
.. code-block::
PCMGSetCycleType(PC pc,PCMGCycleType ctype);
with a value of ``PC_MG_CYCLE_W`` for ``ctype``. The commands above can
also be set from the options database. The option names are
``-pc_mg_type [multiplicative, additive, full, kaskade]``, and
``-pc_mg_cycle_type`` ``<ctype>``.
The user can control the amount of smoothing by configuring the solvers
on the levels. By default, the up and down smoothers are identical. If
separate configuration of up and down smooths is required, it can be
requested with the option ``-pc_mg_distinct_smoothup`` or the routine
.. code-block::
PCMGSetDistinctSmoothUp(PC pc);
The multigrid routines, which determine the solvers and
interpolation/restriction operators that are used, are mandatory. To set
the coarse grid solver, one must call
.. code-block::
PCMGGetCoarseSolve(PC pc,KSP *ksp);
and set the appropriate options in ``ksp``. Similarly, the smoothers are
controlled by first calling
.. code-block::
PCMGGetSmoother(PC pc,PetscInt level,KSP *ksp);
and then setting the various options in the ``ksp.`` For example,
.. code-block::
PCMGGetSmoother(pc,1,&ksp);
KSPSetOperators(ksp,A1,A1);
sets the matrix that defines the smoother on level 1 of the multigrid.
While
.. code-block::
PCMGGetSmoother(pc,1,&ksp);
KSPGetPC(ksp,&pc);
PCSetType(pc,PCSOR);
sets SOR as the smoother to use on level 1.
To use a different pre- or postsmoother, one should call the following
routines instead.
.. code-block::
PCMGGetSmootherUp(PC pc,PetscInt level,KSP *upksp);
PCMGGetSmootherDown(PC pc,PetscInt level,KSP *downksp);
Use
.. code-block::
PCMGSetInterpolation(PC pc,PetscInt level,Mat P);
and
.. code-block::
PCMGSetRestriction(PC pc,PetscInt level,Mat R);
to define the intergrid transfer operations. If only one of these is
set, its transpose will be used for the other.
It is possible for these interpolation operations to be matrix-free (see
:any:`sec_matrixfree`); One should then make
sure that these operations are defined for the (matrix-free) matrices
passed in. Note that this system is arranged so that if the
interpolation is the transpose of the restriction, you can pass the same
``mat`` argument to both ``PCMGSetRestriction()`` and
``PCMGSetInterpolation()``.
On each level except the coarsest, one must also set the routine to
compute the residual. The following command suffices:
.. code-block::
PCMGSetResidual(PC pc,PetscInt level,PetscErrorCode (*residual)(Mat,Vec,Vec,Vec),Mat mat);
The ``residual()`` function normally does not need to be set if one’s
operator is stored in ``Mat`` format. In certain circumstances, where it
is much cheaper to calculate the residual directly, rather than through
the usual formula :math:`b - Ax`, the user may wish to provide an
alternative.
Finally, the user may provide three work vectors for each level (except
on the finest, where only the residual work vector is required). The
work vectors are set with the commands
.. code-block::
PCMGSetRhs(PC pc,PetscInt level,Vec b);
PCMGSetX(PC pc,PetscInt level,Vec x);
PCMGSetR(PC pc,PetscInt level,Vec r);
The ``PC`` references these vectors, so you should call ``VecDestroy()``
when you are finished with them. If any of these vectors are not
provided, the preconditioner will allocate them.
One can control the ``KSP`` and ``PC`` options used on the various
levels (as well as the coarse grid) using the prefix ``mg_levels_``
(``mg_coarse_`` for the coarse grid). For example,
``-mg_levels_ksp_type cg`` will cause the CG method to be used as the
Krylov method for each level. Or
``-mg_levels_pc_type ilu -mg_levels_pc_factor_levels 2`` will cause the
ILU preconditioner to be used on each level with two levels of fill in
the incomplete factorization.
.. _sec_block_matrices:
Solving Block Matrices with PCFIELDSPLIT
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Block matrices represent an important class of problems in numerical
linear algebra and offer the possibility of far more efficient iterative
solvers than just treating the entire matrix as a black box. In this
section, we use the common linear algebra definition of block matrices, where matrices are divided into a small, problem-size independent (two,
three, or so) number of very large blocks. These blocks arise naturally
from the underlying physics or discretization of the problem, such as the velocity and pressure. Under a certain numbering of
unknowns, the matrix can be written as
.. math::
\left( \begin{array}{cccc}
A_{00} & A_{01} & A_{02} & A_{03} \\
A_{10} & A_{11} & A_{12} & A_{13} \\
A_{20} & A_{21} & A_{22} & A_{23} \\
A_{30} & A_{31} & A_{32} & A_{33} \\
\end{array} \right),
where each :math:`A_{ij}` is an entire block. The matrices on a parallel computer are not explicitly stored this way. Instead, each process will
own some rows of :math:`A_{0*}`, :math:`A_{1*}` etc. On a
process, the blocks may be stored in one block followed by another
.. math::
\left( \begin{array}{ccccccc}
A_{{00}_{00}} & A_{{00}_{01}} & A_{{00}_{02}} & ... & A_{{01}_{00}} & A_{{01}_{01}} & ... \\
A_{{00}_{10}} & A_{{00}_{11}} & A_{{00}_{12}} & ... & A_{{01}_{10}} & A_{{01}_{11}} & ... \\
A_{{00}_{20}} & A_{{00}_{21}} & A_{{00}_{22}} & ... & A_{{01}_{20}} & A_{{01}_{21}} & ...\\
... \\
A_{{10}_{00}} & A_{{10}_{01}} & A_{{10}_{02}} & ... & A_{{11}_{00}} & A_{{11}_{01}} & ... \\
A_{{10}_{10}} & A_{{10}_{11}} & A_{{10}_{12}} & ... & A_{{11}_{10}} & A_{{11}_{11}} & ... \\
... \\
\end{array} \right)
or interlaced, for example, with four blocks
.. math::
\left( \begin{array}{ccccc}
A_{{00}_{00}} & A_{{01}_{00}} & A_{{00}_{01}} & A_{{01}_{01}} & ... \\
A_{{10}_{00}} & A_{{11}_{00}} & A_{{10}_{01}} & A_{{11}_{01}} & ... \\
A_{{00}_{10}} & A_{{01}_{10}} & A_{{00}_{11}} & A_{{01}_{11}} & ...\\
A_{{10}_{10}} & A_{{11}_{10}} & A_{{10}_{11}} & A_{{11}_{11}} & ...\\
...
\end{array} \right).
Note that for interlaced storage, the number of rows/columns of each
block must be the same size. Matrices obtained with ``DMCreateMatrix()``
where the ``DM`` is a ``DMDA`` are always stored interlaced. Block
matrices can also be stored using the ``MATNEST`` format, which holds
separate assembled blocks. Each of these nested matrices is itself
distributed in parallel. It is more efficient to use ``MATNEST`` with
the methods described in this section because there are fewer copies and
better formats (e.g., ``MATBAIJ`` or ``MATSBAIJ``) can be used for the
components, but it is not possible to use many other methods with
``MATNEST``. See :any:`sec_matnest` for more on assembling
block matrices without depending on a specific matrix format.
The PETSc ``PCFIELDSPLIT`` preconditioner implements the
“block” solvers in PETSc, :cite:`elman2008tcp`. There are three ways to provide the
information that defines the blocks. If the matrices are stored as
interlaced then ``PCFieldSplitSetFields()`` can be called repeatedly to
indicate which fields belong to each block. More generally
``PCFieldSplitSetIS()`` can be used to indicate exactly which
rows/columns of the matrix belong to a particular block (field). You can provide
names for each block with these routines; if you do not, they are numbered from 0. With these two approaches, the blocks may
overlap (though they generally will not overlap). If only one block is defined,
then the complement of the matrices is used to define the other block.
Finally, the option ``-pc_fieldsplit_detect_saddle_point`` causes two
diagonal blocks to be found, one associated with all rows/columns that
have zeros on the diagonals and the rest.
**Important parameters for PCFIELDSPLIT**
- Control the fields used
- ``-pc_fieldsplit_detect_saddle_point`` <bool:false> Generate two fields, the first consists of all rows with a nonzero on the diagonal, and the second will be all rows
with zero on the diagonal. See ``PCFieldSplitSetDetectSaddlePoint()``.
- ``-pc_fieldsplit_dm_splits`` <bool:true> Use the ``DM`` attached to the preconditioner to determine the fields. See ``PCFieldSplitSetDMSplits()`` and
``DMCreateFieldDecomposition()``.
- ``-pc_fieldsplit_%d_fields`` <f1,f2,...:int> Use f1, f2, .. to define field `d`. The `fn` are in the range of 0, ..., bs-1 where bs is the block size
of the matrix or set with ``PCFieldSplitSetBlockSize()``. See ``PCFieldSplitSetFields()``.
- ``-pc_fieldsplit_default`` <bool:true> Automatically add any fields needed that have not been supplied explicitly by ``-pc_fieldsplit_%d_fields``.
- ``DMFieldsplitSetIS()`` Provide the ``IS`` that defines a particular field.
- Control the type of the block preconditioner
- ``-pc_fieldsplit_type`` <additive|multiplicative|symmetric_multiplicative|schur|gkb:multiplicative> The order in which the field solves are applied.
For symmetric problems where ``KSPCG`` is used ``symmetric_multiplicative`` must be used instead of ``multiplicative``. ``additive`` is the least expensive
to apply but provides the worst convergence. ``schur`` requires either a good preconditioner for the Schur complement or a naturally well-conditioned
Schur complement, but when it works well can be extremely effective. See ``PCFieldSplitSetType()``. ``gkb`` is for symmetric saddle-point problems (the lower-right
the block is zero).
- ``-pc_fieldsplit_diag_use_amat`` <bool:false> Use the first matrix that is passed to ``KSPSetJacobian()`` to construct the block-diagonal sub-matrices used in the algorithms,
by default, the second matrix is used.
- Options for Schur preconditioner: ``-pc_fieldsplit_type``
``schur``
- ``-pc_fieldsplit_schur_fact_type`` <diag|lower|upper|full:diag> See ``PCFieldSplitSetSchurFactType()``. ``full`` reduces the iterations but each iteration requires additional
field solves.
- ``-pc_fieldsplit_schur_precondition`` <self|selfp|user|a11|full:user> How the Schur complement is preconditioned. See ``PCFieldSplitSetSchurPre()``.
- ``-fieldsplit_1_mat_schur_complement_ainv_type`` <diag|lump:diag> Use the lumped diagonal of :math:`A_{00}` when ``-pc_fieldsplit_schur_precondition``
``selfp`` is used.
- ``-pc_fieldsplit_schur_scale`` <scale:real:-1.0> Controls the sign flip of S for ``-pc_fieldsplit_schur_fact_type`` ``diag``.
See ``PCFieldSplitSetSchurScale()``
- ``fieldsplit_1_xxx`` controls the solver for the Schur complement system.
If a ``DM`` provided the fields, use the second field name set in the ``DM`` instead of 1.
- ``-fieldsplit_1_pc_type`` ``lsc`` ``-fieldsplit_1_lsc_pc_xxx`` use
the least squares commutators :cite:`elmanhowleshadidshuttleworthtuminaro2006` :cite:`silvester2001efficient`
preconditioner for the Schur complement with any preconditioner for the least-squares matrix, see ``PCLSC``.
If a ``DM`` provided the fields, use the second field name set in the ``DM`` instead of 1.
- ``-fieldsplit_upper_xxx`` Set options for the solver in the upper solver when ``-pc_fieldsplit_schur_fact_type``
``upper`` or ``full`` is used. Defaults to
using the solver as provided with ``-fieldsplit_0_xxx``.
- ``-fieldsplit_1_inner_xxx`` Set the options for the solver inside the application of the Schur complement;
defaults to using the solver as provided with ``-fieldsplit_0_xxx``. If a ``DM`` provides the fields use the name of the second field name set in the ``DM`` instead of 1.
- Options for GKB preconditioner: ``-pc_fieldsplit_type`` gkb
- ``-pc_fieldsplit_gkb_tol`` <tol:real:1e-5> See ``PCFieldSplitSetGKBTol()``.
- ``-pc_fieldsplit_gkb_delay`` <delay:int:5> See ``PCFieldSplitSetGKBDelay()``.
- ``-pc_fieldsplit_gkb_nu`` <nu:real:1.0> See ``PCFieldSplitSetGKBNu()``.
- ``-pc_fieldsplit_gkb_maxit`` <maxit:int:100> See ``PCFieldSplitSetGKBMaxit()``.
- ``-pc_fieldsplit_gkb_monitor`` <bool:false> Monitor the convergence of the inner solver.
- Options for additive and multiplication field solvers:
- ``-fieldsplit_%d_xxx`` Set options for the solver for field number `d`. For example, ``-fieldsplit_0_pc_type``
``jacobi``. When the fields are obtained from a ``DM`` use the
field name instead of `d`.
For simplicity, we restrict our matrices to two-by-two blocks in the rest of the section. So the matrix is
.. math::
\left( \begin{array}{cc}
A_{00} & A_{01} \\
A_{10} & A_{11} \\
\end{array} \right).
On occasion, the user may provide another matrix that is used to
construct parts of the preconditioner
.. math::
\left( \begin{array}{cc}
Ap_{00} & Ap_{01} \\
Ap_{10} & Ap_{11} \\
\end{array} \right).
For notational simplicity define :math:`\text{ksp}(A,Ap)` to mean
approximately solving a linear system using ``KSP`` with the operator
:math:`A` and preconditioner built from matrix :math:`Ap`.
For matrices defined with any number of blocks, there are three “block”
algorithms available: block Jacobi,
.. math::
\left( \begin{array}{cc}
\text{ksp}(A_{00},Ap_{00}) & 0 \\
0 & \text{ksp}(A_{11},Ap_{11}) \\
\end{array} \right)
block Gauss-Seidel,
.. math::
\left( \begin{array}{cc}
I & 0 \\
0 & A^{-1}_{11} \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
-A_{10} & I \\
\end{array} \right)
\left( \begin{array}{cc}
A^{-1}_{00} & 0 \\
0 & I \\
\end{array} \right)
which is implemented [3]_ as
.. math::
\left( \begin{array}{cc}
I & 0 \\
0 & \text{ksp}(A_{11},Ap_{11}) \\
\end{array} \right)
.. math::
\left[
\left( \begin{array}{cc}
0 & 0 \\
0 & I \\
\end{array} \right) +
\left( \begin{array}{cc}
I & 0 \\
-A_{10} & -A_{11} \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
0 & 0 \\
\end{array} \right)
\right]
.. math::
\left( \begin{array}{cc}
\text{ksp}(A_{00},Ap_{00}) & 0 \\
0 & I \\
\end{array} \right)
and symmetric block Gauss-Seidel
.. math::
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & I \\
\end{array} \right)
\left( \begin{array}{cc}
I & -A_{01} \\
0 & I \\
\end{array} \right)
\left( \begin{array}{cc}
A_{00} & 0 \\
0 & A_{11}^{-1} \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
-A_{10} & I \\
\end{array} \right)
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & I \\
\end{array} \right).
These can be accessed with
``-pc_fieldsplit_type<additive,multiplicative,``\ ``symmetric_multiplicative>``
or the function ``PCFieldSplitSetType()``. The option prefixes for the
internal KSPs are given by ``-fieldsplit_name_``.
By default blocks :math:`A_{00}, A_{01}` and so on are extracted out of
``Pmat``, the matrix that the ``KSP`` uses to build the preconditioner,
and not out of ``Amat`` (i.e., :math:`A` itself). As discussed above, in
:any:`sec_combining-pcs`, however, it is
possible to use ``Amat`` instead of ``Pmat`` by calling
``PCSetUseAmat(pc)`` or using ``-pc_use_amat`` on the command line.
Alternatively, you can have ``PCFIELDSPLIT`` extract the diagonal blocks
:math:`A_{00}, A_{11}` etc. out of ``Amat`` by calling
``PCFieldSplitSetDiagUseAmat(pc,PETSC_TRUE)`` or supplying command-line
argument ``-pc_fieldsplit_diag_use_amat``. Similarly,
``PCFieldSplitSetOffDiagUseAmat(pc,{PETSC_TRUE``) or
``-pc_fieldsplit_off_diag_use_amat`` will cause the off-diagonal blocks
:math:`A_{01},A_{10}` etc. to be extracted out of ``Amat``.
For two-by-two blocks only, there is another family of solvers based on
Schur complements. The inverse of the Schur complement factorization is
.. math::
\left[
\left( \begin{array}{cc}
I & 0 \\
A_{10}A_{00}^{-1} & I \\
\end{array} \right)
\left( \begin{array}{cc}
A_{00} & 0 \\
0 & S \\
\end{array} \right)
\left( \begin{array}{cc}
I & A_{00}^{-1} A_{01} \\
0 & I \\
\end{array} \right)
\right]^{-1} =
.. math::
\left( \begin{array}{cc}
I & A_{00}^{-1} A_{01} \\
0 & I \\
\end{array} \right)^{-1}
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & S^{-1} \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
A_{10}A_{00}^{-1} & I \\
\end{array} \right)^{-1} =
.. math::
\left( \begin{array}{cc}
I & -A_{00}^{-1} A_{01} \\
0 & I \\
\end{array} \right)
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & S^{-1} \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
-A_{10}A_{00}^{-1} & I \\
\end{array} \right) =
.. math::
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & I \\
\end{array} \right)
\left( \begin{array}{cc}
I & -A_{01} \\
0 & I \\
\end{array} \right)
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & S^{-1} \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
-A_{10} & I \\
\end{array} \right)
\left( \begin{array}{cc}
A_{00}^{-1} & 0 \\
0 & I \\
\end{array} \right).
The preconditioner is accessed with ``-pc_fieldsplit_type`` ``schur`` and is
implemented as
.. math::
\left( \begin{array}{cc}
\text{ksp}(A_{00},Ap_{00}) & 0 \\
0 & I \\
\end{array} \right)
\left( \begin{array}{cc}
I & -A_{01} \\
0 & I \\
\end{array} \right)
.. math::
\left( \begin{array}{cc}
I & 0 \\
0 & \text{ksp}(\hat{S},\hat{S}p) \\
\end{array} \right)
\left( \begin{array}{cc}
I & 0 \\
-A_{10} \text{ksp}(A_{00},Ap_{00}) & I \\
\end{array} \right).
Where
:math:`\hat{S} = A_{11} - A_{10} \text{ksp}(A_{00},Ap_{00}) A_{01}` is
the approximate Schur complement.
There are several variants of the Schur complement preconditioner
obtained by dropping some of the terms; these can be obtained with
``-pc_fieldsplit_schur_fact_type <diag,lower,upper,full>`` or the
function ``PCFieldSplitSetSchurFactType()``. Note that the ``diag`` form
uses the preconditioner
.. math::
\left( \begin{array}{cc}
\text{ksp}(A_{00},Ap_{00}) & 0 \\
0 & -\text{ksp}(\hat{S},\hat{S}p) \\
\end{array} \right).
This is done to ensure the preconditioner is positive definite for a
a common class of problems, saddle points with a positive definite
:math:`A_{00}`: for these, the Schur complement is negative definite.
The effectiveness of the Schur complement preconditioner depends on the
availability of a good preconditioner :math:`\hat Sp` for the Schur
complement matrix. In general, you are responsible for supplying
:math:`\hat Sp` via
``PCFieldSplitSetSchurPre(pc,PC_FIELDSPLIT_SCHUR_PRE_USER,Sp)``.
Without a good problem-specific :math:`\hat Sp`, you can use
some built-in options.
Using ``-pc_fieldsplit_schur_precondition user`` on the command line
activates the matrix supplied programmatically, as explained above.
With ``-pc_fieldsplit_schur_precondition a11`` (default)
:math:`\hat Sp = A_{11}` is used to build a preconditioner for
:math:`\hat S`.
Otherwise, ``-pc_fieldsplit_schur_precondition self`` will set
:math:`\hat Sp = \hat S` and use the Schur complement matrix itself to
build the preconditioner.
The problem with the last approach is that :math:`\hat S` is used in
the unassembled, matrix-free form, and many preconditioners (e.g., ILU)
cannot be built out of such matrices. Instead, you can *assemble* an
approximation to :math:`\hat S` by inverting :math:`A_{00}`, but only
approximately, to ensure the sparsity of :math:`\hat Sp` as much
as possible. Specifically, using
``-pc_fieldsplit_schur_precondition selfp`` will assemble
:math:`\hat Sp = A_{11} - A_{10} \text{inv}(A_{00}) A_{01}`.
By default :math:`\text{inv}(A_{00})` is the inverse of the diagonal of
:math:`A_{00}`, but using
``-fieldsplit_1_mat_schur_complement_ainv_type lump`` will lump
:math:`A_{00}` first. Using
``-fieldsplit_1_mat_schur_complement_ainv_type blockdiag`` will use the
inverse of the block diagonal of :math:`A_{00}`. Option
``-mat_schur_complement_ainv_type`` applies to any matrix of
``MatSchurComplement`` type and here it is used with the prefix
``-fieldsplit_1`` of the linear system in the second split.
Finally, you can use the ``PCLSC`` preconditioner for the Schur
complement with ``-pc_fieldsplit_type schur -fieldsplit_1_pc_type lsc``.
This uses for the preconditioner to :math:`\hat{S}` the operator
.. math:: \text{ksp}(A_{10} A_{01},A_{10} A_{01}) A_{10} A_{00} A_{01} \text{ksp}(A_{10} A_{01},A_{10} A_{01})
Which, of course, introduces two additional inner solves for each
application of the Schur complement. The options prefix for this inner
``KSP`` is ``-fieldsplit_1_lsc_``. Instead of constructing the matrix
:math:`A_{10} A_{01}`, users can provide their own matrix. This is
done by attaching the matrix/matrices to the :math:`Sp` matrix they
provide with
.. code-block::
PetscObjectCompose((PetscObject)Sp,"LSC_L",(PetscObject)L);
PetscObjectCompose((PetscObject)Sp,"LSC_Lp",(PetscObject)Lp);
.. _sec_singular:
Solving Singular Systems
~~~~~~~~~~~~~~~~~~~~~~~~
Sometimes one is required to solver singular linear systems. In this
case, the system matrix has a nontrivial null space. For example, the
discretization of the Laplacian operator with Neumann boundary
conditions has a null space of the constant functions. PETSc has tools
to help solve these systems. This approach is only guaranteed to work for left preconditioning (see ``KSPSetPCSide()``); for example it
may not work in some situations with ``KSPFGMRES``.
First, one must know what the null space is and store it using an
orthonormal basis in an array of PETSc Vecs. The constant functions can
be handled separately, since they are such a common case. Create a
``MatNullSpace`` object with the command
.. code-block::
MatNullSpaceCreate(MPI_Comm,PetscBool hasconstants,PetscInt dim,Vec *basis,MatNullSpace *nsp);
Here, ``dim`` is the number of vectors in ``basis`` and ``hasconstants``
indicates if the null space contains the constant functions. If the null
space contains the constant functions you do not need to include it in
the ``basis`` vectors you provide, nor in the count ``dim``.
One then tells the ``KSP`` object you are using what the null space is
with the call
.. code-block::
MatSetNullSpace(Mat Amat,MatNullSpace nsp);
The ``Amat`` should be the *first* matrix argument used with
``KSPSetOperators()``, ``SNESSetJacobian()``, or ``TSSetIJacobian()``.
The PETSc solvers will now
handle the null space during the solution process.
If the right-hand side of linear system is not in the range of ``Amat``, that is it is not
orthogonal to the null space of ``Amat`` transpose, then the residual
norm of the Krylov iteration will not converge to zero; it will converge to a non-zero value while the
solution is converging to the least squares solution of the linear system. One can, if one desires,
apply ``MatNullSpaceRemove()`` with the null space of ``Amat`` transpose to the right-hand side before calling
``KSPSolve()``. Then the residual norm will converge to zero.
If one chooses a direct solver (or an incomplete factorization) it may
still detect a zero pivot. You can run with the additional options or
``-pc_factor_shift_type NONZERO``
``-pc_factor_shift_amount <dampingfactor>`` to prevent the zero pivot.
A good choice for the ``dampingfactor`` is 1.e-10.
If the matrix is non-symmetric and you wish to solve the transposed linear system
you must provide the null space of the transposed matrix with ``MatSetTransposeNullSpace()``.
.. _sec_externalsol:
Using External Linear Solvers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PETSc interfaces to several external linear solvers (also see :any:`acknowledgements`).
To use these solvers, one may:
#. Run ``configure`` with the additional options
``--download-packagename`` e.g. ``--download-superlu_dist``
``--download-parmetis`` (SuperLU_DIST needs ParMetis) or
``--download-mumps`` ``--download-scalapack`` (MUMPS requires
ScaLAPACK).
#. Build the PETSc libraries.
#. Use the runtime option: ``-ksp_type preonly`` (or equivalently ``-ksp_type none``) ``-pc_type <pctype>``
``-pc_factor_mat_solver_type <packagename>``. For eg:
``-ksp_type preonly`` ``-pc_type lu``
``-pc_factor_mat_solver_type superlu_dist``.
.. list-table:: Options for External Solvers
:name: tab-externaloptions
:header-rows: 1
* - MatType
- PCType
- MatSolverType
- Package
* - ``seqaij``
- ``lu``
- ``MATSOLVERESSL``
- ``essl``
* - ``seqaij``
- ``lu``
- ``MATSOLVERLUSOL``
- ``lusol``
* - ``seqaij``
- ``lu``
- ``MATSOLVERMATLAB``
- ``matlab``
* - ``aij``
- ``lu``
- ``MATSOLVERMUMPS``
- ``mumps``
* - ``aij``
- ``cholesky``
- -
- -
* - ``sbaij``
- ``cholesky``
- -
- -
* - ``seqaij``
- ``lu``
- ``MATSOLVERSUPERLU``
- ``superlu``
* - ``aij``
- ``lu``
- ``MATSOLVERSUPERLU_DIST``
- ``superlu_dist``
* - ``seqaij``
- ``lu``
- ``MATSOLVERUMFPACK``
- ``umfpack``
* - ``seqaij``
- ``cholesky``
- ``MATSOLVERCHOLMOD``
- ``cholmod``
* - ``seqaij``
- ``lu``
- ``MATSOLVERKLU``
- ``klu``
* - ``dense``
- ``lu``
- ``MATSOLVERELEMENTAL``
- ``elemental``
* - ``dense``
- ``cholesky``
- -
- -
* - ``seqaij``
- ``lu``
- ``MATSOLVERMKL_PARDISO``
- ``mkl_pardiso``
* - ``aij``
- ``lu``
- ``MATSOLVERMKL_CPARDISO``
- ``mkl_cpardiso``
* - ``aij``
- ``lu``
- ``MATSOLVERPASTIX``
- ``pastix``
* - ``aij``
- ``cholesky``
- ``MATSOLVERBAS``
- ``bas``
* - ``aijcusparse``
- ``lu``
- ``MATSOLVERCUSPARSE``
- ``cusparse``
* - ``aijcusparse``
- ``cholesky``
- -
- -
* - ``aij``
- ``lu``, ``cholesky``
- ``MATSOLVERPETSC``
- ``petsc``
* - ``baij``
- -
- -
- -
* - ``aijcrl``
- -
- -
- -
* - ``aijperm``
- -
- -
- -
* - ``seqdense``
- -
- -
- -
* - ``aij``
- -
- -
- -
* - ``baij``
- -
- -
- -
* - ``aijcrl``
- -
- -
- -
* - ``aijperm``
- -
- -
- -
* - ``seqdense``
- -
- -
- -
The default and available input options for each external software can
be found by specifying ``-help`` at runtime.
As an alternative to using runtime flags to employ these external
packages, procedural calls are provided for some packages. For example,
the following procedural calls are equivalent to runtime options
``-ksp_type preonly`` (or equivalently ``-ksp_type none``) ``-pc_type lu``
``-pc_factor_mat_solver_type mumps`` ``-mat_mumps_icntl_7 3``:
.. code-block::
KSPSetType(ksp,KSPPREONLY); (or equivalently KSPSetType(ksp,KSPNONE))
KSPGetPC(ksp,&pc);
PCSetType(pc,PCLU);
PCFactorSetMatSolverType(pc,MATSOLVERMUMPS);
PCFactorSetUpMatSolverType(pc);
PCFactorGetMatrix(pc,&F);
icntl=7; ival = 3;
MatMumpsSetIcntl(F,icntl,ival);
One can also create matrices with the appropriate capabilities by
calling ``MatCreate()`` followed by ``MatSetType()`` specifying the
desired matrix type from :any:`tab-externaloptions`. These
matrix types inherit capabilities from their PETSc matrix parents:
``MATSEQAIJ``, ``MATMPIAIJ``, etc. As a result, the preallocation routines
``MatSeqAIJSetPreallocation()``, ``MatMPIAIJSetPreallocation()``, etc.
and any other type specific routines of the base class are supported.
One can also call ``MatConvert()`` inplace to convert the matrix to and
from its base class without performing an expensive data copy.
``MatConvert()`` cannot be called on matrices that have already been
factored.
In :any:`tab-externaloptions`, the base class ``aij`` refers
to the fact that inheritance is based on ``MATSEQAIJ`` when constructed
with a single process communicator, and from ``MATMPIAIJ`` otherwise.
The same holds for ``baij`` and ``sbaij``. For codes that are intended
to be run as both a single process or with multiple processes, depending
on the ``mpiexec`` command, it is recommended that both sets of
preallocation routines are called for these communicator morphing types.
The call for the incorrect type will simply be ignored without any harm
or message.
.. _sec_pcmpi:
Using PETSc's MPI parallel linear solvers from a non-MPI program
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Using PETSc's MPI linear solver server it is possible to use multiple MPI processes to solve a
a linear system when the application code, including the matrix generation, is run on a single
MPI process (with or without OpenMP). The application code must be built with MPI and must call
``PetscInitialize()`` at the very beginning of the program and end with ``PetscFinalize()``. The
application code may utilize OpenMP.
The code may create multiple matrices and ``KSP`` objects and call ``KSPSolve()``, similarly the
code may utilize the ``SNES`` nonlinear solvers, the ``TS`` ODE integrators, and the ``Tao`` optimization algorithms
which use ``KSP``.
The program must then be launched using the standard approaches for launching MPI programs with the additional
PETSc option ``-mpi_linear_solver_server``. The linear solves are controlled via the options database in the usual manner (using any options prefix
you may have provided via ``KSPSetOptionsPrefix()``, for example ``-ksp_type cg -ksp_monitor -pc_type bjacobi -ksp_view``. The solver options cannot be set via
the functional interface, for example ``KSPSetType()`` etc.
The option ``-mpi_linear_solver_server_view`` will print
a summary of all the systems solved by the MPI linear solver server when the program completes. By default the linear solver server
will only parallelize the linear solve to the extent that it believes is appropriate to obtain speedup for the parallel solve, for example, if the
matrix has 1,000 rows and columns the solution will not be parallelized by default. One can use the option ``-mpi_linear_solver_server_minimum_count_per_rank 5000``
to cause the linear solver server to allow as few as 5,000 unknowns per MPI process in the parallel solve.
See ``PCMPI``, ``PCMPIServerBegin()``, and ``PCMPIServerEnd()`` for more details on the solvers.
For help when anything goes wrong with the MPI linear solver server see ``PCMPIServerBegin()``.
Amdahl's law makes clear that parallelizing only a portion of a numerical code can only provide a limited improvement
in the computation time; thus it is crucial to understand what phases of a computation must be parallelized (via MPI, OpenMP, or some other model)
to ensure a useful increase in performance. One of the crucial phases is likely the generation of the matrix entries; the
use of ``MatSetPreallocationCOO()`` and ``MatSetValuesCOO()`` in an OpenMP code allows parallelizing the generation of the matrix.
See :any:`sec_pcmpi_study` for a study of the use of ``PCMPI`` on a specific PETSc application.
.. rubric:: Footnotes
.. [2]
See :any:`sec_amg` for information on using algebraic multigrid.
.. [3]
This may seem an odd way to implement since it involves the "extra"
multiply by :math:`-A_{11}`. The reason is this is implemented this
way is that this approach works for any number of blocks that may
overlap.
.. rubric:: References
.. bibliography:: /petsc.bib
:filter: docname in docnames
|