1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330
|
/*
Copyright (c) 2006, Michael Kazhdan and Matthew Bolitho
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer. Redistributions in binary form must reproduce
the above copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the distribution.
Neither the name of the Johns Hopkins University nor the names of its contributors
may be used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
*/
///////////////////////////////////
// BaseFEMIntegrator::Constraint //
///////////////////////////////////
template< unsigned int ... TDegrees , unsigned int ... CDegrees , unsigned int CDim >
template< bool IterateFirst >
void BaseFEMIntegrator::Constraint< UIntPack< TDegrees ... > , UIntPack< CDegrees ... > , CDim >::setStencil( CCStencil & stencil ) const
{
static const int Dim = sizeof ... ( TDegrees );
int center = ( 1<<_highDepth )>>1;
int femOffset[Dim] , cOffset[Dim];
static const int overlapStart[] = { ( IterateFirst ? BSplineOverlapSizes< CDegrees , TDegrees >::OverlapStart : BSplineOverlapSizes< TDegrees , CDegrees >::OverlapStart ) ... };
if( IterateFirst )
{
for( int d=0 ; d<Dim ; d++ ) cOffset[d] = center;
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineOverlapSizes< TDegrees , CDegrees >::OverlapSize ... >() , [&]( int d , int i ){ femOffset[d] = i + center + overlapStart[d]; } , [&]( Point< double , CDim >& p ){ p = ccIntegrate( femOffset , cOffset ); } , stencil() );
}
else
{
for( int d=0 ; d<Dim ; d++ ) femOffset[d] = center;
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineOverlapSizes< TDegrees , CDegrees >::OverlapSize ... >() , [&]( int d , int i ){ cOffset[d] = i + center + overlapStart[d]; } , [&]( Point< double , CDim >& p ){ p = ccIntegrate( femOffset , cOffset );} , stencil() );
}
}
template< unsigned int ... TDegrees , unsigned int ... CDegrees , unsigned int CDim >
template< bool IterateFirst >
void BaseFEMIntegrator::Constraint< UIntPack< TDegrees ... > , UIntPack< CDegrees ... > , CDim >::setStencils( PCStencils& stencils ) const
{
static const int Dim = sizeof ... ( TDegrees );
typedef UIntPack< BSplineOverlapSizes< TDegrees, CDegrees >::OverlapSize ... > OverlapSizes;
// [NOTE] We want the center to be at the first node of the brood, which is not the case when childDepth is 1.
int center = ( 1<<_highDepth )>>1 ; center = ( center>>1 )<<1;
int fineCenter[Dim] , femOffset[Dim] , cOffset[Dim];
static const int overlapStart[] = { ( IterateFirst ? BSplineOverlapSizes< CDegrees , TDegrees >::OverlapStart : BSplineOverlapSizes< TDegrees , CDegrees >::OverlapStart ) ... };
std::function< void ( int , int ) > outerUpdateState = [&]( int d , int i ){ fineCenter[Dim-d-1] = i+center; };
std::function< void ( Point< double , CDim >& ) > innerFunction = [&]( Point< double , CDim >& p ){ p = pcIntegrate( femOffset , cOffset ); };
std::function< void ( int , int ) > innerUpdateState = [&]( int d , int i ){ femOffset[d] = IterateFirst ? (i+center/2+overlapStart[d]) : center/2 , cOffset[d] = IterateFirst ? fineCenter[d] : (i+fineCenter[d]+overlapStart[d]); };
std::function< void ( CCStencil& ) > outerFunction = [&]( CCStencil& s )
{
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , OverlapSizes() , innerUpdateState , innerFunction , s() );
};
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , IsotropicUIntPack< Dim , 2 >() , outerUpdateState , outerFunction , stencils() );
}
template< unsigned int ... TDegrees , unsigned int ... CDegrees , unsigned int CDim >
template< bool IterateFirst >
void BaseFEMIntegrator::Constraint< UIntPack< TDegrees ... > , UIntPack< CDegrees ... > , CDim >::setStencils( CPStencils& stencils ) const
{
static const int Dim = sizeof ... ( TDegrees );
typedef UIntPack< BSplineOverlapSizes< TDegrees , CDegrees >::OverlapSize ... > OverlapSizes;
// [NOTE] We want the center to be at the first node of the brood, which is not the case when childDepth is 1.
int center = ( 1<<_highDepth )>>1 ; center = ( center>>1 )<<1;
static const int overlapStart[] = { ( IterateFirst ? BSplineOverlapSizes< CDegrees , TDegrees >::OverlapStart : BSplineOverlapSizes< TDegrees , CDegrees >::OverlapStart ) ... };
int fineCenter[Dim] , femOffset[Dim] , cOffset[Dim];
std::function< void ( int , int ) > outerUpdateState = [&]( int d , int i ){ fineCenter[Dim-d-1] = i+center; };
std::function< void ( Point< double , CDim >& ) > innerFunction = [&]( Point< double , CDim >& p ){ p = cpIntegrate( femOffset , cOffset ); };
std::function< void ( int , int ) > innerUpdateState = [&]( int d , int i ){ femOffset[d] = IterateFirst ? (i+fineCenter[d]+overlapStart[d]) : fineCenter[d] , cOffset[d] = IterateFirst ? center/2 : (i+center/2+overlapStart[d]); };
std::function< void ( CCStencil& ) > outerFunction = [&]( CCStencil& s )
{
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , OverlapSizes() , innerUpdateState , innerFunction , s() );
};
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , IsotropicUIntPack< Dim , 2 >() , outerUpdateState , outerFunction , stencils() );
}
///////////////////////////////
// BaseFEMIntegrator::System //
///////////////////////////////
template< unsigned int ... TDegrees >
template< bool IterateFirst >
void BaseFEMIntegrator::System< UIntPack< TDegrees ... > >::setStencil( CCStencil & stencil ) const
{
static const int Dim = sizeof ... ( TDegrees );
int center = ( 1<<_highDepth )>>1;
int offset1[Dim] , offset2[Dim];
static const int overlapStart[] = { BSplineOverlapSizes< TDegrees , TDegrees >::OverlapStart ... };
if( IterateFirst )
{
for( int d=0 ; d<Dim ; d++ ) offset2[d] = center;
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineOverlapSizes< TDegrees , TDegrees >::OverlapSize ... >() , [&]( int d , int i ){ offset1[d] = i + center + overlapStart[d]; } , [&]( double& v ){ v = ccIntegrate( offset1 , offset2 ); } , stencil() );
}
else
{
for( int d=0 ; d<Dim ; d++ ) offset1[d] = center;
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineOverlapSizes< TDegrees , TDegrees >::OverlapSize ... >() , [&]( int d , int i ){ offset2[d] = i + center + overlapStart[d]; } , [&]( double& v ){ v = ccIntegrate( offset1 , offset2 ); } , stencil() );
}
}
template< unsigned int ... TDegrees >
template< bool IterateFirst >
void BaseFEMIntegrator::System< UIntPack< TDegrees ... > >::setStencils( PCStencils& stencils ) const
{
static const int Dim = sizeof ... ( TDegrees );
typedef UIntPack< BSplineOverlapSizes< TDegrees , TDegrees >::OverlapSize ... > OverlapSizes;
// [NOTE] We want the center to be at the first node of the brood
// Which is not the case when childDepth is 1.
int center = ( 1<<_highDepth )>>1 ; center = ( center>>1 )<<1;
static const int overlapStart[] = { BSplineOverlapSizes< TDegrees , TDegrees >::OverlapStart ... };
int fineCenter[Dim] , offset1[Dim] , offset2[Dim];
std::function< void ( int , int ) > outerUpdateState = [&]( int d , int i ){ fineCenter[Dim-d-1] = i+center; };
std::function< void ( double& ) > innerFunction = [&]( double& v ){ v = pcIntegrate( offset1 , offset2 ); };
std::function< void ( int , int ) > innerUpdateState = [&]( int d , int i ){ offset1[d] = IterateFirst ? (i+center/2+overlapStart[d]) : center/2 , offset2[d] = IterateFirst ? fineCenter[d] : (i+fineCenter[d]+overlapStart[d]); };
std::function< void ( CCStencil& ) > outerFunction = [&]( CCStencil& s )
{
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , OverlapSizes() , innerUpdateState , innerFunction , s() );
};
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , IsotropicUIntPack< Dim , 2 >() , outerUpdateState , outerFunction , stencils() );
}
/////////////////////////////////
// BaseFEMIntegrator::UpSample //
/////////////////////////////////
template< unsigned int ... TDegrees >
void BaseFEMIntegrator::RestrictionProlongation< UIntPack< TDegrees ... > >::setStencil( UpSampleStencil & stencil ) const
{
static const int Dim = sizeof ... ( TDegrees );
int highCenter = ( 1<<_highDepth )>>1;
int pOff[Dim] , cOff[Dim];
static const int upSampleStart[] = { BSplineSupportSizes< TDegrees >::UpSampleStart ... };
for( int d=0 ; d<Dim ; d++ ) pOff[d] = highCenter/2;
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineSupportSizes< TDegrees >::UpSampleSize ... >() , [&]( int d , int i ){ cOff[d] = i + highCenter + upSampleStart[d]; } , [&]( double& v ){ v = upSampleCoefficient( pOff , cOff ); } , stencil() );
}
template< unsigned int ... TDegrees >
void BaseFEMIntegrator::RestrictionProlongation< UIntPack< TDegrees ... > >::setStencils( DownSampleStencils& stencils ) const
{
static const int Dim = sizeof ... ( TDegrees );
// [NOTE] We want the center to be at the first node of the brood, which is not the case when childDepth is 1.
int highCenter = ( 1<<_highDepth )>>1 ; highCenter = ( highCenter>>1 )<<1;
int pOff[Dim] , cOff[Dim];
static const int offsets[] = { BSplineSupportSizes< TDegrees >::DownSample0Start ... };
std::function< void ( double& ) > innerFunction = [&]( double& v ){ v = upSampleCoefficient( pOff , cOff ); };
std::function< void ( int , int ) > innerUpdateState = [&]( int d , int i ){ pOff[d] = cOff[d]/2 + i + offsets[d]; };
std::function< void ( int , int ) > outerUpdateState = [&]( int d , int i ){ cOff[Dim-d-1] = i+highCenter; };
std::function< void ( DownSampleStencil& ) > outerFunction = [&]( DownSampleStencil& s )
{
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , UIntPack< ( - BSplineSupportSizes< TDegrees >::DownSample0Start + BSplineSupportSizes< TDegrees >::DownSample1End + 1 ) ... >() , innerUpdateState , innerFunction , s() );
};
WindowLoop< Dim >::Run( IsotropicUIntPack< Dim , 0 >() , IsotropicUIntPack< Dim , 2 >() , outerUpdateState , outerFunction , stencils() );
}
///////////////////////////////
// FEMIntegrator::Constraint //
///////////////////////////////
template< unsigned int ... TSignatures , unsigned int ... TDerivatives , unsigned int ... CSignatures , unsigned int ... CDerivatives , unsigned int CDim >
Point< double , CDim > FEMIntegrator::Constraint< UIntPack< TSignatures ... > , UIntPack< TDerivatives ... > , UIntPack< CSignatures ... > , UIntPack< CDerivatives ... > , CDim >::_integrate( IntegrationType iType , const int off1[] , const int off2[] ) const
{
Point< double , CDim > integral;
for( unsigned int i=0 ; i<_weightedIndices.size() ; i++ )
{
const _WeightedIndices& w = _weightedIndices[i];
unsigned int _d1[Dim] , _d2[Dim];
TFactorDerivatives( w.d1 , _d1 );
CFactorDerivatives( w.d2 , _d2 );
double __integral = _integral( iType , off1 , off2 , _d1 , _d2 );
for( unsigned int j=0 ; j<w.indices.size() ; j++ ) integral[ w.indices[j].first ] += w.indices[j].second * __integral;
}
return integral;
}
#ifndef MOD
#define MOD( a , b ) ( (a)>0 ? (a) % (b) : ( (b) - ( -(a) % (b) ) ) % (b) )
#endif // MOD
/////////////
// FEMTree //
/////////////
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
void FEMTree< Dim , Real >::setMultiColorIndices( UIntPack< FEMSigs ... > , int depth , std::vector< std::vector< size_t > >& indices ) const
{
_setMultiColorIndices( UIntPack< FEMSigs ... >() , _sNodesBegin(depth) , _sNodesEnd(depth) , indices );
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
void FEMTree< Dim , Real >::_setMultiColorIndices( UIntPack< FEMSigs ... > , node_index_type start , node_index_type end , std::vector< std::vector< size_t > >& indices ) const
{
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
typedef UIntPack< ( 1 - BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree , FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > Moduli;
static const unsigned int Colors = WindowSize< Moduli >::Size;
indices.resize( Colors );
struct ColorCount
{
size_t count[ Colors ];
ColorCount( void ){ memset( count , 0 , sizeof(count) ); }
};
std::vector< ColorCount > counts( ThreadPool::NumThreads() );
size_t count[ Colors ];
memset( count , 0 , sizeof(count) );
auto MCIndex = [&] ( const FEMTreeNode* node )
{
LocalDepth d ; LocalOffset off ; _localDepthAndOffset( node , d , off );
int index = 0;
for( int dd=0 ; dd<Dim ; dd++ ) index = index * Moduli::Values[Dim-dd-1] + MOD( off[Dim-dd-1] , Moduli::Values[Dim-dd-1] );
return index;
};
ThreadPool::Parallel_for( start , end , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
int idx = MCIndex( _sNodes.treeNodes[i] );
counts[thread].count[idx]++;
}
}
);
for( size_t t=0 ; t<counts.size() ; t++ ) for( int i=0 ; i<Colors ; i++) count[i] += counts[t].count[i];
for( int i=0 ; i<Colors ; i++ ) indices[i].reserve( count[i] ) , count[i]=0;
for( node_index_type i=start ; i<end ; i++ ) if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
int idx = MCIndex( _sNodes.treeNodes[i] );
indices[idx].push_back( i - start );
}
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , typename TDotT , typename SORWeights , unsigned int ... PointDs >
int FEMTree< Dim , Real >::_solveFullSystemGS( UIntPack< FEMSigs ... > , const typename BaseFEMIntegrator::System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , LocalDepth depth , Pointer( T ) solution , ConstPointer( T ) prolongedSolution , ConstPointer( T ) constraints , TDotT Dot , int iters , bool coarseToFine , SORWeights sorWeights , _SolverStats& stats , bool computeNorms , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
double& systemTime = stats.systemTime;
double& solveTime = stats. solveTime;
systemTime = solveTime = 0.;
CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > > ccStencil;
PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > > pcStencils;
F.template setStencil< false >( ccStencil );
F.template setStencils< true >( pcStencils );
double bNorm=0 , inRNorm=0 , outRNorm=0;
if( depth>=0 )
{
SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size > M;
double t = Time();
Pointer( Real ) D = AllocPointer< Real >( _sNodesEnd( depth ) - _sNodesBegin( depth ) );
Pointer( T ) _constraints = AllocPointer< T >( _sNodesSize( depth ) );
_getSliceMatrixAndProlongationConstraints( UIntPack< FEMSigs ... >() , F , M , D , bsData , depth , _sNodesBegin( depth ) , _sNodesEnd( depth ) , prolongedSolution , _constraints , ccStencil , pcStencils , interpolationInfo... );
ThreadPool::Parallel_for( _sNodesBegin(depth) , _sNodesEnd(depth) , [&]( unsigned int , size_t i ){ _constraints[ i - _sNodesBegin(depth) ] = constraints[ _sNodes.treeNodes[i]->nodeData.nodeIndex ] - _constraints[ i - _sNodesBegin(depth) ]; } );
{
node_index_type begin = _sNodesBegin( depth ) , end = _sNodesEnd( depth );
for( node_index_type i=begin ; i<end ; i++ ) if( M.rowSize( i-begin ) ) D[i-begin] *= sorWeights[i];
}
systemTime += Time()-t;
// The list of multi-colored indices for each in-memory slice
std::vector< std::vector< size_t > > mcIndices;
_setMultiColorIndices( UIntPack< FEMSigs ... >() , _sNodesBegin( depth ) , _sNodesEnd( depth ) , mcIndices );
ConstPointer( T ) B = _constraints;
Pointer( T ) X = GetPointer( &solution[0] + _sNodesBegin( depth ) , _sNodesSize( depth ) );
if( computeNorms )
{
std::vector< double > bNorms( ThreadPool::NumThreads() , 0 ) , inRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , M.rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = M[j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + M.rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += X[ e->N ] * e->Value;
bNorms[thread] += Dot( B[j] , B[j] );
inRNorms[thread] += Dot( temp - B[j] , temp - B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) bNorm += bNorms[t] , inRNorm += inRNorms[t];
}
t = Time();
MemoryUsage();
for( int i=0 ; i<iters ; i++ ) M.gsIteration( mcIndices , ( ConstPointer( Real ) )D , B , X , coarseToFine , true );
FreePointer( D );
solveTime += Time() - t;
if( computeNorms )
{
std::vector< double > outRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , M.rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = M[j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + M.rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += X[ e->N ] * e->Value;
outRNorms[thread] += Dot( temp-B[j] , temp-B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) outRNorm += outRNorms[t];
}
FreePointer( _constraints );
}
if( computeNorms ) stats.bNorm2 = bNorm , stats.inRNorm2 = inRNorm , stats.outRNorm2 = outRNorm;
MemoryUsage();
return iters;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , typename TDotT , typename SORWeights , unsigned int ... PointDs >
int FEMTree< Dim , Real >::_solveSlicedSystemGS( UIntPack< FEMSigs ... > , const typename BaseFEMIntegrator::System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , LocalDepth depth , Pointer( T ) solution , ConstPointer( T ) prolongedSolution , ConstPointer( T ) constraints , TDotT Dot , int iters , bool coarseToFine , unsigned int sliceBlockSize , SORWeights sorWeights , _SolverStats& stats , bool computeNorms , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
if( sliceBlockSize<=0 ) return _solveFullSystemGS( UIntPack< FEMSigs ... >() , F , bsData , depth , solution , prolongedSolution , constraints , Dot , iters , coarseToFine , sorWeights , stats , computeNorms , interpolationInfo ... );
CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > > ccStencil;
PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > > pcStencils;
F.template setStencil< false >( ccStencil );
F.template setStencils< true >( pcStencils );
{
// Assuming Degree=2 and we are solving forward using two iterations, the pattern of relaxations should look like:
// +--+--+--+--+--+
// * | | | | |
// o| | | | | |
// o | | | | | |
// o | | | | | |
// o | | | | | |
// o | | | | | |
// | * | | | |
// | *| | | | |
// |* | | | | |
// * | | | | |
// o| | | | | |
// o | | | | | |
// | | * | | |
// | | *| | | |
// | |* | | | |
// | * | | | |
// | *| | | | |
// |* | | | | |
// | | | * | |
// | | | *| | |
// | | |* | | |
// | | * | | |
// | | *| | | |
// | |* | | | |
// | | | | * |
// | | | | *| |
// | | | |* | |
// | | | * | |
// | | | *| | |
// | | |* | | |
// | | * | | |
// | | | | | *
// | | | | | *|
// | | | | |* |
// | | | | * |
// | | | | *| |
// | | | |* | |
// | | | | | | o
// | | | | | | o
// | | | | | |o
// | | | | | *
// | | | | | *|
// | | | | |* |
const int SliceBlockSize = (int)sliceBlockSize;
// OverlapRadius = Degree
const int OverlapRadii[] = { ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... };
const int OverlapBlockRadius = ( OverlapRadii[Dim-1] + SliceBlockSize - 1 ) / SliceBlockSize;
static const int LastFEMSig = UIntPack< FEMSigs ... >::template Get< Dim-1 >();
int _sliceBegin = _BSplineBegin< LastFEMSig >( depth ) , _sliceEnd = _BSplineEnd< LastFEMSig >( depth );
int blockBegin = ( _sliceBegin - ( SliceBlockSize - 1 ) ) / SliceBlockSize , blockEnd = ( _sliceEnd + ( SliceBlockSize - 1 ) ) / SliceBlockSize;
std::function< int ( int ) > BlockFirst = [&]( int b ){ return std::max< int >( b * SliceBlockSize , _sliceBegin ); };
std::function< int ( int ) > BlockLast = [&]( int b ){ return std::min< int >( b * SliceBlockSize + SliceBlockSize - 1 , _sliceEnd - 1 ); };
auto BBlock = [&]( int d , int b , ConstPointer( T ) B )
{
return GetPointer( &B[0] + _sNodesBegin( d , BlockFirst( b ) ) , _sNodesEnd( d , BlockLast( b ) ) - _sNodesBegin( d , BlockFirst( b ) ) );
};
auto XBlocks = [&]( int d , int b , Pointer( T ) X )
{
return GetPointer( &X[0] + _sNodesBegin( d , BlockFirst( b ) ) , _sNodesBegin( d , BlockFirst( b - OverlapBlockRadius ) ) - _sNodesBegin( d , BlockFirst( b ) ) , _sNodesEnd( d , BlockLast( b + OverlapBlockRadius ) ) - _sNodesBegin( d , BlockFirst( b ) ) );
};
double& systemTime = stats.systemTime;
double& solveTime = stats. solveTime;
systemTime = solveTime = 0.;
struct BlockWindow
{
protected:
int _begin , _end;
public:
BlockWindow( int begin , int end )
{
if( begin<=end ) _begin = begin , _end = end;
else _begin = end+1 , _end = begin+1;
}
int size( void ) const { return _end-_begin; }
BlockWindow& operator += ( int off ){ _begin += off , _end += off ; return *this; }
BlockWindow& operator -= ( int off ){ _begin -= off , _end -= off ; return *this; }
BlockWindow& operator++ ( void ){ _begin++ , _end++ ; return *this; }
BlockWindow& operator-- ( void ){ _begin-- , _end-- ; return *this; }
int begin( bool forward ) const { return forward ? _begin : _end-1; }
int end ( bool forward ) const { return forward ? _end : _begin-1; }
bool inBlock( int b ) const { return b>=_begin && b<_end; }
};
double bNorm=0 , inRNorm=0 , outRNorm=0;
bool forward = !coarseToFine;
int residualOffset = computeNorms ? OverlapBlockRadius : 0;
// Set the number of in-memory blocks required for a temporally blocked solver
const int ColorModulus = OverlapBlockRadius;
// The number of in-core blocks over which we relax
// [WARNING] If the block size is larger than one, we may be able to use fewer blocks
int solveBlocks = std::max< int >( 0 , std::min< int >( ColorModulus*iters - ( ColorModulus-1 ) , blockEnd-blockBegin ) );
// The number of in-core blocks over which we either solve or compute residuals
int matrixBlocks = std::max< int >( 1 , std::min< int >( solveBlocks+2*residualOffset , blockEnd-blockBegin ) );
// The list of matrices for each in-memory block
Pointer( SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size > ) _M = NewPointer< SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size > >( matrixBlocks );
Pointer( Pointer( Real ) ) _D = AllocPointer< Pointer( Real ) >( matrixBlocks );
std::vector< Pointer( T ) > _constraints( matrixBlocks );
for( int i=0 ; i<matrixBlocks ; i++ ) _D[i] = NullPointer( Real ) , _constraints[i] = NullPointer( T );
// The list of multi-colored indices for each in-memory block
Pointer( std::vector< std::vector< size_t > > ) mcIndices = NewPointer< std::vector< std::vector< size_t > > >( solveBlocks );
int dir = forward ? 1 : -1 , start = forward ? blockBegin : blockEnd-1 , end = forward ? blockEnd : blockBegin-1;
const BlockWindow FullWindow( blockBegin , blockEnd );
BlockWindow residualWindow( FullWindow.begin(forward) , FullWindow.begin(forward) - ( ColorModulus*iters - ( ColorModulus-1 ) ) * dir - 2*residualOffset*dir );
BlockWindow solveWindow( FullWindow.begin(forward) - residualOffset*dir , FullWindow.begin(forward) - residualOffset*dir - ( ColorModulus*iters - ( ColorModulus-1 ) ) * dir );
// If we are solving forward we start in a block S with S mod ColorModulus = ColorModulus-1
// and end in a block E with E mod ColorModulus = 0
while( MOD( solveWindow.begin(!forward) , ColorModulus )!=( forward ? ColorModulus-1 : 0 ) ) solveWindow -= dir , residualWindow -= dir;
size_t maxBlockSize = 0;
BlockWindow _residualWindow = residualWindow;
for( ; _residualWindow.end(!forward)*dir<FullWindow.end(forward)*dir ; _residualWindow += dir )
{
int b = _residualWindow.begin(!forward);
if( FullWindow.inBlock( b ) ) maxBlockSize = std::max< size_t >( maxBlockSize , _sNodesEnd( depth , BlockLast( b ) ) - _sNodesBegin( depth , BlockFirst( b ) ) );
}
if( maxBlockSize>std::numeric_limits< matrix_index_type >::max() ) ERROR_OUT( "more entries in a block than can be indexed in " , sizeof(matrix_index_type) , " bytes" );
for( int i=0 ; i<matrixBlocks ; i++ ) _constraints[i] = AllocPointer< T >( maxBlockSize ) , _D[i] = AllocPointer< Real >( maxBlockSize );
for( ; residualWindow.end(!forward)*dir<FullWindow.end(forward)*dir ; residualWindow += dir , solveWindow += dir )
{
double t;
{
int frontSolveBlock = solveWindow.begin(!forward);
int residualBlock = residualWindow.begin(!forward);
// Get the leading matrix and compute the constraint norm / initial residual
// [WARNNG] This is likely wrong. We probably have to pull this into its own for "for( int _c=0 ; _c<ColorModulus ; _c++ )" loop
// to ensure that adjacent read-only blocks have not been updated yet.
if( FullWindow.inBlock( residualBlock ) )
{
int b = residualBlock , _b = MOD( b , matrixBlocks );
t = Time();
_getSliceMatrixAndProlongationConstraints( UIntPack< FEMSigs ... >() , F , _M[_b] , _D[_b] , bsData , depth , _sNodesBegin( depth , BlockFirst( b ) ) , _sNodesEnd( depth , BlockLast( b ) ) , prolongedSolution , _constraints[_b] , ccStencil , pcStencils , interpolationInfo... );
size_t begin = _sNodesBegin( depth , BlockFirst( b ) ) , end = _sNodesEnd( depth , BlockLast( b ) );
ThreadPool::Parallel_for( begin , end , [&]( unsigned int , size_t i ){ _constraints[_b][ i-begin ] = constraints[i] - _constraints[_b][ i-begin ]; } );
{
node_index_type begin = _sNodesBegin( depth , BlockFirst( b ) ) , end = _sNodesEnd( depth , BlockLast( b ) );
for( node_index_type i=begin ; i<end ; i++ ) if( _M[_b].rowSize( i-begin ) ) _D[_b][i-begin] *= sorWeights[i];
}
systemTime += Time()-t;
if( computeNorms )
{
ConstPointer( T ) B = _constraints[_b];
ConstPointer( T ) X = XBlocks( depth , b , solution );
std::vector< double > bNorms( ThreadPool::NumThreads() , 0 ) , inRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , _M[_b].rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = _M[_b][j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + _M[_b].rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += X[ e->N ] * e->Value;
bNorms[thread] += Dot( B[j] , B[j] );
inRNorms[thread] += Dot( temp - B[j] , temp - B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) bNorm += bNorms[t] , inRNorm += inRNorms[t];
}
}
t = Time();
// Get the leading multi-color indices
if( iters && FullWindow.inBlock( frontSolveBlock ) )
{
int b = frontSolveBlock , _b = MOD( b , matrixBlocks ) , __b = MOD( b , solveBlocks );
for( int i=0 ; i<int( mcIndices[__b].size() ) ; i++ ) mcIndices[__b][i].clear();
_setMultiColorIndices( UIntPack< FEMSigs ... >() , _sNodesBegin( depth , BlockFirst( b ) ) , _sNodesEnd( depth , BlockLast( b ) ) , mcIndices[__b] );
}
}
// Relax the system
for( int block=solveWindow.begin(!forward) ; solveWindow.inBlock(block) ; block-=dir*ColorModulus ) if( FullWindow.inBlock( block ) )
{
int b = block , _b = MOD( b , matrixBlocks ) , __b = MOD( b , solveBlocks );
ConstPointer( T ) B = _constraints[_b];
Pointer( T ) X = XBlocks( depth , b , solution );
_M[_b].gsIteration( mcIndices[__b] , ( ConstPointer( Real ) )_D[_b] , B , X , coarseToFine , true );
}
solveTime += Time() - t;
// Compute the final residual
{
int residualBlock = residualWindow.begin(forward);
if( computeNorms && FullWindow.inBlock( residualBlock ) )
{
int b = residualBlock , _b = MOD( b , matrixBlocks );
ConstPointer( T ) B = _constraints[_b];
ConstPointer( T ) X = XBlocks( depth , b , solution );
std::vector< double > outRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , _M[_b].rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = _M[_b][j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + _M[_b].rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += X[ e->N ] * e->Value;
outRNorms[thread] += Dot( temp-B[j] , temp-B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) outRNorm += outRNorms[t];
}
}
}
for( int i=0 ; i<matrixBlocks ; i++ ) FreePointer( _D[i] );
for( int i=0 ; i<matrixBlocks ; i++ ) FreePointer( _constraints[i] );
if( computeNorms ) stats.bNorm2 = bNorm , stats.inRNorm2 = inRNorm , stats.outRNorm2 = outRNorm;
DeletePointer( _M );
DeletePointer( mcIndices );
FreePointer( _D );
}
MemoryUsage();
return iters;
}
#undef MOD
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , typename TDotT , unsigned int ... PointDs >
int FEMTree< Dim , Real >::_solveSystemCG( UIntPack< FEMSigs ... > , const typename BaseFEMIntegrator::System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , LocalDepth depth , Pointer( T ) solution , ConstPointer( T ) prolongedSolution , ConstPointer( T ) constraints , TDotT Dot , int iters , bool coarseToFine , _SolverStats& stats , bool computeNorms , double accuracy , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
int iter = 0;
Pointer( T ) X = GetPointer( &solution[0] + _sNodesBegin(depth) , _sNodesSize(depth) );
ConstPointer( T ) B = GetPointer( &constraints[0] + _sNodesBegin(depth) , _sNodesSize(depth) );
SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size > M;
double& systemTime = stats.systemTime;
double& solveTime = stats. solveTime;
systemTime = solveTime = 0.;
// Get the system matrix (and adjust the right-hand-side based on the coarser solution if prolonging)
systemTime = Time();
Pointer( T ) _constraints = AllocPointer< T >( _sNodesSize( depth ) );
B = _constraints;
CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > > ccStencil;
PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > > pcStencils;
F.template setStencil< false >( ccStencil );
F.template setStencils< true >( pcStencils );
_getSliceMatrixAndProlongationConstraints( UIntPack< FEMSigs ... >() , F , M , NullPointer( Real ) , bsData , depth , _sNodesBegin( depth ) , _sNodesEnd( depth ) , prolongedSolution , _constraints , ccStencil , pcStencils , interpolationInfo... );
ThreadPool::Parallel_for( _sNodesBegin(depth) , _sNodesEnd(depth) , [&]( unsigned int , size_t i ){ _constraints[ i - _sNodesBegin(depth) ] = constraints[i] - _constraints[ i - _sNodesBegin(depth) ]; } );
systemTime = Time()-systemTime;
solveTime = Time();
// Solve the linear system
accuracy = Real( accuracy / 100000 ) * M.rows();
int dims[] = { ( _BSplineEnd< FEMSigs >( depth ) - _BSplineBegin< FEMSigs >( depth ) ) ... };
size_t nonZeroRows = 0;
for( matrix_index_type i=0 ; i<(matrix_index_type)M.rows() ; i++ ) if( M.rowSize(i) ) nonZeroRows++;
size_t totalDim = 1;
for( int d=0 ; d<Dim ; d++ ) totalDim *= dims[d];
BoundaryType bTypes[] = { FEMSignature< FEMSigs >::BType ... };
bool hasPartitionOfUnity = true;
for( int d=0 ; d<Dim ; d++ ) hasPartitionOfUnity &= HasPartitionOfUnity( bTypes[d] );
bool addDCTerm = ( nonZeroRows==totalDim && !ConstrainsDCTerm( interpolationInfo... ) && hasPartitionOfUnity && F.vanishesOnConstants() );
double bNorm = 0 , inRNorm = 0 , outRNorm = 0;
if( computeNorms )
{
std::vector< double > bNorms( ThreadPool::NumThreads() , 0 ) , inRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , M.rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = M[j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + M.rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += X[ e->N ] * e->Value;
bNorms[thread] += Dot( B[j] , B[j] );
inRNorms[thread] += Dot( temp-B[j] , temp-B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) bNorm += bNorms[t] , inRNorm += inRNorms[t];
}
iters = (int)std::min< size_t >( nonZeroRows , iters );
struct SPDFunctor
{
protected:
const SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size >& _M;
bool _addDCTerm;
public:
SPDFunctor( const SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size >& M , bool addDCTerm ) : _M(M) , _addDCTerm(addDCTerm){ }
void operator()( ConstPointer( T ) in , Pointer( T ) out ) const
{
_M.multiply( in , out );
if( _addDCTerm )
{
T average = {};
for( matrix_index_type i=0 ; i<(matrix_index_type)_M.rows() ; i++ ) average += in[i];
average /= _M.rows();
for( matrix_index_type i=0 ; i<(matrix_index_type)_M.rows() ; i++ ) out[i] += average;
}
}
};
if( iters ) iter = (int)SolveCG< SPDFunctor , T , Real >( SPDFunctor( M , addDCTerm ) , M.rows() , ( ConstPointer( T ) )B , iters , X , Real( accuracy ) , Dot );
solveTime = Time()-solveTime;
if( computeNorms )
{
std::vector< double > outRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , M.rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = M[j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + M.rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += X[ e->N ] * e->Value;
outRNorms[thread] += Dot( temp-B[j] , temp-B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) outRNorm += outRNorms[t];
stats.bNorm2 = bNorm , stats.inRNorm2 = inRNorm , stats.outRNorm2 = outRNorm;
}
FreePointer( _constraints );
MemoryUsage();
return iter;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , typename TDotT , unsigned int ... PointDs >
void FEMTree< Dim , Real >::_solveRegularMG( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , LocalDepth depth , Pointer( T ) solution , ConstPointer( T ) constraints , TDotT Dot , int vCycles , int iters , _SolverStats& stats , bool computeNorms , double cgAccuracy , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
double& systemTime = stats.systemTime;
double& solveTime = stats. solveTime;
std::vector< SparseMatrix< Real , matrix_index_type > > P( depth ) , R( depth ) , M( depth+1 );
std::vector< Pointer( Real ) > D( depth+1 );
std::vector< Pointer( T ) > B( depth+1 ) , X( depth+1 ) , MX( depth+1 );
std::vector< std::vector< std::vector< size_t > > > multiColorIndices( depth+1 );
systemTime = Time();
M.back() = systemMatrix< Real >( UIntPack< FEMSigs ... >() , F , depth , interpolationInfo ... );
for( int d=depth ; d>0 ; d-- )
{
R[d-1] = downSampleMatrix( UIntPack< FEMSigs ... >() , d );
P[d-1] = R[d-1].transpose();
M[d-1] = R[d-1] * M[d] * P[d-1];
}
for( int d=0 ; d<=depth ; d++ )
{
size_t dim = M[d].rows();
D[d] = AllocPointer< Real >( dim );
MX[d] = AllocPointer< T >( dim );
M[d].setDiagonalR( D[d] );
setMultiColorIndices( UIntPack< FEMSigs ... >() , d , multiColorIndices[d] );
if( d<depth )
{
X[d] = AllocPointer< T >( dim );
B[d] = AllocPointer< T >( dim );
}
}
X.back() = solution + nodesBegin( depth );
ConstPointer( T ) _B = constraints + nodesBegin( depth );
systemTime = Time() - systemTime;
solveTime = Time();
double bNorm = 0 , inRNorm = 0 , outRNorm = 0;
if( computeNorms )
{
const SparseMatrix< Real , matrix_index_type >& _M = M.back();
ConstPointer( T ) _X = X.back();
std::vector< double > bNorms( ThreadPool::NumThreads() , 0 ) , inRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , _M.rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = _M[j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + _M.rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += _X[ e->N ] * e->Value;
bNorms[thread] += Dot( _B[j] , _B[j] );
inRNorms[thread] += Dot( temp-_B[j] , temp-_B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) bNorm += bNorms[t] , inRNorm += inRNorms[t];
}
for( int v=0 ; v<vCycles ; v++ )
{
// Restriction
for( int d=depth ; d>0 ; d-- )
{
ConstPointer( T ) __B = d==depth ? _B : B[d];
for( int i=0 ; i<iters ; i++ ) M[d].gsIteration( multiColorIndices[d] , D[d] , __B , X[d] , true , true );
M[d].multiply( X[d] , MX[d] );
for( matrix_index_type i=0 ; i<(matrix_index_type)M[d].rows() ; i++ ) MX[d][i] = __B[i] - MX[d][i];
R[d-1].multiply( MX[d] , B[d-1] );
memset( X[d-1] , 0 , sizeof( T )*M[d-1].rows() );
}
// Base
{
int d = 0;
ConstPointer( T ) __B = d==depth ? _B : B[d];
struct SPDFunctor
{
protected:
const SparseMatrix< Real , matrix_index_type >& _M;
bool _addDCTerm;
public:
SPDFunctor( const SparseMatrix< Real , matrix_index_type >& M , bool addDCTerm ) : _M(M) , _addDCTerm(addDCTerm){ }
void operator()( ConstPointer( T ) in , Pointer( T ) out ) const
{
_M.multiply( in , out );
if( _addDCTerm )
{
T average = {};
for( matrix_index_type i=0 ; i<(matrix_index_type)_M.rows() ; i++ ) average += in[i];
average /= _M.rows();
for( matrix_index_type i=0 ; i<(matrix_index_type)_M.rows() ; i++ ) out[i] += average;
}
}
};
size_t nonZeroRows = 0;
for( matrix_index_type i=0 ; i<(matrix_index_type)M[d].rows() ; i++ ) if( M[d].rowSize(i) ) nonZeroRows++;
size_t totalDim = 1;
int dims[] = { ( _BSplineEnd< FEMSigs >( depth ) - _BSplineBegin< FEMSigs >( depth ) ) ... };
for( int dd=0 ; dd<Dim ; dd++ ) totalDim *= dims[dd];
BoundaryType bTypes[] = { FEMSignature< FEMSigs >::BType ... };
bool hasPartitionOfUnity = true;
for( int dd=0 ; dd<Dim ; dd++ ) hasPartitionOfUnity &= HasPartitionOfUnity( bTypes[dd] );
bool addDCTerm = ( nonZeroRows==totalDim && !ConstrainsDCTerm( interpolationInfo... ) && hasPartitionOfUnity && F.vanishesOnConstants() );
SolveCG< SPDFunctor , T , Real >( SPDFunctor( M[d] , addDCTerm ) , M[d].rows() , ( ConstPointer( T ) )__B , nonZeroRows , X[d] , Real( cgAccuracy ) , Dot );
}
// Prolongation
for( int d=1 ; d<=depth ; d++ )
{
ConstPointer( T ) __B = d==depth ? _B : B[d];
P[d-1].multiply( X[d-1] , X[d] , MULTIPLY_ADD );
for( int i=0 ; i<iters ; i++ ) M[d].gsIteration( multiColorIndices[d] , D[d] , __B , X[d] , false , true );
}
}
if( computeNorms )
{
const SparseMatrix< Real , matrix_index_type >& _M = M.back();
ConstPointer( T ) _X = X.back();
std::vector< double > outRNorms( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( 0 , _M.rows() , [&]( unsigned int thread , size_t j )
{
T temp = {};
ConstPointer( MatrixEntry< Real , matrix_index_type > ) start = _M[j];
ConstPointer( MatrixEntry< Real , matrix_index_type > ) end = start + _M.rowSize(j);
ConstPointer( MatrixEntry< Real , matrix_index_type > ) e;
for( e=start ; e!=end ; e++ ) temp += _X[ e->N ] * e->Value;
outRNorms[thread] += Dot( temp-_B[j] , temp-_B[j] );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) outRNorm += outRNorms[t];
stats.bNorm2 = bNorm , stats.inRNorm2 = inRNorm , stats.outRNorm2 = outRNorm;
}
solveTime = Time() - solveTime;
MemoryUsage();
for( int d=0 ; d<=depth ; d++ )
{
FreePointer( D[d] );
FreePointer( MX[d] );
if( d<depth )
{
FreePointer( X[d] );
FreePointer( B[d] );
}
}
}
//#if defined( __GNUC__ ) && __GNUC__ < 5
//#warning "you've got me gcc version<5"
//template< unsigned int Dim , class Real >
//template< unsigned int ... FEMSigs >
//int FEMTree< Dim , Real >::_getMatrixRowSize( UIntPack< FEMSigs ... > , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors ) const
//#else // !__GNUC__ || __GNUC__ >=5
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
int FEMTree< Dim , Real >::_getMatrixRowSize( const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors ) const
//#endif // __GNUC__ || __GNUC__ < 4
{
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
int count = 0;
const FEMTreeNode* const * _nodes = neighbors.neighbors.data;
for( int i=0 ; i<WindowSize< OverlapSizes >::Size ; i++ ) if( _isValidFEM1Node( _nodes[i] ) ) count++;
return count;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
int FEMTree< Dim , Real >::_getProlongedMatrixRowSize( const FEMTreeNode* node , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pNeighbors ) const
{
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] This change needs to be validated" )
#endif // SHOW_WARNINGS
int count = 0;
static const WindowLoopData< OverlapSizes > loopData( []( int c , int* start , int*end ){ _SetParentOverlapBounds( FEMDegrees() , FEMDegrees() , c , start , end );} );
if( node->parent )
{
int c = (int)( node - node->parent->children );
const unsigned int size = loopData.size[c];
const unsigned int* indices = loopData.indices[c];
ConstPointer( FEMTreeNode * const ) nodes = pNeighbors.neighbors().data;
for( unsigned int i=0 ; i<size ; i++ ) if( _isValidFEM1Node( nodes[ indices[i] ] ) ) count++;
}
return count;
}
// Given a node:
// -- For each of its neighbors:
// ---- Compute the weighted sum of the product of the evaluations of the associated basis functions over the points
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int PointD >
void FEMTree< Dim , Real >::_addPointValues( UIntPack< FEMSigs ... > , StaticWindow< Real , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pointValues , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , const InterpolationInfo< T , PointD >* interpolationInfo ) const
{
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< ( -BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportStart ) ... > LeftSupportRadii;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportEnd ... > RightSupportRadii;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportEnd ... > LeftPointSupportRadii;
typedef UIntPack< ( -BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportStart ) ... > RightPointSupportRadii;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > SupportSizes;
if( !( FEMDegrees() >= IsotropicUIntPack< Dim , PointD >() ) ) ERROR_OUT( "Insufficient derivatives" );
if( !interpolationInfo ) return;
const InterpolationInfo< T , PointD >& iInfo = *interpolationInfo;
const FEMTreeNode* node = neighbors.neighbors.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
PointEvaluatorState< UIntPack< FEMSigs ... > , IsotropicUIntPack< Dim , PointD > > peState;
int idx[Dim]; // The coordinates of the node containing the point _relative_ to the center node
int _idx[Dim==1 ? 1 : Dim-1];
CumulativeDerivativeValues< double , Dim , PointD > dualValues;
auto outerFunction = [&]( const FEMTreeNode* _node )
{
if( _isValidSpaceNode( _node ) )
{
LocalOffset pOff; // The coordinates of the node containing the point
for( int d=0 ; d<Dim ; d++ ) pOff[d] = off[d] + idx[d];
size_t begin , end;
iInfo.range( _node , begin , end );
for( size_t pIndex=begin ; pIndex<end ; pIndex++ )
{
const DualPointInfo< Dim , Real , T , PointD >& pData = iInfo[ pIndex ];
CumulativeDerivativeValues< double , Dim , PointD > values;
{
Real weight = pData.weight;
Point< Real , Dim > p = pData.position;
// Compute the partial evaluation of all B-splines (and derivatives) that are supported on the point
bsData.initEvaluationState( p , d , pOff , peState );
// The value (and derivatives) of the function of the center node at this point
values = peState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( off );
}
dualValues = iInfo( pIndex , values ) * pData.weight;
int start[Dim==1 ? 1 : Dim-1] , end[Dim==1 ? 1 : Dim-1];
// Compute the bounds of nodes which can be supported on the point
for( int d=0 ; d<Dim-1 ; d++ ) start[d] = idx[d] + (int)OverlapRadii::Values[d] - (int)LeftPointSupportRadii::Values[d] , end[d] = idx[d] + (int)OverlapRadii::Values[d] + (int)RightPointSupportRadii::Values[d] + 1;
WindowLoop< Dim , Dim-1 >::Run
(
start , end ,
[&]( int d , int i ){ _idx[d] = i - (int)OverlapRadii::Values[d] + off[d]; } ,
[&]( const WindowSlice< Real , UIntPack< OverlapSizes::template Get< Dim-1 >() > > pointValues , ConstWindowSlice< const FEMTreeNode* , UIntPack< OverlapSizes::template Get< Dim-1 >() > > neighbors )
{
Point< double , PointD+1 > partialDot = peState.template partialDotDValues< Real , CumulativeDerivatives< Dim , PointD > >( dualValues , _idx );
Pointer( Real ) _pointValues = pointValues.data + idx[Dim-1] + OverlapRadii::Values[Dim-1];
int _i = idx[Dim-1] + (int)OverlapRadii::Values[Dim-1] - (int)LeftPointSupportRadii::Values[Dim-1];
const double (*splineValues)[PointD+1] = peState.template values< Dim-1 >();
for( unsigned int i=0 ; i<SupportSizes::Values[Dim-1] ; i++ ) if( _isValidFEM1Node( neighbors[ _i + i ] ) )
for( int d=0 ; d<=PointD ; d++ ) _pointValues[(int)i-(int)LeftPointSupportRadii::Values[Dim-1]] += (Real)( splineValues[i][d] * partialDot[d] );
} ,
pointValues() , neighbors.neighbors()
);
}
}
};
// Loop over all nodes which are supported on the center
WindowLoop< Dim >::Run
(
OverlapRadii() - LeftSupportRadii() , OverlapRadii() + RightSupportRadii() + IsotropicUIntPack< Dim , 1 >() ,
[&]( int d , int i ){ idx[d] = i - (int)OverlapRadii::Values[d]; } ,
outerFunction ,
neighbors.neighbors()
);
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... PointDs , unsigned int ... FEMSigs >
T FEMTree< Dim , Real >::_setMatrixRowAndGetConstraintFromProlongation( UIntPack< FEMSigs ... > , const BaseSystem< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pNeighbors , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , size_t idx , SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size > &M , node_index_type offset , const PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& pcStencils , const CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& ccStencil , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , ConstPointer( T ) prolongedSolution , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
T constraint ={};
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
int count = 0;
const FEMTreeNode* node = neighbors.neighbors.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
Pointer( MatrixEntry< Real , matrix_index_type > ) row = M[idx];
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
if( d>0 && prolongedSolution )
{
int cIdx = (int)( node - node->parent->children );
constraint = _getConstraintFromProlongedSolution( UIntPack< FEMSigs ... >() , F , neighbors , pNeighbors , node , prolongedSolution , pcStencils.data[cIdx] , bsData , interpolationInfo... );
}
bool isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMSignature< FEMSigs >::Degree ... >() , UIntPack< FEMSignature< FEMSigs >::Degree ... >() , d , off );
StaticWindow< Real , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > > pointValues;
memset( pointValues.data , 0 , sizeof(Real)*WindowSize< OverlapSizes >::Size );
_addPointValues( UIntPack< FEMSigs ... >() , pointValues , neighbors , bsData , interpolationInfo ... );
node_index_type nodeIndex = node->nodeData.nodeIndex;
if( isInterior ) // General case, so try to make fast
{
const FEMTreeNode* const * _nodes = neighbors.neighbors.data;
ConstPointer( double ) _stencil = ccStencil.data;
Real* _values = pointValues.data;
row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( nodeIndex-offset ) , (Real)( _values[ WindowIndex< OverlapSizes , OverlapRadii >::Index ] + _stencil[ WindowIndex< OverlapSizes , OverlapRadii >::Index ] ) );
for( int i=0 ; i<WindowSize< OverlapSizes >::Size ; i++ ) if( _isValidFEM1Node( _nodes[i] ) )
{
if( i!=WindowIndex< OverlapSizes , OverlapRadii >::Index ) row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( _nodes[i]->nodeData.nodeIndex-offset ) , (Real)( _values[i] + _stencil[i] ) );
}
}
else
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
Real temp = (Real)F.ccIntegrate( off , off ) + pointValues.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( nodeIndex-offset ) , temp );
LocalOffset _off;
WindowLoop< Dim >::Run
(
ZeroUIntPack< Dim >() , OverlapSizes() ,
[&]( int d , int i ){ _off[d] = off[d] - (int)OverlapRadii::Values[d] + i; } ,
[&]( const FEMTreeNode* _node , Real pointValue )
{
if( node!=_node && FEMIntegrator::IsValidFEMNode( UIntPack< FEMSigs ... >() , d , _off ) )
{
Real temp = (Real)F.ccIntegrate( _off , off ) + pointValue;
if( _isValidFEM1Node( _node ) ) row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( _node->nodeData.nodeIndex-offset ) , temp );
}
} ,
neighbors.neighbors() , pointValues()
);
}
M.setRowSize( idx , count );
return constraint;
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... PointDs , unsigned int ... FEMSigs >
T FEMTree< Dim , Real >::_setMatrixRowAndGetConstraintFromProlongation( UIntPack< FEMSigs ... > , const BaseSystem< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pNeighbors , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , Pointer( MatrixEntry< Real , matrix_index_type > ) row , node_index_type offset , const PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& pcStencils , const CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& ccStencil , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , ConstPointer( T ) prolongedSolution , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
T constraint ={};
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
int count = 0;
const FEMTreeNode* node = neighbors.neighbors.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
if( d>0 && prolongedSolution )
{
int cIdx = (int)( node - node->parent->children );
constraint = _getConstraintFromProlongedSolution( UIntPack< FEMSigs ... >() , F , neighbors , pNeighbors , node , prolongedSolution , pcStencils.data[cIdx] , bsData , interpolationInfo... );
}
bool isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMSignature< FEMSigs >::Degree ... >() , UIntPack< FEMSignature< FEMSigs >::Degree ... >() , d , off );
StaticWindow< Real , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > > pointValues;
memset( pointValues.data , 0 , sizeof(Real)*WindowSize< OverlapSizes >::Size );
_addPointValues( UIntPack< FEMSigs ... >() , pointValues , neighbors , bsData , interpolationInfo ... );
node_index_type nodeIndex = node->nodeData.nodeIndex;
if( isInterior ) // General case, so try to make fast
{
const FEMTreeNode* const * _nodes = neighbors.neighbors.data;
ConstPointer( double ) _stencil = ccStencil.data;
Real* _values = pointValues.data;
row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( nodeIndex-offset ) , (Real)( _values[ WindowIndex< OverlapSizes , OverlapRadii >::Index ] + _stencil[ WindowIndex< OverlapSizes , OverlapRadii >::Index ] ) );
for( int i=0 ; i<WindowSize< OverlapSizes >::Size ; i++ ) if( _isValidFEM1Node( _nodes[i] ) )
{
if( i!=WindowIndex< OverlapSizes , OverlapRadii >::Index ) row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( _nodes[i]->nodeData.nodeIndex-offset ) , (Real)( _values[i] + _stencil[i] ) );
}
}
else
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
Real temp = (Real)F.ccIntegrate( off , off ) + pointValues.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( nodeIndex-offset ) , temp );
LocalOffset _off;
WindowLoop< Dim >::Run
(
ZeroUIntPack< Dim >() , OverlapSizes() ,
[&]( int d , int i ){ _off[d] = off[d] - (int)OverlapRadii::Values[d] + i; } ,
[&]( const FEMTreeNode* _node , Real pointValue )
{
if( node!=_node && FEMIntegrator::IsValidFEMNode( UIntPack< FEMSigs ... >() , d , _off ) )
{
Real temp = (Real)F.ccIntegrate( _off , off ) + pointValue;
if( _isValidFEM1Node( _node ) ) row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( _node->nodeData.nodeIndex-offset ) , temp );
}
} ,
neighbors.neighbors() , pointValues()
);
}
return constraint;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int PointD >
void FEMTree< Dim , Real >::_addProlongedPointValues( UIntPack< FEMSigs ... > , WindowSlice< Real , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > > pointValues , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pNeighbors , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , const InterpolationInfo< T , PointD >* interpolationInfo ) const
{
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] This code is broken" )
#endif // SHOW_WARNINGS
#if 1
ERROR_OUT( "Broken code" );
#else
if( !interpolationInfo ) return;
const InterpolationInfo< T , PointD >& iInfo = *interpolationInfo;
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
const FEMTreeNode* node = neighbors.neighbors.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
LocalDepth d , parentD ; LocalOffset off , parentOff;
_localDepthAndOffset( node , d , off );
_localDepthAndOffset( node->parent , parentD , parentOff );
int fStart , fEnd;
BSplineData< FEMSig >::FunctionSpan( d , fStart , fEnd );
int fIdx[Dim];
functionIndex( IsotropicUIntPack< Dim , FEMSig >() , node , fIdx );
double splineValues[ Dim ] [ PointD+1 ];
double parentSplineValues[ Dim ][ SupportSize ][ PointD+1 ];
int s[Dim];
CumulativeDerivativeValues< Real , Dim , PointD > dualValues;
std::function< void ( const FEMTreeNode* , Real& ) > innerFunction = [&]( const FEMTreeNode* pNode , Real& pointValue )
{
if( _isValidFEM1Node( pNode ) )
{
CumulativeDerivativeValues< Real , Dim , PointD > values = Evaluate< SupportSize , Dim , Real , PointD >( s , parentSplineValues );
pointValue += CumulativeDerivativeValues< Real , Dim , PointD >::Dot( dualValues , values );
};
};
std::function< void ( const FEMTreeNode* ) > outerFunction = [&]( const FEMTreeNode* _node )
{
if( _isValidSpaceNode( _node ) ) for( const PointData< Dim , Real , T , PointD >* _pData=iInfo.begin( _node ) ; _pData!=iInfo.end( _node ) ; _pData++ )
{
// Evaluate the node's basis function at the sample
const PointData< Dim , Real , T , PointD >& pData = *_pData;
_setDValues< FEMSig , PointD , FEMDegree >( pData.position , _node , node , bsData , splineValues );
_setDValues< FEMSig , PointD , FEMDegree >( pData.position , _node->parent , bsData , parentSplineValues );
dualValues = iInfo.weights * Evaluate< Dim , Real , PointD >( splineValues ) * pData.weight;
// Get the indices of the parent
LocalDepth _parentD ; LocalOffset _parentOff;
_localDepthAndOffset( _node->parent , _parentD , _parentOff );
int _off[Dim];
for( int dd=0 ; dd<Dim ; dd++ ) _off[dd] = _parentOff[dd] - parentOff[dd];
int _start[Dim] , _end[Dim];
for( int dd=0 ; dd<Dim ; dd++ ) _start[dd] = OverlapRadius + _off[dd] - LeftPointSupportRadius , _end[dd] = _start[dd] + SupportSize;
WindowLoop< Dim >::Run
(
_start , _end ,
[&]( int d , int i ){ s[d] = i + LeftPointSupportRadius - _off[d] - OverlapRadius; } ,
innerFunction ,
pNeighbors.neighbors() , pointValues
);
}
};
int start[Dim] , end[Dim];
for( int dd=0 ; dd<Dim ; dd++ ) start[dd] = OverlapRadius - LeftSupportRadius , end[dd] = start[dd] + SupportSize;
WindowLoop< Dim >::Run
(
start , end ,
[&]( int , int ){;} ,
outerFunction ,
neighbors.neighbors()
);
#endif
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... PointDs , unsigned int ... FEMSigs >
int FEMTree< Dim , Real >::_setProlongedMatrixRow( const typename BaseFEMIntegrator::System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pNeighbors , Pointer( MatrixEntry< Real , matrix_index_type > ) row , node_index_type offset , const DynamicWindow< double , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& stencil , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
int count = 0;
const FEMTreeNode* node = neighbors.neighbors.data[ WindowIndex< OverlapSizes , OverlapRadii >::Index ];
LocalDepth d , parentD ; LocalOffset off , parentOff;
_localDepthAndOffset( node , d , off );
_localDepthAndOffset( node->parent , parentD , parentOff );
bool isInterior = _isInteriorlyOverlapped( FEMDegrees() , FEMDegrees() , node->parent );
StaticWindow< Real , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > > pointValues;
memset( pointValues.data , 0 , sizeof(Real)*WindowSize< OverlapSizes >::Size );
_addProlongedPointValues( UIntPack< FEMSigs ... >() , pointValues() , neighbors , pNeighbors , bsData , interpolationInfo ... );
node_index_type nodeIndex = node->nodeData.nodeIndex;
int start[Dim] , end[Dim];
_SetParentOverlapBounds( FEMDegrees() , FEMDegrees() , node , start , end );
if( isInterior ) // General case, so try to make fast
{
WindowLoop< Dim >::Run
(
start , end ,
[&]( int , int ){;} ,
[&]( const FEMTreeNode* node , const Real& pointValue , const Real& stencilValue )
{
if( _isValidFEM1Node( node ) ) row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( node->nodeData.nodeIndex - offset ) , pointValue + stencilValue );
} ,
pNeighbors.neighbors() , pointValues() , stencil()
);
}
else
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
WindowLoop< Dim >::Run
(
start , end ,
[&]( int , int ){;} ,
[&]( const FEMTreeNode* node , const Real& pointValue )
{
if( _isValidFEM1Node( node ) )
{
LocalDepth d ; LocalOffset _off;
_localDepthAndOffset( node , d , _off );
row[count++] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( node->nodeData.nodeIndex - offset ) , (Real)F.pcIntegrate( _off , off ) + pointValue );
}
} ,
pNeighbors.neighbors() , pointValues()
);
}
return count;
}
template< unsigned int Dim , class Real >
template< unsigned int FEMDegree1 , unsigned int FEMDegree2 >
void FEMTree< Dim , Real >::_SetParentOverlapBounds( const FEMTreeNode* node , int start[Dim] , int end[Dim] )
{
const int OverlapStart = BSplineOverlapSizes< FEMDegree1 , FEMDegree2 >::OverlapStart;
if( node->parent )
{
int cIdx = (int)( node - node->parent->children );
for( int d=0 ; d<Dim ; d++ )
{
start[d] = BSplineOverlapSizes< FEMDegree1 , FEMDegree2 >::ParentOverlapStart[ (cIdx>>d) & 1 ] - OverlapStart;
end [d] = BSplineOverlapSizes< FEMDegree1 , FEMDegree2 >::ParentOverlapEnd [ (cIdx>>d) & 1 ] - OverlapStart + 1;
}
}
}
template< unsigned int Dim , class Real >
template< unsigned int FEMDegree1 , unsigned int FEMDegree2 >
void FEMTree< Dim , Real >::_SetParentOverlapBounds( int cIdx , int start[Dim] , int end[Dim] )
{
const int OverlapStart = BSplineOverlapSizes< FEMDegree1 , FEMDegree2 >::OverlapStart;
for( int d=0 ; d<Dim ; d++ )
{
start[d] = BSplineOverlapSizes< FEMDegree1 , FEMDegree2 >::ParentOverlapStart[ (cIdx>>d) & 1 ] - OverlapStart;
end [d] = BSplineOverlapSizes< FEMDegree1 , FEMDegree2 >::ParentOverlapEnd [ (cIdx>>d) & 1 ] - OverlapStart + 1;
}
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int PointD >
T FEMTree< Dim , Real >::_getInterpolationConstraintFromProlongedSolution( const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , const FEMTreeNode* node , ConstPointer( T ) prolongedSolution , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , const InterpolationInfo< T , PointD >* interpolationInfo ) const
{
if( !interpolationInfo ) return T();
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > SupportSizes;
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< ( -BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportStart ) ... > LeftSupportRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
typedef PointEvaluatorState< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > _PointEvaluatorState;
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
T temp = {};
if( _isValidFEM1Node( node ) )
{
int s[Dim];
#if defined( _WIN32 ) || defined( _WIN64 )
#pragma message ( "[WARNING] You've got me MSVC" )
auto UpdateFunction = [&]( int d , int i ){ s[d] = (int)SupportSizes::Values[d] - 1 - ( i - (int)OverlapRadii::Values[d] + (int)LeftSupportRadii::Values[d] ); };
auto ProcessFunction = [&]( const FEMTreeNode* pNode )
{
if( _isValidSpaceNode( pNode ) )
{
size_t begin , end;
interpolationInfo->range( pNode , begin , end );
for( size_t pIndex=begin ; pIndex<end ; pIndex++ )
{
const DualPointInfo< Dim , Real , T , PointD > _pData = (*interpolationInfo)[ pIndex ];
_PointEvaluatorState peState;
Point< Real , Dim > p = _pData.position;
LocalDepth pD ; LocalOffset pOff;
_localDepthAndOffset( pNode , pD , pOff );
bsData.initEvaluationState( p , pD , pOff , peState );
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] Why is this necessary?" )
#endif // SHOW_WARNINGS
const int *_off = off;
CumulativeDerivativeValues< Real , Dim , PointD > values = peState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( _off );
for( int d=0 ; d<CumulativeDerivatives< Dim , PointD >::Size ; d++ ) temp += _pData.dualValues[d] * values[d];
}
}
};
#endif // _WIN32 || _WIN64
WindowLoop< Dim >::Run
(
OverlapRadii() - LeftSupportRadii() , OverlapRadii() - LeftSupportRadii() + SupportSizes() ,
#if defined( _WIN32 ) || defined( _WIN64 )
UpdateFunction , ProcessFunction ,
#else // !_WIN32 && !_WIN64
[&]( int d , int i ){ s[d] = (int)SupportSizes::Values[d] - 1 - ( i - (int)OverlapRadii::Values[d] + (int)LeftSupportRadii::Values[d] ); } ,
[&]( const FEMTreeNode* pNode )
{
if( _isValidSpaceNode( pNode ) )
{
size_t begin , end;
interpolationInfo->range( pNode , begin , end );
for( size_t pIndex=begin ; pIndex<end ; pIndex++ )
{
const DualPointInfo< Dim , Real , T , PointD > _pData = (*interpolationInfo)[ pIndex ];
_PointEvaluatorState peState;
Point< Real , Dim > p = _pData.position;
LocalDepth pD ; LocalOffset pOff;
_localDepthAndOffset( pNode , pD , pOff );
bsData.initEvaluationState( p , pD , pOff , peState );
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] Why is this necessary?" )
#endif // SHOW_WARNINGS
const int *_off = off;
CumulativeDerivativeValues< Real , Dim , PointD > values = peState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( _off );
for( int d=0 ; d<CumulativeDerivatives< Dim , PointD >::Size ; d++ ) temp += _pData.dualValues[d] * values[d];
}
}
} ,
#endif // _WIN32 || _WIN64
neighbors.neighbors()
);
}
return temp;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int ... PointDs >
T FEMTree< Dim , Real >::_getConstraintFromProlongedSolution( UIntPack< FEMSigs ... > , const BaseSystem< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& neighbors , const typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& pNeighbors , const FEMTreeNode* node , ConstPointer( T ) prolongedSolution , const DynamicWindow< double , UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >& stencil , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
if( _localDepth( node )<=0 ) return T();
// This is a conservative estimate as we only need to make sure that the parent nodes don't overlap the child (not the parent itself)
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node->parent , d , off );
bool isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( FEMDegrees() , FEMDegrees() , d , off );
// Offset the constraints using the solution from lower resolutions.
T constraint = {};
static const WindowLoopData< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > > loopData( []( int c , int* start , int* end ){ BaseFEMIntegrator::ParentOverlapBounds( FEMDegrees() , FEMDegrees() , c , start , end ); } );
int cIdx = (int)( node - node->parent->children );
unsigned int size = loopData.size[cIdx];
const unsigned int* indices = loopData.indices[cIdx];
ConstPointer( double ) values = stencil.data;
ConstPointer( FEMTreeNode * const ) nodes = pNeighbors.neighbors().data;
if( isInterior )
{
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( _isValidFEM1Node( nodes[idx] ) ) constraint += (T)( prolongedSolution[ nodes[idx]->nodeData.nodeIndex ] * (Real)values[idx] );
}
}
else
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( _isValidFEM1Node( nodes[idx] ) )
{
LocalDepth _d ; LocalOffset _off;
_localDepthAndOffset( nodes[idx] , _d , _off );
constraint += (T)( prolongedSolution[ nodes[idx]->nodeData.nodeIndex ] * (Real)F.pcIntegrate( _off , off ) );
}
}
}
return constraint + _getInterpolationConstraintFromProlongedSolution( neighbors , node , prolongedSolution , bsData , interpolationInfo... );
}
// Given the solution @( depth ) add to the met constraints @( depth-1 )
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T >
void FEMTree< Dim , Real >::_updateRestrictedIntegralConstraints( UIntPack< FEMSigs ... > , const typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , LocalDepth highDepth , ConstPointer( T ) fineSolution , Pointer( T ) restrictedConstraints ) const
{
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
if( highDepth<=0 ) return;
// Get the stencil describing the Laplacian relating coefficients @(highDepth) with coefficients @(highDepth-1)
PCStencils< FEMDegrees > stencils;
F.template setStencils< true >( stencils );
node_index_type start = _sNodesBegin(highDepth) , end = _sNodesEnd(highDepth);
node_index_type range = end-start;
node_index_type lStart = _sNodesBegin(highDepth-1);
// Iterate over the nodes @(highDepth)
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( highDepth )-1 );
ThreadPool::Parallel_for( _sNodesBegin(highDepth) , _sNodesEnd(highDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
FEMTreeNode* node = _sNodes.treeNodes[i];
// Offset the coarser constraints using the solution from the current resolutions.
int cIdx = (int)( node - node->parent->children );
{
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > pNeighbors;
neighborKey.getNeighbors( OverlapRadii() , OverlapRadii() , node->parent , pNeighbors );
const DynamicWindow< double , OverlapSizes >& stencil = stencils.data[cIdx];
bool isInterior = _isInteriorlyOverlapped( FEMDegrees() , FEMDegrees() , node->parent );
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
// Offset the constraints using the solution from finer resolutions.
int start[Dim] , end[Dim];
_SetParentOverlapBounds( FEMDegrees() , FEMDegrees() , node , start , end );
T solution = fineSolution[ node->nodeData.nodeIndex ];
ConstPointer( FEMTreeNode * const ) nodes = pNeighbors.neighbors().data;
ConstPointer( double ) stencilValues = stencil.data;
if( isInterior )
{
for( int i=0 ; i<WindowSize< OverlapSizes >::Size ; i++ ) if( _isValidFEM1Node( nodes[i] ) )
{
AddAtomic( restrictedConstraints[ nodes[i]->nodeData.nodeIndex ] , solution * (Real)stencilValues[i] );
}
}
else
{
for( int i=0 ; i<WindowSize< OverlapSizes >::Size ; i++ ) if( _isValidFEM1Node( nodes[i] ) )
{
LocalDepth _d ; LocalOffset _off;
_localDepthAndOffset( nodes[i] , _d , _off );
AddAtomic( restrictedConstraints[ nodes[i]->nodeData.nodeIndex ] , solution * (Real)F.pcIntegrate( _off , off ) );
}
}
}
}
}
);
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int PointD >
void FEMTree< Dim , Real >::_setPointValuesFromProlongedSolution( LocalDepth highDepth , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , ConstPointer( T ) prolongedSolution , InterpolationInfo< T , PointD >* iInfo ) const
{
if( !iInfo ) return;
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
InterpolationInfo< T , PointD >& interpolationInfo = *iInfo;
LocalDepth lowDepth = highDepth-1;
if( lowDepth<0 ) return;
// For every node at the current depth
std::vector< ConstPointSupportKey< FEMDegrees > > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( lowDepth ) );
ThreadPool::Parallel_for( _sNodesBegin(highDepth) , _sNodesEnd(highDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
ConstPointSupportKey< FEMDegrees >& neighborKey = neighborKeys[ thread ];
if( _isValidSpaceNode( _sNodes.treeNodes[i] ) )
{
size_t begin , end;
interpolationInfo.range( _sNodes.treeNodes[i] , begin , end );
for( size_t pIndex=begin ; pIndex<end ; pIndex++ )
{
DualPointInfo< Dim , Real , T , PointD >& pData = interpolationInfo[ pIndex ];
neighborKey.getNeighbors( _sNodes.treeNodes[i]->parent );
#ifdef _MSC_VER
pData.dualValues = interpolationInfo( pIndex , _coarserFunctionValues< PointD , T , FEMSigs ... >( UIntPack< FEMSigs ... >() , pData.position , neighborKey , _sNodes.treeNodes[i] , bsData , prolongedSolution ) ) * pData.weight;
#else // !_MSC_VER
pData.dualValues = interpolationInfo( pIndex , _coarserFunctionValues< PointD >( UIntPack< FEMSigs ... >() , pData.position , neighborKey , _sNodes.treeNodes[i] , bsData , prolongedSolution ) ) * pData.weight;
#endif // _MSC_VER
}
}
}
}
);
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int PointD >
void FEMTree< Dim , Real >::_updateRestrictedInterpolationConstraints( const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , LocalDepth highDepth , ConstPointer( T ) solution , Pointer( T ) restrictedConstraints , const InterpolationInfo< T , PointD >* iInfo ) const
{
if( !iInfo ) return;
const InterpolationInfo< T , PointD >& interpolationInfo = *iInfo;
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > SupportSizes;
// Note: We can't iterate over the finer point nodes as the point weights might be
// scaled incorrectly, due to the adaptive exponent. So instead, we will iterate
// over the coarser nodes and evaluate the finer solution at the associated points.
LocalDepth lowDepth = highDepth-1;
if( lowDepth<0 ) return;
node_index_type start = _sNodesBegin(lowDepth) , end = _sNodesEnd(lowDepth);
std::vector< ConstPointSupportKey< FEMDegrees > > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( lowDepth ) );
ThreadPool::Parallel_for( _sNodesBegin(lowDepth) , _sNodesEnd(lowDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidSpaceNode( _sNodes.treeNodes[i] ) ) if( _isValidSpaceNode( _sNodes.treeNodes[i] ) )
{
ConstPointSupportKey< FEMDegrees >& neighborKey = neighborKeys[ thread ];
PointEvaluatorState< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > peState;
const FEMTreeNode* node = _sNodes.treeNodes[i];
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
typename FEMTreeNode::template ConstNeighbors< SupportSizes >& neighbors = neighborKey.getNeighbors( node );
size_t begin , end;
interpolationInfo.range( node , begin , end );
for( size_t pIndex=begin ; pIndex<end ; pIndex++ )
{
const DualPointInfo< Dim , Real , T , PointD >& pData = interpolationInfo[ pIndex ];
Point< Real , Dim > p = pData.position;
bsData.initEvaluationState( p , d , off , peState );
#ifdef _MSC_VER
CumulativeDerivativeValues< T , Dim , PointD > dualValues = interpolationInfo( pIndex , _finerFunctionValues< PointD , T , FEMSigs ... >( UIntPack< FEMSigs ... >() , pData.position , neighborKey , node , bsData , solution ) ) * pData.weight;
#else // !_MSC_VER
CumulativeDerivativeValues< T , Dim , PointD > dualValues = interpolationInfo( pIndex , _finerFunctionValues< PointD >( UIntPack< FEMSigs ... >() , pData.position , neighborKey , node , bsData , solution ) ) * pData.weight;
#endif // _MSC_VER
// Update constraints for all nodes @( depth-1 ) that overlap the point
int s[Dim];
WindowLoop< Dim >::Run
(
ZeroUIntPack< Dim >() , SupportSizes() ,
[&]( int d , int i ){ s[d] = i; } ,
[&]( const FEMTreeNode* node )
{
if( _isValidFEM1Node( node ) )
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
CumulativeDerivativeValues< Real , Dim , PointD > values = peState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( off );
T temp = {};
for( int d=0 ; d<CumulativeDerivatives< Dim , PointD >::Size ; d++ ) temp += dualValues[d] * values[d];
AddAtomic( restrictedConstraints[ node->nodeData.nodeIndex ] , temp );
}
} ,
neighbors.neighbors()
);
}
}
}
);
}
template< unsigned int Dim , class Real >
template< class C , unsigned int ... FEMSigs >
DenseNodeData< C , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::coarseCoefficients( const DenseNodeData< C , UIntPack< FEMSigs ... > >& coefficients ) const
{
DenseNodeData< C , UIntPack< FEMSigs ... > > coarseCoefficients( _sNodesEnd(_maxDepth-1) );
memset( coarseCoefficients() , 0 , sizeof(Real)*_sNodesEnd(_maxDepth-1) );
ThreadPool::Parallel_for( _sNodesBegin(0) , _sNodesEnd(_maxDepth-1) , [&]( unsigned int , size_t i ){ coarseCoefficients[i] = coefficients[i]; } );
typename FEMIntegrator::template RestrictionProlongation< UIntPack< FEMSigs ... > > rp;
for( LocalDepth d=1 ; d<_maxDepth ; d++ ) _upSample( UIntPack< FEMSigs ... >() , rp , d , coarseCoefficients() );
return coarseCoefficients;
}
template< unsigned int Dim , class Real >
template< class C , unsigned int ... FEMSigs >
DenseNodeData< C , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::coarseCoefficients( const SparseNodeData< C , UIntPack< FEMSigs ... > >& coefficients ) const
{
DenseNodeData< C , UIntPack< FEMSigs ... > > coarseCoefficients( _sNodesEnd(_maxDepth-1) );
memset( coarseCoefficients() , 0 , sizeof(C)*_sNodesEnd(_maxDepth-1) );
ThreadPool::Parallel_for( _sNodesBegin(0) , _sNodesEnd(_maxDepth-1) , [&]( unsigned int , size_t i )
{
const C* c = coefficients( _sNodes.treeNodes[i] );
if( c ) coarseCoefficients[i] = *c;
}
);
typename FEMIntegrator::template RestrictionProlongation< UIntPack< FEMSigs ... > > rp;
for( LocalDepth d=1 ; d<_maxDepth ; d++ ) _upSample( UIntPack< FEMSigs ... >() , rp , d , coarseCoefficients() );
return coarseCoefficients;
}
template< unsigned int Dim , class Real >
template< unsigned int PointD , typename T , unsigned int ... FEMSigs >
CumulativeDerivativeValues< T , Dim , PointD > FEMTree< Dim , Real >::_coarserFunctionValues( UIntPack< FEMSigs ... > , Point< Real , Dim > p , const ConstPointSupportKey< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& neighborKey , const FEMTreeNode* pointNode , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , ConstPointer( T ) solution ) const
{
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > SupportSizes;
CumulativeDerivativeValues< T , Dim , PointD > values;
LocalDepth depth = _localDepth( pointNode );
if( depth<0 ) return values;
// Iterate over all basis functions that overlap the point at the coarser resolutions
{
PointEvaluatorState< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > peState;
LocalDepth _d ; LocalOffset _off;
_localDepthAndOffset( pointNode->parent , _d , _off );
bsData.initEvaluationState( p , _d , _off , peState );
const typename FEMTreeNode::template ConstNeighbors< SupportSizes >& neighbors = neighborKey.neighbors[ _localToGlobal( depth-1 ) ];
ConstPointer( FEMTreeNode * const ) nodes = neighbors.neighbors().data;
for( unsigned int i=0 ; i<WindowSize< SupportSizes >::Size ; i++ ) if( _isValidFEM1Node( nodes[i] ) )
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( nodes[i] , d , off );
CumulativeDerivativeValues< Real , Dim , PointD > temp = peState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( off );
const T& _solution = solution[ nodes[i]->nodeData.nodeIndex ];
for( int s=0 ; s<CumulativeDerivatives< Dim , PointD >::Size ; s++ ) values[s] += _solution * temp[s];
}
}
return values;
}
template< unsigned int Dim , class Real >
template< unsigned int PointD , typename T , unsigned int ... FEMSigs >
CumulativeDerivativeValues< T , Dim , PointD > FEMTree< Dim , Real >::_finerFunctionValues( UIntPack< FEMSigs ... > , Point< Real , Dim > p , const ConstPointSupportKey< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& neighborKey , const FEMTreeNode* pointNode , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , ConstPointer( T ) solution ) const
{
typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > > childNeighbors;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > SupportSizes;
CumulativeDerivativeValues< T , Dim , PointD > values;
LocalDepth depth = _localDepth( pointNode );
neighborKey.getChildNeighbors( _childIndex( pointNode , p ) , _localToGlobal( depth ) , childNeighbors );
PointEvaluatorState< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > peState;
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( pointNode , d , off );
int cIdx = _childIndex( pointNode , p );
d++;
for( int dd=0 ; dd<Dim ; dd++ ) off[dd] = (off[dd]<<1) | ( (cIdx>>dd) & 1 );
bsData.initEvaluationState( p , d , off , peState );
int s[Dim];
WindowLoop< Dim >::Run
(
ZeroUIntPack< Dim >() , SupportSizes() ,
[&]( int d , int i ){ s[d] = i; } ,
[&]( const FEMTreeNode* node )
{
if( _isValidFEM1Node( node ) )
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
CumulativeDerivativeValues< Real , Dim , PointD > dValues = peState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( off );
const T& _solution = solution[ node->nodeData.nodeIndex ];
for( int s=0 ; s<CumulativeDerivatives< Dim , PointD >::Size ; s++ ) values[s] += _solution * dValues[s];
}
} ,
childNeighbors.neighbors()
);
return values;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , unsigned int ... PointDs >
int FEMTree< Dim , Real >::_getSliceMatrixAndProlongationConstraints( UIntPack< FEMSigs ... > , const typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , SparseMatrix< Real , matrix_index_type , WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > >::Size >& matrix , Pointer( Real ) diagonalR , const PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > >& bsData , LocalDepth depth , node_index_type nBegin , node_index_type nEnd , ConstPointer( T ) prolongedSolution , Pointer( T ) constraints , const CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& ccStencil , const PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& pcStencils , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
size_t range = nEnd - nBegin;
matrix.resize( range );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( depth ) );
ThreadPool::Parallel_for( 0 , range , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i+nBegin] ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
FEMTreeNode* node = _sNodes.treeNodes[i+nBegin];
// Get the matrix row size
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors , pNeighbors;
neighborKey.getNeighbors( OverlapRadii() , OverlapRadii() , node , pNeighbors , neighbors );
// Set the row entries
if( constraints ) constraints[i] = _setMatrixRowAndGetConstraintFromProlongation( UIntPack< FEMSigs ... >() , F , pNeighbors , neighbors , i , matrix , nBegin , pcStencils , ccStencil , bsData , prolongedSolution , interpolationInfo... );
else _setMatrixRowAndGetConstraintFromProlongation( UIntPack< FEMSigs ... >() , F , pNeighbors , neighbors , i , matrix , nBegin , pcStencils , ccStencil , bsData , prolongedSolution , interpolationInfo... );
if( diagonalR ) diagonalR[i] = (Real)1. / matrix[i][0].Value;
}
else if( constraints ) constraints[i] = T();
}
);
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] Why do we care if the node is not valid?" )
#endif // SHOW_WARNINGS
#if !defined( _WIN32 ) && !defined( _WIN64 )
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] I'm not sure how expensive this system call is on non-Windows system. (You may want to comment this out.)" )
#endif // SHOW_WARNINGS
#endif // !_WIN32 && !_WIN64
MemoryUsage();
return 1;
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... PointDs , unsigned int ... FEMSigs >
SparseMatrix< Real , matrix_index_type > FEMTree< Dim , Real >::systemMatrix( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , LocalDepth depth , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
typedef typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > > BaseSystem;
if( depth<0 || depth>_maxDepth ) ERROR_OUT( "System depth out of bounds: 0 <= " , depth , " <= " , _maxDepth );
SparseMatrix< Real , matrix_index_type > matrix;
F.init( depth );
PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > bsData( depth );
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
CCStencil< UIntPack< FEMSignature< FEMSigs >::Degree ... > > stencil;
PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > > stencils;
F.template setStencil< false >( stencil );
matrix.resize( _sNodesSize(depth) );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( depth ) );
ThreadPool::Parallel_for( _sNodesBegin(depth) , _sNodesEnd( depth ) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
node_index_type ii = (node_index_type)i - _sNodesBegin(depth);
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
neighborKey.getNeighbors( OverlapRadii() , OverlapRadii() , _sNodes.treeNodes[i] , neighbors );
//#if defined( __GNUC__ ) && __GNUC__ < 5
// #warning "you've got me gcc version<5"
// matrix.setRowSize( ii , _getMatrixRowSize( UIntPack< FEMSigs ... >() , neighbors ) );
//#else // !__GNUC__ || __GNUC__ >=5
matrix.setRowSize( ii , _getMatrixRowSize< FEMSigs ... >( neighbors ) );
//#endif // __GNUC__ || __GNUC__ < 4
_setMatrixRowAndGetConstraintFromProlongation( UIntPack< FEMSigs ... >() , F , neighbors , neighbors , matrix[ii] , _sNodesBegin(depth) , stencils , stencil , bsData , ( ConstPointer( T ) )NullPointer( T ) , interpolationInfo ... );
}
}
);
return matrix;
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... PointDs , unsigned int ... FEMSigs >
SparseMatrix< Real , matrix_index_type > FEMTree< Dim , Real >::prolongedSystemMatrix( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template System< UIntPack<FEMSignature< FEMSigs >::Degree ... > >& F , LocalDepth highDepth , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
if( highDepth<=0 || highDepth>_maxDepth ) ERROR_OUT( "System depth out of bounds: 0 < " , highDepth , " <= " , _maxDepth );
LocalDepth lowDepth = highDepth-1;
SparseMatrix< Real , matrix_index_type > matrix;
F.init( highDepth );
PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > bsData( highDepth );
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapStart ) ... > OverlapRadii;
typedef UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree >::OverlapSize ... > OverlapSizes;
PCStencils< UIntPack< FEMSignature< FEMSigs >::Degree ... > > stencils;
F.template setStencils< true >( stencils );
matrix.resize( _sNodesSize(highDepth) );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( highDepth ) );
ThreadPool::Parallel_for( _sNodesBegin(highDepth) , _sNodesEnd(highDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
node_index_type ii = i - _sNodesBegin(highDepth);
int cIdx = (int)( _sNodes.treeNodes[i]-_sNodes.treeNodes[i]->parent->children );
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors , pNeighbors;
neighborKey.getNeighbors( OverlapRadii() , OverlapRadii() , _sNodes.treeNodes[i] , neighbors );
neighborKey.getNeighbors( OverlapRadii() , OverlapRadii() , _sNodes.treeNodes[i]->parent , pNeighbors );
matrix.setRowSize( ii , _getProlongedMatrixRowSize< FEMSigs ... >( _sNodes.treeNodes[i] , pNeighbors ) );
_setProlongedMatrixRow< Real , PointDs ... >( F , neighbors , pNeighbors , matrix[ii] , _sNodesBegin(lowDepth) , stencils.data[cIdx] , bsData , interpolationInfo... );
}
}
);
return matrix;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
SparseMatrix< Real , matrix_index_type > FEMTree< Dim , Real >::downSampleMatrix( UIntPack< FEMSigs ... > , LocalDepth highDepth ) const
{
SparseMatrix< Real , matrix_index_type > matrix;
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > FEMDegrees;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleSize ... > UpSampleSizes;
typedef IntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleStart ... > UpSampleStarts;
typedef typename FEMTreeNode::template ConstNeighborKey< UIntPack< -BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleStart ... > , UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleEnd ... > > UpSampleKey;
LocalDepth lowDepth = highDepth-1;
if( lowDepth<0 ) return matrix;
matrix.resize( _sNodesSize( lowDepth ) );
typename EvaluationData::UpSampleEvaluator* upSampleEvaluators[] = { new typename BSplineEvaluationData< FEMSigs >::UpSampleEvaluator() ... };
for( int d=0 ; d<Dim ; d++ ) upSampleEvaluators[d]->set( lowDepth );
std::vector< UpSampleKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( lowDepth ) );
DynamicWindow< double , UpSampleSizes > upSampleStencil;
int lowCenter = ( 1<<lowDepth )>>1;
double value[Dim+1] ; value[0] = 1;
WindowLoop< Dim >::Run
(
ZeroUIntPack< Dim >() , UpSampleSizes() ,
[&]( int d , int i ){ value[d+1] = value[d] * upSampleEvaluators[d]->value( lowCenter , 2*lowCenter + i + UpSampleStarts::Values[d] ); } ,
[&]( double& stencilValue ){ stencilValue = value[Dim]; } ,
upSampleStencil()
);
ThreadPool::Parallel_for( _sNodesBegin(lowDepth) , _sNodesEnd(lowDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
node_index_type _i = (node_index_type)i - _sNodesBegin(lowDepth);
FEMTreeNode* pNode = _sNodes.treeNodes[i];
UpSampleKey& neighborKey = neighborKeys[ thread ];
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( pNode , d , off );
neighborKey.getNeighbors( pNode );
typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleSize ... > > neighbors;
neighborKey.getChildNeighbors( 0 , _localToGlobal( d ) , neighbors );
int rowSize = 0;
ConstPointer( FEMTreeNode * const ) nodes = neighbors.neighbors().data;
for( int i=0 ; i<WindowSize< UpSampleSizes >::Size ; i++ ) if( _isValidFEM1Node( nodes[i] ) ) rowSize++;
matrix.setRowSize( _i , rowSize );
matrix.rowSizes[_i] = 0;
// Want to make sure test if contained children are interior.
// This is more conservative because we are test that overlapping children are interior
bool isInterior = _isInteriorlyOverlapped( FEMDegrees() , FEMDegrees() , pNode );
if( isInterior )
{
ConstPointer( FEMTreeNode * const ) nodes = neighbors.neighbors().data;
ConstPointer( double ) stencilValues = upSampleStencil().data;
for( int i=0 ; i<WindowSize< UpSampleSizes >::Size ; i++ ) if( _isValidFEM1Node( nodes[i] ) )
matrix[_i][ matrix.rowSizes[_i]++ ] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( nodes[i]->nodeData.nodeIndex - _sNodesBegin(highDepth) ) , (Real)stencilValues[i] );
}
else
{
double upSampleValues[Dim][ UpSampleSizes::Max() ];
WindowLoop< Dim >::Run
(
ZeroUIntPack< Dim >() , UpSampleSizes() ,
[&]( int d , int i ){ upSampleValues[d][i] = upSampleEvaluators[d]->value( off[d] , 2*off[d] + i + UpSampleStarts::Values[d] ); } ,
[&]( void ){}
);
double values[Dim+1] ; values[0] = 1;
WindowLoop< Dim , Dim >::Run
(
ZeroUIntPack< Dim >() , UpSampleSizes() ,
[&]( int d , int i ){ values[d+1] = values[d] * upSampleValues[d][i]; } ,
[&]( const FEMTreeNode* node ){ if( _isValidFEM1Node( node ) ) matrix[_i][ matrix.rowSizes[_i]++ ] = MatrixEntry< Real , matrix_index_type >( (matrix_index_type)( node->nodeData.nodeIndex - _sNodesBegin(highDepth) ) , (Real)values[Dim] ); } ,
neighbors.neighbors()
);
}
}
}
);
for( int d=0 ; d<Dim ; d++ ) delete upSampleEvaluators[d];
return matrix;
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... PointDs , unsigned int ... FEMSigs >
SparseMatrix< Real , matrix_index_type > FEMTree< Dim , Real >::fullSystemMatrix( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , LocalDepth depth , bool nonRefinableOnly , const InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
SparseMatrix< Real , matrix_index_type > M;
std::vector< SparseMatrix< Real , matrix_index_type > > systemMatrices( depth+1 );
std::vector< SparseMatrix< Real , matrix_index_type > > prolongedSystemMatrices( depth );
std::vector< std::vector< SparseMatrix< Real , matrix_index_type > > > upSampleMatrices( depth-1 );
for( int d=0 ; d<depth-1 ; d++ ) upSampleMatrices[d].resize( depth );
node_index_type size = _sNodesEnd( depth );
for( int d=0 ; d<=depth ; d++ )
{
SparseMatrix< Real , matrix_index_type >& M = systemMatrices[d];
M.resize( size );
SparseMatrix< Real , matrix_index_type > _M = systemMatrix< Real >( UIntPack< FEMSigs ... >() , F , d , interpolationInfo ... );
ThreadPool::Parallel_for( 0 , _M.rows() , [&]( unsigned int , size_t i )
{
M.setRowSize( (matrix_index_type)( i + _sNodesBegin(d) ) , _M.rowSize(i) );
for( int j=0 ; j<_M.rowSize(i) ; j++ ) M[i+_sNodesBegin(d)][j] = MatrixEntry< Real , matrix_index_type >( _M[i][j].N + (matrix_index_type)_sNodesBegin(d) , _M[i][j].Value );
}
);
}
for( int d=0 ; d<depth ; d++ )
{
SparseMatrix< Real , matrix_index_type >& M = prolongedSystemMatrices[d];
M.resize( size );
SparseMatrix< Real , matrix_index_type > _M = prolongedSystemMatrix< Real >( UIntPack< FEMSigs ... >() , F , d+1 , interpolationInfo ... );
ThreadPool::Parallel_for( 0 , _M.rows() , [&]( unsigned int , size_t i )
{
M.setRowSize( i + (matrix_index_type)_sNodesBegin(d+1) , _M.rowSize(i) );
for( int j=0 ; j<_M.rowSize(i) ; j++ ) M[i+_sNodesBegin(d+1)][j] = MatrixEntry< Real , matrix_index_type >( _M[i][j].N + (matrix_index_type)_sNodesBegin(d) , _M[i][j].Value );
}
);
}
for( int d=0 ; d<depth-1 ; d++ )
{
SparseMatrix< Real , matrix_index_type >& M = upSampleMatrices[d][d+1];
M.resize( size );
SparseMatrix< Real , matrix_index_type > _M = downSampleMatrix( UIntPack< FEMSigs ... >() , d+1 ).transpose( _sNodesSize( d+1 ) );
ThreadPool::Parallel_for( 0 , _M.rows() , [&]( unsigned int , size_t i )
{
M.setRowSize( i + (matrix_index_type)_sNodesBegin(d+1) , _M.rowSize(i) );
for( int j=0 ; j<_M.rowSize(i) ; j++ ) M[i+_sNodesBegin(d+1)][j] = MatrixEntry< Real , matrix_index_type >( _M[i][j].N + (matrix_index_type)_sNodesBegin(d) , _M[i][j].Value );
}
);
for( int dd=0 ; dd<d ; dd++ ) upSampleMatrices[dd][d+1] = upSampleMatrices[d][d+1] * upSampleMatrices[dd][d];
}
auto Matrix = [&]( int d1 , int d2 )
{
SparseMatrix< Real , matrix_index_type > _M;
int _d1 = d1<d2 ? d1 : d2 , _d2 = d2<d1 ? d1 : d2;
if ( _d1==_d2 ) _M = systemMatrices[_d1];
else if( _d2==_d1+1 ) _M = prolongedSystemMatrices[_d2-1];
else _M = prolongedSystemMatrices[_d2-1] * upSampleMatrices[_d1][_d2-1];
if( d2<d1 ) return _M.transpose( size );
else return _M;
};
for( int d1=0 ; d1<=depth ; d1++ )
{
M += Matrix( d1 , d1 );
for( int d2=0 ; d2<=depth ; d2++ ) if( d1!=d2 )
{
SparseMatrix< Real , matrix_index_type > _M = Matrix( d1 , d2 );
ThreadPool::Parallel_for( 0 , _M.rows() , [&]( unsigned int , size_t i )
{
if( _M.rowSize(i) )
{
size_t oldSize = M.rowSize(i);
M.resetRowSize( i , oldSize + _M.rowSize(i) );
for( int j=0 ; j<_M.rowSize(i) ; j++ ) M[i][oldSize+j] = _M[i][j];
}
}
);
}
}
if( nonRefinableOnly )
{
_setRefinabilityFlags( UIntPack< FEMSigs ... >() );
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
ThreadPool::Parallel_for( 0 , M.rows() , [&]( unsigned int , size_t i )
{
if( ( _isRefinableNode( _sNodes.treeNodes[i] ) && _localDepth( _sNodes.treeNodes[i] )<depth ) || !_isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
// Setting this to the (local) identity so it doesn't make the system singular.
M.resetRowSize( i , 1 );
M[i][0] = MatrixEntry< Real , matrix_index_type >( i , (Real)1. );
}
else
{
int jj=0;
for( int j=0 ; j<M.rowSize(i) ; j++ ) if( !( _isRefinableNode( _sNodes.treeNodes[ M[i][j].N ] ) && _localDepth( _sNodes.treeNodes[ M[i][j].N ] )<depth ) && _isValidFEM1Node( _sNodes.treeNodes[i] ) ) M[i][jj++] = M[i][j];
if( jj!=M.rowSize(i) ) M.resetRowSize( i , jj );
}
}
);
}
return M;
}
template< unsigned int Dim , class Real >
template< class C , unsigned int ... Degrees , unsigned int ... FEMSigs >
void FEMTree< Dim , Real >::_downSample( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template RestrictionProlongation< UIntPack< Degrees ... > >& rp , LocalDepth highDepth , Pointer( C ) constraints ) const
{
LocalDepth lowDepth = highDepth-1;
if( lowDepth<0 ) return;
typedef typename BaseFEMIntegrator::RestrictionProlongation< UIntPack< Degrees ... > > BaseRestrictionProlongation;
typedef typename FEMTreeNode::template ConstNeighborKey< UIntPack< ( - BSplineSupportSizes< Degrees >::UpSampleStart ) ... > , UIntPack< BSplineSupportSizes< Degrees >::UpSampleEnd ... > > UpSampleKey;
typedef typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineSupportSizes< Degrees >::UpSampleSize ... > > UpSampleNeighbors;
typedef UIntPack< BSplineSupportSizes< Degrees >::UpSampleSize ... > UpSampleSizes;
std::vector< UpSampleKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( lowDepth ) );
( ( BaseRestrictionProlongation& )rp ).init( highDepth );
typename BaseRestrictionProlongation::UpSampleStencil upSampleStencil;
rp.setStencil( upSampleStencil );
ThreadPool::Parallel_for( _sNodesBegin(lowDepth) , _sNodesEnd(lowDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
FEMTreeNode* pNode = _sNodes.treeNodes[i];
UpSampleKey& neighborKey = neighborKeys[ thread ];
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( pNode , d , off );
neighborKey.getNeighbors( pNode );
UpSampleNeighbors neighbors;
neighborKey.getChildNeighbors( 0 , _localToGlobal( d ) , neighbors );
C& coarseConstraint = constraints[i];
// Want to make sure test if contained children are interior.
// This is more conservative because we are test that overlapping children are interior
bool isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< Degrees ... >() , UIntPack< Degrees ... >() , d , off );
if( isInterior )
{
Pointer( const FEMTreeNode* ) nodes = neighbors.neighbors().data;
Pointer( double ) stencilValues = upSampleStencil.data;
for( unsigned int i=0 ; i<WindowSize< UpSampleSizes >::Size ; i++ )
if( _isValidFEM1Node( nodes[i] ) ) coarseConstraint += (C)( constraints[ nodes[i]->nodeData.nodeIndex ] * (Real)stencilValues[i] );
}
else
{
ConstPointer( FEMTreeNode * const ) nodes = neighbors.neighbors().data;
for( int i=0 ; i<WindowSize< UpSampleSizes >::Size ; i++ ) if( _isValidFEM1Node( nodes[i] ) )
{
LocalDepth _d ; LocalOffset _off;
_localDepthAndOffset( nodes[i] , _d , _off );
coarseConstraint += (C)( constraints[ nodes[i]->nodeData.nodeIndex ] * (Real)rp.upSampleCoefficient( off , _off ) );
}
}
}
}
);
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
DenseNodeData< Real , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::supportWeights( UIntPack< FEMSigs ... > ) const
{
typedef typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > > BaseSystem;
typedef typename BaseFEMIntegrator::template Constraint< UIntPack< FEMSignature< FEMSigs >::Degree ... > , IsotropicUIntPack< Dim , 0 > , 1 > BaseConstraint;
typedef UIntPack< ( BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree , 0 >::OverlapSize ) ... > OverlapSizes;
typedef UIntPack< ( -BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree , 0 >::OverlapStart ) ... > LeftFEMCOverlapRadii;
typedef UIntPack< ( BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree , 0 >::OverlapEnd ) ... > RightFEMCOverlapRadii;
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
typename FEMIntegrator::template ScalarConstraint< UIntPack< FEMSigs ... > , ZeroUIntPack< Dim > , IsotropicUIntPack< Dim , FEMTrivialSignature > , ZeroUIntPack< Dim > > F( {1.} );
DenseNodeData< Real , UIntPack< FEMSigs ... > > weights = initDenseNodeData( UIntPack< FEMSigs ... >() );
typename BaseConstraint::CCStencil stencil;
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( int d=0 ; d<=_maxDepth ; d++ )
{
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( d ) );
F.init( d );
F.template setStencil< false >( stencil );
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
FEMTreeNode* node = _sNodes.treeNodes[i];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
LocalOffset off;
{
LocalDepth d ; _localDepthAndOffset( node , d , off );
}
neighborKey.getNeighbors( LeftFEMCOverlapRadii() , RightFEMCOverlapRadii() , node , neighbors );
bool isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMSignature< FEMSigs >::Degree ... >() , ZeroUIntPack< Dim >() , d , off );
double sum=0 , totalSum=0;
if( isInterior )
{
ConstPointer( FEMTreeNode * const ) nodes = neighbors.neighbors().data;
ConstPointer( Point< double , 1 > ) stencilValues = stencil.data;
for( int i=0 ; i<WindowSize< UIntPack< BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree , 0 >::OverlapSize ... > >::Size ; i++ )
{
double s = stencilValues[i][0];
totalSum += s;
if( isValidSpaceNode( nodes[i] ) ) sum += s;
}
}
else
{
static const int OverlapStart [] = { BSplineOverlapSizes< FEMSignature< FEMSigs >::Degree , 0 >::OverlapStart ... };
LocalOffset _off;
WindowLoop< Dim >::Run
(
IsotropicUIntPack< Dim , 0 >() , OverlapSizes() ,
[&]( int d , int i ){ _off[d] = off[d]+i+OverlapStart[d]; } ,
[&]( const FEMTreeNode* node )
{
double s = F.ccIntegrate( off , _off )[0];
totalSum += s;
if( isValidSpaceNode( node ) ) sum += s;
} ,
neighbors.neighbors()
);
}
weights[i] = (Real)( sum / totalSum );
}
}
);
}
return weights;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
DenseNodeData< Real , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::prolongationWeights( UIntPack< FEMSigs ... > , bool prolongToChildren ) const
{
DenseNodeData< Real , UIntPack< FEMSigs ... > > weights = initDenseNodeData( UIntPack< FEMSigs ... >() );
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
typedef typename BaseFEMIntegrator::RestrictionProlongation< UIntPack< FEMSignature< FEMSigs >::Degree ... > > BaseRestrictionProlongation;
typedef typename FEMIntegrator::template RestrictionProlongation< UIntPack< FEMSigs ... > > RestrictionProlongation;
typename BaseRestrictionProlongation::DownSampleStencils downSampleStencils;
RestrictionProlongation rp;
typedef typename FEMTreeNode::template ConstNeighborKey< UIntPack< ( - BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleStart ) ... > , UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleEnd ... > > UpSampleKey;
typedef typename FEMTreeNode::template ConstNeighbors< UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleSize ... > > UpSampleNeighbors;
typedef typename FEMTreeNode::template ConstNeighborKey< UIntPack< - BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start ... > , UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1End ... > > DownSampleKey;
typedef typename FEMTreeNode::template ConstNeighbors< UIntPack< ( - BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start + BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1End + 1 ) ... > > DownSampleNeighbors;
const int UpSampleStart[] = { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleStart ... };
const int DownSampleStart[2][Dim] = { { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start ... } , { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1Start ... } };
const int DownSampleEnd[2][Dim] = { { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0End ... } , { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1End ... } };
std::vector< UpSampleKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( _maxDepth-1 ) );
ThreadPool::Parallel_for( _sNodesBegin(_maxDepth) , _sNodesEnd(_maxDepth) , [&]( unsigned int , size_t i ){ weights[i] = (Real)0.; } );
for( int lowDepth=0 ; lowDepth<_maxDepth ; lowDepth++ )
{
( ( BaseRestrictionProlongation& )rp ).init( lowDepth+1 );
typename BaseRestrictionProlongation::UpSampleStencil upSampleStencil;
rp.setStencil( upSampleStencil );
ThreadPool::Parallel_for( _sNodesBegin(lowDepth) , _sNodesEnd(lowDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
FEMTreeNode* pNode = _sNodes.treeNodes[i];
UpSampleKey& neighborKey = neighborKeys[ thread ];
LocalDepth d ; LocalOffset pOff;
_localDepthAndOffset( pNode , d , pOff );
neighborKey.getNeighbors( pNode );
UpSampleNeighbors neighbors;
neighborKey.getChildNeighbors( 0 , _localToGlobal( d ) , neighbors );
double partialSum = 0 , totalSum = 0;
// Want to make sure test if contained children are interior.
// This is more conservative because we are test that overlapping children are interior
bool isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMSignature< FEMSigs >::Degree ... >() , UIntPack< FEMSignature< FEMSigs >::Degree ... >() , d , pOff );
LocalOffset cOff;
if( isInterior )
{
WindowLoop< Dim >::Run
(
IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleSize ... >() ,
[&]( int d , int i ){ cOff[d] = UpSampleStart[d] + pOff[d]*2 + i; } ,
[&]( const FEMTreeNode* node , double stencilValue )
{
if( FEMIntegrator::IsValidFEMNode( UIntPack< FEMSigs ... >() , lowDepth+1 , cOff ) )
{
totalSum += stencilValue;
if( _isValidFEM1Node( node ) ) partialSum += stencilValue;
}
} ,
neighbors.neighbors() , upSampleStencil()
);
}
else
{
WindowLoop< Dim >::Run
(
IsotropicUIntPack< Dim , 0 >() , UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::UpSampleSize ... >() ,
[&]( int d , int i ){ cOff[d] = UpSampleStart[d] + pOff[d]*2 + i; } ,
[&]( const FEMTreeNode* node )
{
if( FEMIntegrator::IsValidFEMNode( UIntPack< FEMSigs ... >() , lowDepth+1 , cOff ) )
{
double stencilValue = rp.upSampleCoefficient( pOff , cOff );
totalSum += stencilValue;
if( _isValidFEM1Node( node ) ) partialSum += stencilValue;
}
} ,
neighbors.neighbors()
);
}
weights[i] = (Real)( partialSum / totalSum );
}
}
);
}
if( prolongToChildren )
{
std::vector< DownSampleKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( _maxDepth-1 ) );
for( int lowDepth=_maxDepth-1 ; lowDepth>=0 ; lowDepth-- )
{
( ( BaseRestrictionProlongation& )rp ).init( lowDepth+1 );
typename BaseRestrictionProlongation::DownSampleStencils downSampleStencils;
rp.setStencils( downSampleStencils );
ThreadPool::Parallel_for( _sNodesBegin(lowDepth+1) , _sNodesEnd(lowDepth+1) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
FEMTreeNode *cNode = _sNodes.treeNodes[i];
int c = (int)( cNode-cNode->parent->children );
DownSampleKey& neighborKey = neighborKeys[ thread ];
LocalDepth d ; LocalOffset cOff;
_localDepthAndOffset( cNode , d , cOff );
DownSampleNeighbors neighbors = neighborKey.getNeighbors( cNode->parent );
// Want to make sure test if contained children are interior.
// This is more conservative because we are test that overlapping children are interior
bool isInterior;
{
LocalDepth d ; LocalOffset pOff;
_localDepthAndOffset( cNode->parent , d , pOff );
isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMSignature< FEMSigs >::Degree ... >() , UIntPack< FEMSignature< FEMSigs >::Degree ... >() , d , pOff );
}
typename BaseRestrictionProlongation::DownSampleStencil& downSampleStencil = downSampleStencils.data[c];
int start[Dim] , end[Dim];
for( int d=0 ; d<Dim ; d++ ) start[d] = DownSampleStart[(c>>d)&1][d] - DownSampleStart[0][d] , end[d] = - DownSampleStart[0][d] + DownSampleEnd[(c>>d)&1][d] + 1;
double partialSum = 0 , totalSum = 0;
if( isInterior )
{
WindowLoop< Dim >::Run
(
start , end ,
[&]( int , int ){ } ,
[&]( const FEMTreeNode* node , double stencilValue ){ if( _isValidFEM1Node( node ) ) totalSum += stencilValue , partialSum += weights[ node->nodeData.nodeIndex ] * stencilValue; } ,
neighbors.neighbors() , downSampleStencil()
);
}
else
{
WindowLoop< Dim >::Run
(
start , end ,
[&]( int , int ){ } ,
[&]( const FEMTreeNode* node )
{
if( _isValidFEM1Node( node ) )
{
LocalDepth d ; LocalOffset pOff;
_localDepthAndOffset( node , d , pOff );
double stencilValue = rp.upSampleCoefficient( pOff , cOff );
totalSum += stencilValue , partialSum += weights[ node->nodeData.nodeIndex ] * stencilValue;
}
} ,
neighbors.neighbors()
);
}
weights[i] = (Real)( partialSum / totalSum );
}
}
);
}
}
return weights;
}
template< unsigned int Dim , class Real >
template< class C , unsigned int ... Degrees , unsigned int ... FEMSigs >
void FEMTree< Dim , Real >::_upSample( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template RestrictionProlongation< UIntPack< Degrees ... > >& rp , LocalDepth highDepth , Pointer( C ) coefficients ) const
{
LocalDepth lowDepth = highDepth-1;
if( lowDepth<0 ) return;
typedef typename BaseFEMIntegrator::RestrictionProlongation< UIntPack< Degrees ... > > BaseRestrictionProlongation;
typedef typename FEMTreeNode::template ConstNeighborKey< UIntPack< - BSplineSupportSizes< Degrees >::DownSample0Start ... > , UIntPack< BSplineSupportSizes< Degrees >::DownSample1End ... > > DownSampleKey;
typedef typename FEMTreeNode::template ConstNeighbors< UIntPack< ( - BSplineSupportSizes< Degrees >::DownSample0Start + BSplineSupportSizes< Degrees >::DownSample1End + 1 ) ... > > DownSampleNeighbors;
typedef UIntPack< ( - BSplineSupportSizes< Degrees >::DownSample0Start + BSplineSupportSizes< Degrees >::DownSample1End + 1 ) ... > DownSampleSizes;
std::vector< DownSampleKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( lowDepth ) );
( ( BaseRestrictionProlongation& )rp ).init( highDepth );
typename BaseRestrictionProlongation::DownSampleStencils downSampleStencils;
rp.setStencils( downSampleStencils );
const int Start[2][Dim] = { { BSplineSupportSizes< Degrees >::DownSample0Start ... } , { BSplineSupportSizes< Degrees >::DownSample1Start ... } };
const int End[2][Dim] = { { BSplineSupportSizes< Degrees >::DownSample0End ... } , { BSplineSupportSizes< Degrees >::DownSample1End ... } };
static const WindowLoopData< UIntPack< ( - BSplineSupportSizes< Degrees >::DownSample0Start + BSplineSupportSizes< Degrees >::DownSample1End + 1 ) ... > > loopData
( []( int c , int* start , int* end )
{
const int Start[2][Dim] = { { BSplineSupportSizes< Degrees >::DownSample0Start ... } , { BSplineSupportSizes< Degrees >::DownSample1Start ... } };
const int End[2][Dim] = { { BSplineSupportSizes< Degrees >::DownSample0End ... } , { BSplineSupportSizes< Degrees >::DownSample1End ... } };
for( int d=0 ; d<Dim ; d++ ) start[d] = Start[(c>>d)&1][d] - Start[0][d] , end[d] = - Start[0][d] + End[(c>>d)&1][d] + 1;
}
);
// For Dirichlet constraints, can't get to all children from parents because boundary nodes are invalid
ThreadPool::Parallel_for( _sNodesBegin(highDepth) , _sNodesEnd(highDepth) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
FEMTreeNode *cNode = _sNodes.treeNodes[i];
int c = (int)( cNode-cNode->parent->children );
DownSampleKey& neighborKey = neighborKeys[ thread ];
DownSampleNeighbors neighbors = neighborKey.getNeighbors( cNode->parent );
// Want to make sure test if contained children are interior.
// This is more conservative because we are test that overlapping children are interior
bool isInterior;
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( cNode->parent , d , off );
isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< Degrees ... >() , UIntPack< Degrees ... >() , d , off );
}
C& fineCoefficient = coefficients[ cNode->nodeData.nodeIndex ];
typename BaseRestrictionProlongation::DownSampleStencil& downSampleStencil = downSampleStencils.data[c];
unsigned int size = loopData.size[c];
const unsigned int* indices = loopData.indices[c];
Pointer( const FEMTreeNode* ) nodes = neighbors.neighbors().data;
Pointer( double ) downSampleValues = downSampleStencil.data;
if( isInterior )
{
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( _isValidFEM1Node( nodes[idx] ) ) fineCoefficient += (C)( coefficients[ nodes[idx]->nodeData.nodeIndex ] * (Real)downSampleValues[idx] );
}
}
else
{
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( cNode , d , off );
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( _isValidFEM1Node( nodes[idx] ) )
{
LocalDepth _d ; LocalOffset _off;
_localDepthAndOffset( nodes[idx] , _d , _off );
fineCoefficient += (C)( coefficients[ nodes[idx]->nodeData.nodeIndex ] * (Real)rp.upSampleCoefficient( _off , off ) );
}
}
}
}
}
);
}
template< unsigned int Dim , class Real >
template< bool XMajor , class C , unsigned int ... FEMSigs >
void FEMTree< Dim , Real >::_RegularGridUpSample( UIntPack< FEMSigs ... > , LocalDepth highDepth , ConstPointer( C ) lowCoefficients , Pointer( C ) highCoefficients )
{
LocalDepth lowDepth = highDepth - 1;
if( lowDepth<0 ) return;
int lowBegin[Dim] , lowEnd[Dim] , highBegin[Dim] , highEnd[Dim];
FEMIntegrator::BSplineBegin( UIntPack< FEMSigs ... >() , lowDepth , lowBegin );
FEMIntegrator::BSplineEnd ( UIntPack< FEMSigs ... >() , lowDepth , lowEnd );
FEMIntegrator::BSplineBegin( UIntPack< FEMSigs ... >() , highDepth , highBegin );
FEMIntegrator::BSplineEnd ( UIntPack< FEMSigs ... >() , highDepth , highEnd );
_RegularGridUpSample< XMajor >( UIntPack< FEMSigs ... >() , lowBegin , lowEnd , highBegin , highEnd , highDepth , lowCoefficients , highCoefficients );
}
template< unsigned int Dim , class Real >
template< bool XMajor , class C , unsigned int ... FEMSigs >
void FEMTree< Dim , Real >::_RegularGridUpSample( UIntPack< FEMSigs ... > , const int lowBegin[] , const int lowEnd[] , const int highBegin[] , const int highEnd[] , LocalDepth highDepth , ConstPointer( C ) lowCoefficients , Pointer( C ) highCoefficients )
{
// Note: In contrast to the standard grid indexing, where x is the major index in (x,y,z,...)
// For our representation of the grid, x is the minor index
LocalDepth lowDepth = highDepth - 1;
if( lowDepth<0 ) return;
static const int LeftDownSampleRadii[] = { -( ( BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start < BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1Start ) ? BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start : BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1Start ) ... };
static const int DownSampleStart[][ sizeof...(FEMSigs) ] = { { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start ... } , { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1Start ... } };
static const unsigned int DownSampleSize [][ sizeof...(FEMSigs) ] = { { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Size ... } , { BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1Size ... } };
typedef UIntPack< ( - BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start + BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1End + 1 ) ... > DownSampleSizes;
typedef typename FEMIntegrator::template RestrictionProlongation< UIntPack< FEMSigs ... > > RestrictionProlongation;
typedef typename BaseFEMIntegrator::template RestrictionProlongation< UIntPack< FEMSignature< FEMSigs >::Degree ... > > BaseRestrictionProlongation;
RestrictionProlongation rp;
typename BaseRestrictionProlongation::DownSampleStencils downSampleStencils;
rp.init( highDepth );
rp.setStencils( downSampleStencils );
struct LoopData
{
unsigned int size[1<<Dim];
unsigned int indices[1<<Dim][ WindowSize< UIntPack< ( - BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start + BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1End + 1 ) ... > >::Size ];
long long offsets[1<<Dim][ WindowSize< UIntPack< ( - BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample0Start + BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::DownSample1End + 1 ) ... > >::Size ];
LoopData( const int lowBegin[] , const int lowEnd[] , const int highBegin[] , const int highEnd[] )
{
int start[Dim] , end[Dim] , lowDim[Dim] , highDim[Dim];
for( int d=0 ; d<Dim ; d++ ) lowDim[d] = lowEnd[d] - lowBegin[d] , highDim[d] = highEnd[d] - highBegin[d];
int lowDimMultiplier[Dim] , highDimMultiplier[Dim];
if( XMajor )
{
lowDimMultiplier[0] = highDimMultiplier[0] = 1;
for( int d=1 ; d<Dim ; d++ ) lowDimMultiplier[d] = lowDimMultiplier[d-1] * (lowEnd[d-1]-lowBegin[d-1]) , highDimMultiplier[d] = highDimMultiplier[d-1] * (highEnd[d-1]-highBegin[d-1]);
}
else
{
lowDimMultiplier[Dim-1] = highDimMultiplier[Dim-1] = 1;
for( int d=Dim-2 ; d>=0 ; d-- ) lowDimMultiplier[d] = lowDimMultiplier[d+1] * (lowEnd[d+1]-lowBegin[d+1]) , highDimMultiplier[d] = highDimMultiplier[d+1] * (highEnd[d+1]-highBegin[d+1]);
}
for( int c=0 ; c<(1<<Dim) ; c++ )
{
size[c] = 0;
for( int d=0 ; d<Dim ; d++ ) start[d] = DownSampleStart[(c>>d)&1][d] + LeftDownSampleRadii[d] , end[d] = start[d] + DownSampleSize[(c>>d)&1][d];
unsigned int idx[Dim];
long long off[Dim+1];
off[0] = 0;
WindowLoop< Dim >::Run
(
start , end ,
[&]( int d , int i ){ idx[d] = i ; off[d+1] = off[d] + ( i - LeftDownSampleRadii[d] - lowBegin[d] ) * lowDimMultiplier[d]; } ,
[&]( void ){ indices[c][ size[c] ] = GetWindowIndex( DownSampleSizes() , idx ) , offsets[c][ size[c] ] = off[Dim] ; size[c]++; }
);
}
}
};
const LoopData loopData( lowBegin , lowEnd , highBegin , highEnd );
int lowDim[Dim] , highDim[Dim];
for( int d=0 ; d<Dim ; d++ ) lowDim[d] = lowEnd[d] - lowBegin[d] , highDim[d] = highEnd[d] - highBegin[d];
int Zero[Dim];
for( int d=0 ; d<Dim ; d++ ) Zero[d] = 0;
int lowDimMultiplier[Dim] , highDimMultiplier[Dim];
if( XMajor )
{
lowDimMultiplier[0] = highDimMultiplier[0] = 1;
for( int d=1 ; d<Dim ; d++ ) lowDimMultiplier[d] = lowDimMultiplier[d-1] * (lowEnd[d-1]-lowBegin[d-1]) , highDimMultiplier[d] = highDimMultiplier[d-1] * (highEnd[d-1]-highBegin[d-1]);
}
else
{
lowDimMultiplier[Dim-1] = highDimMultiplier[Dim-1] = 1;
for( int d=Dim-2 ; d>=0 ; d-- ) lowDimMultiplier[d] = lowDimMultiplier[d+1] * (lowEnd[d+1]-lowBegin[d+1]) , highDimMultiplier[d] = highDimMultiplier[d+1] * (highEnd[d+1]-highBegin[d+1]);
}
struct UpdateData
{
typedef UIntPack< FEMSignature< FEMSigs >::Degree ... > Degrees;
LocalOffset pOff , cOff;
int c;
long long lowIndex[Dim+1] , highIndex[Dim+1];
bool isInterior[Dim+1];
int start[Dim] , end[Dim];
void init( int lowDepth , const int lowBegin[] , const int lowEnd[] , const int highBegin[] , const int highEnd[] )
{
c = 0;
lowIndex[0] = highIndex[0] = 0;
isInterior[0] = true;
this->lowBegin = lowBegin , this->lowEnd = lowEnd , this->highBegin = highBegin , this->highEnd = highEnd;
if( XMajor )
{
_lowDim[0] = _highDim[0] = 1;
for( int d=1 ; d<Dim ; d++ ) _lowDim[d] = _lowDim[d-1] * (lowEnd[d-1]-lowBegin[d-1]) , _highDim[d] = _highDim[d-1] * (highEnd[d-1]-highBegin[d-1]);
}
else
{
_lowDim[Dim-1] = _highDim[Dim-1] = 1;
for( int d=Dim-2 ; d>=0 ; d-- ) _lowDim[d] = _lowDim[d+1] * (lowEnd[d+1]-lowBegin[d+1]) , _highDim[d] = _highDim[d+1] * (highEnd[d+1]-highBegin[d+1]);
}
BaseFEMIntegrator::InteriorOverlappedSpan( Degrees() , Degrees() , lowDepth , _begin , _end );
}
void set( int d , int i )
{
int ii = i + highBegin[d];
cOff[d] = ii;
pOff[d] = (ii>>1);
c = ( c & ( ~(1<<d) ) ) | (ii&1)<<d;
lowIndex[d+1] = lowIndex[d] + pOff[d] * _lowDim[d];
highIndex[d+1] = highIndex[d] + i * _highDim[d];
start[d] = DownSampleStart[(c>>d)&1][d] + LeftDownSampleRadii[d] , end[d] = start[d] + DownSampleSize[(c>>d)&1][d];
isInterior[d+1] = isInterior[d] && ( pOff[d] + start[d] - LeftDownSampleRadii[d] )>=lowBegin[d] && ( pOff[d] + end[d] - LeftDownSampleRadii[d] )<lowEnd[d] && pOff[d]>=_begin[d] && pOff[d]<_end[d];
}
protected:
const int *lowBegin , *lowEnd , *highBegin , *highEnd;
int _lowDim[Dim] , _highDim[Dim] , _begin[Dim] , _end[Dim];
};
std::vector< UpdateData > updateData( ThreadPool::NumThreads() );
for( int i=0 ; i<updateData.size() ; i++ ) updateData[i].init( lowDepth , lowBegin , lowEnd , highBegin , highEnd );
WindowLoop< Dim >::RunParallel
(
Zero , highDim ,
[&]( unsigned int t , int d , size_t i ){ updateData[t].set( d , (int)i ); } ,
[&]( unsigned int t )
{
const UpdateData& data = updateData[t];
const long long highIdx = data.highIndex[Dim] , lowIndex = data.lowIndex[Dim];
const int c = data.c;
const bool isInterior = data.isInterior[Dim];
C highCoefficient = {};
if( isInterior )
{
typename BaseRestrictionProlongation::DownSampleStencil& downSampleStencil = downSampleStencils.data[c];
const unsigned int size = loopData.size[c];
const unsigned int* idx = loopData.indices[c];
const long long* off = loopData.offsets[c];
ConstPointer( double ) stencilValues = downSampleStencil.data;
ConstPointer( C ) _lowCoefficients = lowCoefficients + lowIndex;
for( unsigned int i=0 ; i<size ; i++ ) highCoefficient += (C)( _lowCoefficients[ off[i] ] * (Real)stencilValues[ idx[i] ] );
}
else
{
const LocalOffset& pOff = data.pOff;
const LocalOffset& cOff = data.cOff;
const int* start = data.start;
const int* end = data.end;
long long lowIdx[ Dim+1 ] ; lowIdx[0] = 0;
bool isValid[Dim+1] ; isValid[0] = true;
int _pOff[Dim];
WindowLoop< Dim >::Run
(
start , end ,
[&]( int d , int i )
{
_pOff[d] = pOff[d] + i - LeftDownSampleRadii[d];
lowIdx[d+1] = lowIdx[d] + lowDimMultiplier[d] * ( _pOff[d] - lowBegin[d] );
isValid[d+1] = isValid[d] && ( _pOff[d]>=lowBegin[d] && _pOff[d]<lowEnd[d] );
} ,
[&]( void ){ if( isValid[Dim] ) highCoefficient += (C)( lowCoefficients[ lowIdx[Dim] ] * (Real)rp.upSampleCoefficient( _pOff , cOff ) ); }
);
}
highCoefficients[ highIdx ] += highCoefficient;
}
);
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , typename TDotT , unsigned int ... PointDs >
DenseNodeData< T , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::solveSystem( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const DenseNodeData< T , UIntPack< FEMSigs ... > >& constraints , TDotT Dot , LocalDepth maxSolveDepth , const typename FEMTree< Dim , Real >::SolverInfo& solverInfo , InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
DenseNodeData< T , UIntPack< FEMSigs ... > > solution;
solveSystem( UIntPack< FEMSigs ... >() , F , constraints , solution , Dot , maxSolveDepth , solverInfo , interpolationInfo... );
return solution;
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs , typename T , typename TDotT , unsigned int ... PointDs >
void FEMTree< Dim , Real >::solveSystem( UIntPack< FEMSigs ... > , typename BaseFEMIntegrator::template System< UIntPack< FEMSignature< FEMSigs >::Degree ... > >& F , const DenseNodeData< T , UIntPack< FEMSigs ... > >& constraints , DenseNodeData< T , UIntPack< FEMSigs ... > >& solution , TDotT Dot , LocalDepth maxSolveDepth , const typename FEMTree< Dim , Real >::SolverInfo& solverInfo , InterpolationInfo< T , PointDs >* ... interpolationInfo ) const
{
int baseDepth = solverInfo.baseDepth;
if( baseDepth>getFullDepth( UIntPack< FEMSignature< FEMSigs >::Degree ... >() ) ) ERROR_OUT( "Base depth cannot excceed full depth: " , baseDepth , " <= " , getFullDepth( UIntPack< FEMSignature< FEMSigs >::Degree ... >() ) );
static_assert( Dim==sizeof ... ( FEMSigs ) , "[ERROR] FEMTree:solveSystem: Dimensions and number of signatures don't match" );
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
PointEvaluator< UIntPack< FEMSigs ... > , UIntPack< FEMSignature< FEMSigs >::Degree ... > > bsData( sizeof...(PointDs)==0 ? 0 : maxSolveDepth );
maxSolveDepth = std::min< LocalDepth >( maxSolveDepth , _maxDepth );
bool clearSolution = solution.size()!=_sNodesEnd( _maxDepth );
if( clearSolution ) solution = initDenseNodeData< T >( UIntPack< FEMSigs ... >() ) , clearSolution = true;
bool simpleSolve = clearSolution && solverInfo.vCycles==1 && solverInfo.cascadic;
// The initial estimate of the solution (may be empty or may come in with an initial guess)
Pointer( T ) _solution = solution();
// The constraints
ConstPointer( T ) _constraints = constraints();
// _residualConstraints:
// -- stores the difference between the initial constraints and the constraints met by the current solution at all _other_ levels
// **** This could implemented in one of two ways:
// **** (1) Repeatedly computing the difference using the entire solution
// **** (2) Iteratively updating using the change in the solution
// **** We have opted for #1 to avoid having to compute/store the change in the solution after each solve
Pointer( T ) _residualConstraints = AllocPointer< T >( _sNodesEnd( _maxDepth-1 ) );
// The constraints met during the restriction phase
Pointer( T ) _restrictedConstraints = NullPointer( T );
// The solution obtained during the prolongation phase
Pointer( T ) _prolongedSolution = AllocPointer< T >( _sNodesEnd( _maxDepth-1 ) );
memset( _prolongedSolution , 0 , sizeof(T) * _sNodesEnd( _maxDepth-1 ) );
if( !( clearSolution && solverInfo.vCycles==1 && solverInfo.cascadic ) )
{
_restrictedConstraints = AllocPointer< T >( _sNodesEnd( _maxDepth-1 ) );
memset( _restrictedConstraints , 0 , sizeof(T) * _sNodesEnd( _maxDepth-1 ) );
}
Pointer( double ) _bNorm2 = NullPointer( double );
if( solverInfo.showGlobalResidual!=SHOW_GLOBAL_RESIDUAL_NONE )
{
_bNorm2 = AllocPointer< double >( _maxDepth+1 );
memset( _bNorm2 , 0 , sizeof(double) * ( _maxDepth+1 ) );
for( LocalDepth d=baseDepth ; d<=maxSolveDepth ; d++ ) for( node_index_type i=_sNodesBegin(d) ; i<_sNodesEnd(d) ; i++ ) _bNorm2[d] += Dot( _constraints[i] , _constraints[i] );
}
auto UpdateProlongation = [&] ( int depth )
{
if( depth<_maxDepth && _prolongedSolution )
{
memset( _prolongedSolution + _sNodesBegin( depth ) , 0 , sizeof( T ) * _sNodesSize( depth ) );
// Up-sample the prolonged solution @(depth-1) into the prolonged solution @(depth)
F.init( depth );
if( depth>baseDepth ) _upSample( UIntPack< FEMSigs ... >() , F.restrictionProlongation() , depth , _prolongedSolution );
// Add in the solution @(depth) to the prolonged solution
ThreadPool::Parallel_for( _sNodesBegin(depth) , _sNodesEnd(depth) , [&]( unsigned int , size_t i ){ _prolongedSolution[i] += solution[i]; } );
}
};
auto UpdateRestriction = [&]( int depth , InterpolationInfo< T , PointDs >* ... interpolationInfo )
{
if( depth>baseDepth && _restrictedConstraints )
{
memset( _restrictedConstraints + _sNodesBegin( depth-1 ) , 0 , sizeof( T ) * _sNodesSize( depth-1 ) );
// Update the restricted constraints @(depth-1) based on the solution @(depth)
F.init( depth );
_updateRestrictedIntegralConstraints( UIntPack< FEMSigs ... >() , F , depth , ( ConstPointer(T) )_solution , _restrictedConstraints );
_updateRestrictedInterpolationConstraints( bsData , depth , ( ConstPointer( T ) )_solution , _restrictedConstraints , interpolationInfo... );
// Down-sample the restricted constraints @(depth) into the restricted constraints @(depth-1)
if( depth<_maxDepth ) _downSample( UIntPack< FEMSigs ... >() , F.restrictionProlongation() , depth , _restrictedConstraints );
}
};
auto SetResidualConstraints = [&]( int depth , InterpolationInfo< T , PointDs >* ... interpolationInfo )
{
// Copy the constraints
if( depth<_maxDepth ) memcpy( _residualConstraints + _sNodesBegin(depth) , _constraints + _sNodesBegin(depth) , sizeof( T ) * _sNodesSize(depth) );
// Update the constraints @(depth) using the prolonged solution @(depth-1)
if( depth>baseDepth && _prolongedSolution ) _setPointValuesFromProlongedSolution( depth , bsData , ( ConstPointer( T ) )_prolongedSolution , interpolationInfo... );
// Update the constraints @(depth) using the restriced residual @(depth)
if( depth<_maxDepth && _restrictedConstraints )
ThreadPool::Parallel_for( _sNodesBegin(depth) , _sNodesEnd(depth) , [&]( unsigned int , size_t i ){ _residualConstraints[i] -= _restrictedConstraints[i]; } );
};
auto OutputSolverStats = [&] ( int cycle , int depth , const _SolverStats& sStats , bool showResidual , int actualIters )
{
if( solverInfo.verbose )
{
node_index_type femNodes = (node_index_type)validFEMNodes( UIntPack< FEMSigs ... >() , depth );
if( maxSolveDepth<10 )
if( solverInfo.vCycles<10 ) printf( "Cycle[%d] Depth[%d/%d]:\t" , cycle , depth , maxSolveDepth );
else printf( "Cycle[%2d] Depth[%d/%d]:\t" , cycle , depth , maxSolveDepth );
else
if( solverInfo.vCycles<10 ) printf( "Cycle[%d] Depth[%2d/%d]:\t" , cycle , depth , maxSolveDepth );
else printf( "Cycle[%2d] Depth[%2d/%d]:\t" , cycle , depth , maxSolveDepth );
printf( "Updated constraints / Got system / Solved in: %6.3f / %6.3f / %6.3f\t(%.3f MB)\tNodes: %llu\n" , sStats.constraintUpdateTime , sStats.systemTime , sStats.solveTime , _LocalMemoryUsage , (unsigned long long)femNodes );
}
if( solverInfo.showResidual && showResidual )
{
for( int d=baseDepth ; d<depth ; d++ ) printf( " " );
printf( "%s: %.4e -> %.4e -> %.4e (%.1e) [%d]\n" , depth<=solverInfo.cgDepth ? "CG" : "GS" , sqrt( sStats.bNorm2 ) , sqrt( sStats.inRNorm2 ) , sqrt( sStats.outRNorm2 ) , sqrt( sStats.outRNorm2 / sStats.inRNorm2 ) , actualIters );
}
};
// Set the cumulative solution
if( !clearSolution ) for( LocalDepth d=baseDepth ; d<maxSolveDepth ; d++ ) UpdateProlongation( d );
_SolverStats sStats;
bool showResidual;
int actualIters;
double t;
struct TrivialSORWeights{ Real operator[] ( node_index_type idx ) const { return (Real)1; } };
struct SORWeights
{
DenseNodeData< Real, UIntPack< FEMSigs ... > > supportWeights , prolongationSupportWeights;
std::function< Real (Real,Real) > sorFunction;
Real operator[] ( node_index_type idx ) const
{
if ( supportWeights() && prolongationSupportWeights() ) return sorFunction( supportWeights[idx] , prolongationSupportWeights[idx] );
else if( supportWeights() ) return sorFunction( supportWeights[idx] , 1 );
else if( prolongationSupportWeights() ) return sorFunction( 1 , prolongationSupportWeights[idx] );
else return sorFunction( 1 , 1 );
}
};
SORWeights sorWeights;
if( solverInfo.useSupportWeights ) sorWeights.supportWeights = supportWeights( UIntPack< FEMSigs ... >() );
if( solverInfo.useProlongationSupportWeights ) sorWeights.prolongationSupportWeights = prolongationWeights( UIntPack< FEMSigs ... >() , false );
auto SolveRestriction = [&]( int v , int depth , InterpolationInfo< T , PointDs >* ... interpolationInfo )
{
sorWeights.sorFunction = solverInfo.sorRestrictionFunction;
// The restriction phase
if( solverInfo.cascadic )
{
showResidual = false;
if( !clearSolution || v>0 ) for( LocalDepth d=depth ; d>=baseDepth ; d-- ) { F.init( d ) ; UpdateRestriction( d , interpolationInfo ... ); }
}
else
{
bool coarseToFine = false;
for( LocalDepth d=depth ; d>=baseDepth ; d-- )
{
sStats.constraintUpdateTime = 0;
showResidual = ( d!=baseDepth );
int iters = solverInfo.iters( v , true , d );
t = Time();
F.init( d );
SetResidualConstraints( d , interpolationInfo... );
sStats.constraintUpdateTime += Time()-t;
// In the restriction phase we do not solve at the coarsest resolution since we will do so in the prolongation phase
if( d==baseDepth ) _solveRegularMG( UIntPack< FEMSigs ... >() , F , bsData , d , _solution , d==_maxDepth ? _constraints : _residualConstraints , Dot , solverInfo.baseVCycles , iters , sStats , solverInfo.showResidual , solverInfo.cgAccuracy , interpolationInfo... );
else
{
if( d>solverInfo.cgDepth ) actualIters = _solveSystemGS( UIntPack< FEMSigs ... >() , Dim!=1 , F , bsData , d , _solution , ( ConstPointer( T ) )_prolongedSolution , d==_maxDepth ? _constraints : _residualConstraints , Dot , iters , coarseToFine , solverInfo.sliceBlockSize , sorWeights , sStats , solverInfo.showResidual , interpolationInfo... );
else actualIters = _solveSystemCG( UIntPack< FEMSigs ... >() , F , bsData , d , _solution , ( ConstPointer( T ) )_prolongedSolution , d==_maxDepth ? _constraints : _residualConstraints , Dot , iters , coarseToFine , sStats , solverInfo.showResidual , solverInfo.cgAccuracy , interpolationInfo... );
}
t = Time();
UpdateRestriction( d , interpolationInfo... );
sStats.constraintUpdateTime += Time()-t;
OutputSolverStats( v , d , sStats , showResidual , actualIters );
}
}
};
auto SolveProlongation = [&]( int v , int depth , InterpolationInfo< T , PointDs >* ... interpolationInfo )
{
sorWeights.sorFunction = solverInfo.sorProlongationFunction;
showResidual = true;
bool coarseToFine = true;
for( LocalDepth d=baseDepth ; d<=depth ; d++ )
{
sStats.constraintUpdateTime = 0;
int iters = solverInfo.iters( v , false , d );
t = Time();
F.init( d );
SetResidualConstraints( d , interpolationInfo... );
sStats.constraintUpdateTime += Time()-t;
if( d==baseDepth ) _solveRegularMG( UIntPack< FEMSigs ... >() , F , bsData , d , _solution , d==_maxDepth ? _constraints : _residualConstraints , Dot , solverInfo.baseVCycles , iters , sStats , solverInfo.showResidual , solverInfo.cgAccuracy , interpolationInfo... );
else
{
if( d>solverInfo.cgDepth ) actualIters = _solveSystemGS( UIntPack< FEMSigs ... >() , Dim!=1 , F , bsData , d , _solution , ( ConstPointer( T ) )_prolongedSolution , d==_maxDepth ? _constraints : _residualConstraints , Dot , iters , coarseToFine , solverInfo.sliceBlockSize , sorWeights , sStats , solverInfo.showResidual , interpolationInfo... );
else actualIters = _solveSystemCG( UIntPack< FEMSigs ... >() , F , bsData , d , _solution , ( ConstPointer( T ) )_prolongedSolution , d==_maxDepth ? _constraints : _residualConstraints , Dot , iters , coarseToFine , sStats , solverInfo.showResidual , solverInfo.cgAccuracy , interpolationInfo... );
}
t = Time();
UpdateProlongation( d );
sStats.constraintUpdateTime += Time()-t;
OutputSolverStats( v , d , sStats , showResidual , actualIters );
}
};
for( int v=0 ; v<solverInfo.vCycles ; v++ )
{
if( solverInfo.wCycle )
{
for( int d=maxSolveDepth ; d>baseDepth ; d-- )
{
SolveRestriction ( v , d , interpolationInfo ... );
SolveProlongation( v , d-1 , interpolationInfo ... );
}
for( int d=baseDepth+1 ; d<=maxSolveDepth ; d++ )
{
SolveRestriction ( v , d-1 , interpolationInfo ... );
SolveProlongation( v , d , interpolationInfo ... );
}
}
else
{
SolveRestriction ( v , maxSolveDepth , interpolationInfo ... );
SolveProlongation( v , maxSolveDepth , interpolationInfo ... );
}
if( solverInfo.showGlobalResidual==SHOW_GLOBAL_RESIDUAL_ALL || ( solverInfo.showGlobalResidual==SHOW_GLOBAL_RESIDUAL_LAST && v==solverInfo.vCycles-1 ) )
{
bool coarseToFine = false;
std::vector< double > rNorms( maxSolveDepth+1 );
for( LocalDepth d=maxSolveDepth ; d>=baseDepth ; d-- )
{
F.init( d );
SetResidualConstraints( d , interpolationInfo... );
_solveSystemGS( UIntPack< FEMSigs ... >() , Dim!=1 , F , bsData , d , _solution , ( ConstPointer( T ) )_prolongedSolution , d==_maxDepth ? _constraints : _residualConstraints , Dot , 0 , coarseToFine , solverInfo.sliceBlockSize , TrivialSORWeights() , sStats , true , interpolationInfo... );
UpdateRestriction( d , interpolationInfo... );
rNorms[d] = sqrt( sStats.outRNorm2 / _bNorm2[d] );
}
printf( "%3d" , v+1 );
for( int d=baseDepth ; d<=maxSolveDepth ; d++ ) printf( "\t%.4e" , rNorms[d] );
printf( "\n" );
}
}
MemoryUsage();
FreePointer( _residualConstraints );
FreePointer( _restrictedConstraints );
FreePointer( _prolongedSolution );
FreePointer( _bNorm2 );
}
template< unsigned int Dim , class Real >
template< unsigned int ... FEMSigs >
DenseNodeData< Real , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::initDenseNodeData( UIntPack< FEMSigs ... > ) const
{
DenseNodeData< Real , UIntPack< FEMSigs ... > > constraints( _sNodes.size() );
memset( constraints() , 0 , sizeof(Real)*_sNodes.size() );
return constraints;
}
template< unsigned int Dim , class Real >
template< class Data , unsigned int ... FEMSigs >
DenseNodeData< Data , UIntPack< FEMSigs ... > > FEMTree< Dim , Real >::initDenseNodeData( UIntPack< FEMSigs ... > ) const
{
DenseNodeData< Data , UIntPack< FEMSigs ... > > constraints( _sNodes.size() );
memset( constraints() , 0 , sizeof(Data)*_sNodes.size() );
return constraints;
}
template< unsigned int Dim , class Real > template< class SReal , class Data , unsigned int _Dim > Data FEMTree< Dim , Real >::_StencilDot( Point< SReal , _Dim > p1 , Point< Data , _Dim > p2 ){ Data dot={} ; for( int d=0 ; d<_Dim ; d++ ) dot += p2[d] * (Real)p1[d] ; return dot; }
template< unsigned int Dim , class Real > template< class SReal , class Data > Data FEMTree< Dim , Real >::_StencilDot( Point< SReal , 1 > p1 , Point< Data , 1 > p2 ){ return p2[0] * (Real)p1[0]; }
template< unsigned int Dim , class Real > template< class SReal , class Data > Data FEMTree< Dim , Real >::_StencilDot( SReal p1 , Point< Data , 1 > p2 ){ return p2[0] * (Real)p1; }
template< unsigned int Dim , class Real > template< class SReal , class Data > Data FEMTree< Dim , Real >::_StencilDot( Point< SReal , 1 > p1 , Data p2 ){ return p2 * (Real)p1[0]; }
template< unsigned int Dim , class Real > template< class SReal , class Data > Data FEMTree< Dim , Real >::_StencilDot( SReal p1 , Data p2 ){ return p2*(Real)p1; }
template< unsigned int Dim , class Real > template< class Real1 , unsigned int _Dim > bool FEMTree< Dim , Real >::_IsZero( Point< Real1 , _Dim > p ){ for( int d=0 ; d<_Dim ; d++ ) if( !_IsZero( p[d] ) ) return false ; return true; }
template< unsigned int Dim , class Real > template< class Real1 > bool FEMTree< Dim , Real >::_IsZero( Real1 p ){ return p==0; }
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... FEMSigs , unsigned int ... CSigs , unsigned int ... FEMDegrees , unsigned int ... CDegrees , unsigned int CDim , class Coefficients >
void FEMTree< Dim , Real >::_addFEMConstraints( UIntPack< FEMSigs ... > , UIntPack< CSigs ... > , typename BaseFEMIntegrator::template Constraint< UIntPack< FEMDegrees ... > , UIntPack< CDegrees ... > , CDim >& F , const Coefficients& coefficients , Pointer( T ) constraints , LocalDepth maxDepth ) const
{
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
_setFEM2ValidityFlags( UIntPack< CSigs ... >() );
typedef typename BaseFEMIntegrator::template Constraint< UIntPack< FEMDegrees ... > , UIntPack< CDegrees ... > , CDim > BaseConstraint;
typedef typename Coefficients::data_type D;
typedef UIntPack< ( BSplineOverlapSizes< CDegrees , FEMDegrees >::OverlapSize ) ... > OverlapSizes;
typedef UIntPack< ( -BSplineOverlapSizes< CDegrees , FEMDegrees >::OverlapStart ) ... > LeftCFEMOverlapRadii;
typedef UIntPack< ( BSplineOverlapSizes< CDegrees , FEMDegrees >::OverlapEnd ) ... > RightCFEMOverlapRadii;
typedef UIntPack< ( -BSplineOverlapSizes< FEMDegrees , CDegrees >::OverlapStart ) ... > LeftFEMCOverlapRadii;
typedef UIntPack< ( BSplineOverlapSizes< FEMDegrees , CDegrees >::OverlapEnd ) ... > RightFEMCOverlapRadii;
// To set the constraints, we iterate over the splatted normals and compute the dot-product of the divergence of the normal field with all the basis functions.
// Within the same depth: set directly as a gather
// Coarser depths
maxDepth = std::min< LocalDepth >( maxDepth , _maxDepth );
Pointer( T ) _constraints = AllocPointer< T >( _sNodesEnd( maxDepth-1 ) );
memset( _constraints , 0 , sizeof(T)*( _sNodesEnd(maxDepth-1) ) );
MemoryUsage();
static const WindowLoopData< UIntPack< BSplineOverlapSizes< CDegrees , FEMDegrees >::OverlapSize ... > > cfemLoopData( []( int c , int* start , int* end ){ BaseFEMIntegrator::ParentOverlapBounds( UIntPack< CDegrees ... >() , UIntPack< FEMDegrees ... >() , c , start , end ); } );
static const WindowLoopData< UIntPack< BSplineOverlapSizes< FEMDegrees , CDegrees >::OverlapSize ... > > femcLoopData( []( int c , int* start , int* end ){ BaseFEMIntegrator::ParentOverlapBounds( UIntPack< FEMDegrees ... >() , UIntPack< CDegrees ... >() , c , start , end ); } );
bool hasCoarserCoefficients = false;
// Iterate from fine to coarse, setting the constraints @(depth) and the cumulative constraints @(depth-1)
for( LocalDepth d=maxDepth ; d>=0 ; d-- )
{
typename BaseConstraint::CCStencil stencil;
typename BaseConstraint::PCStencils stencils;
F.init( d );
F.template setStencil < false >( stencil );
F.template setStencils< true >( stencils );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( d ) );
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
if( d<maxDepth ) constraints[i] += _constraints[i];
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
FEMTreeNode* node = _sNodes.treeNodes[i];
int start[Dim] , end[] = { BSplineOverlapSizes< CDegrees , FEMDegrees >::OverlapSize ... };
memset( start , 0 , sizeof( start ) );
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
neighborKey.getNeighbors( LeftFEMCOverlapRadii() , RightFEMCOverlapRadii() , node , neighbors );
bool isInterior , isInterior2;
{
LocalDepth d ; LocalOffset off ; _localDepthAndOffset( node , d , off );
isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMDegrees ... >() , UIntPack< CDegrees ... >() , d , off );
}
{
LocalDepth d ; LocalOffset off ; _localDepthAndOffset( node->parent , d , off );
isInterior2 = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< CDegrees ... >() , UIntPack< FEMDegrees ... >() , d , off );
}
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
// Set constraints from current depth
// Gather the constraints from _node into the constraint stored with node
if( _isValidFEM1Node( node ) )
{
if( isInterior )
{
unsigned int size = neighbors.neighbors.Size;
Pointer( const FEMTreeNode* ) nodes = neighbors.neighbors().data;
Pointer( Point< double , CDim > ) stencilValues = stencil.data;
for( unsigned int j=0 ; j<size ; j++ )
{
if( _isValidFEM2Node( nodes[j] ) )
{
const D* _data = coefficients( nodes[j] );
if( _data ) constraints[i] += _StencilDot( stencilValues[j] , *_data );
}
}
}
else
{
unsigned int size = neighbors.neighbors.Size;
Pointer( const FEMTreeNode* ) nodes = neighbors.neighbors().data;
for( unsigned int j=0 ; j<size ; j++ )
{
if( _isValidFEM2Node( nodes[j] ) )
{
const D* _data = coefficients( nodes[j] );
if( _data )
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset( nodes[j] , _d , _off );
constraints[i] += _StencilDot( F.ccIntegrate( off , _off ) , *_data );
}
}
}
}
BaseFEMIntegrator::ParentOverlapBounds( UIntPack< CDegrees ... >() , UIntPack< FEMDegrees ... >() , d , off , start , end );
}
if( !_isValidFEM2Node( node ) ) return;
const D* _data = coefficients( node );
if( !_data ) return;
else if( d<maxDepth ) hasCoarserCoefficients = true;
const D& data = *_data;
if( _IsZero( data ) ) return;
// Set the _constraints for the parents
if( d>0 )
{
int cIdx = (int)( node - node->parent->children );
const typename BaseConstraint::CCStencil& _stencil = stencils.data[cIdx];
neighborKey.getNeighbors( LeftCFEMOverlapRadii() , RightCFEMOverlapRadii() , node->parent , neighbors );
unsigned int size = cfemLoopData.size[cIdx];
const unsigned int* indices = cfemLoopData.indices[cIdx];
ConstPointer( Point< double , CDim > ) stencilValues = _stencil.data;
Pointer( const FEMTreeNode* ) nodes = neighbors.neighbors().data;
if( isInterior2 )
{
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( nodes[idx] )
{
AddAtomic( _constraints[ nodes[idx]->nodeData.nodeIndex ] , _StencilDot( stencilValues[idx] , data ) );
}
}
}
else
{
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( nodes[idx] )
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset( nodes[idx] , _d , _off );
AddAtomic( _constraints[ nodes[idx]->nodeData.nodeIndex ] , _StencilDot( F.pcIntegrate( _off , off ) , data ) );
}
}
}
}
}
);
if( d>0 && d<maxDepth ) _downSample( UIntPack< FEMSigs ... >() , F.tRestrictionProlongation() , d , _constraints );
MemoryUsage();
}
FreePointer( _constraints );
if( hasCoarserCoefficients )
{
Pointer( D ) _coefficients = AllocPointer< D >( _sNodesEnd( maxDepth-1 ) );
memset( _coefficients , 0 , sizeof(D) * _sNodesEnd(maxDepth-1) );
for( LocalDepth d=maxDepth-1 ; d>=0 ; d-- )
{
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int , size_t i )
{
const D* d = coefficients( _sNodes.treeNodes[i] );
if( d ) _coefficients[i] += *d;
}
);
}
// Coarse-to-fine up-sampling of coefficients
for( LocalDepth d=1 ; d<maxDepth ; d++ ) _upSample( UIntPack< FEMSigs ... >() , F.tRestrictionProlongation() , d , _coefficients );
// Compute the contribution from all coarser depths
for( LocalDepth d=1 ; d<=maxDepth ; d++ )
{
node_index_type start = _sNodesBegin( d ) , end = _sNodesEnd( d );
size_t range = end - start;
typename BaseConstraint::CPStencils stencils;
F.init( d );
F.template setStencils< false >( stencils );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( d-1 ) );
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
if( _isValidFEM1Node( _sNodes.treeNodes[i] ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
FEMTreeNode* node = _sNodes.treeNodes[i];
int start[Dim] , end[Dim];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > pNeighbors;
bool isInterior;
{
BaseFEMIntegrator::ParentOverlapBounds( UIntPack< FEMDegrees ... >() , UIntPack< CDegrees ... >() , (int)( node - node->parent->children ) , start , end );
}
{
LocalDepth d ; LocalOffset off ; _localDepthAndOffset( node->parent , d , off );
neighborKey.getNeighbors( LeftFEMCOverlapRadii() , RightFEMCOverlapRadii() , node->parent , pNeighbors );
isInterior = BaseFEMIntegrator::IsInteriorlyOverlapped( UIntPack< FEMDegrees ... >() , UIntPack< CDegrees ... >() , d , off );
}
int cIdx = (int)( node - node->parent->children );
const typename BaseConstraint::CCStencil& _stencil = stencils.data[cIdx];
T constraint = {};
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
int corner = (int)( node - node->parent->children );
unsigned int size = femcLoopData.size[corner];
const unsigned int* indices = femcLoopData.indices[corner];
Pointer( const FEMTreeNode* ) nodes = pNeighbors.neighbors().data;
Pointer( Point< double , CDim > ) stencilValues = _stencil.data;
if( isInterior )
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( _isValidFEM2Node( nodes[idx] ) ) constraint += _StencilDot( stencilValues[idx] , _coefficients[ nodes[idx]->nodeData.nodeIndex ] );
}
else
for( unsigned int i=0 ; i<size ; i++ )
{
unsigned int idx = indices[i];
if( _isValidFEM2Node( nodes[idx] ) )
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset ( nodes[idx] , _d , _off );
constraint += _StencilDot( F.cpIntegrate( off , _off ) , _coefficients[ nodes[idx]->nodeData.nodeIndex ] );
}
}
constraints[i] += constraint;
}
}
);
}
FreePointer( _coefficients );
}
MemoryUsage();
}
template< unsigned int Dim , class Real >
template< typename T , unsigned int ... FEMSigs , unsigned int PointD >
void FEMTree< Dim , Real >::addInterpolationConstraints( DenseNodeData< T , UIntPack< FEMSigs ... > >& constraints , LocalDepth maxDepth , const InterpolationInfo< T , PointD >& interpolationInfo ) const
{
_setFEM1ValidityFlags( UIntPack< FEMSigs ... >() );
typedef typename FEMIntegrator::template PointEvaluator< UIntPack< FEMSigs ... > , IsotropicUIntPack< Dim , PointD > > PointEvaluator;
PointEvaluator evaluator( std::min< LocalDepth >( maxDepth , _maxDepth ) );
typedef typename FEMTreeNode::template ConstNeighborKey< UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportEnd ... > , UIntPack< ( -BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportStart ) ... > > PointSupportKey;
maxDepth = std::min< LocalDepth >( maxDepth , _maxDepth );
{
typedef UIntPack< (-BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportStart ) ... > LeftSupportRadii;
typedef UIntPack< ( BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportEnd ) ... > LeftPointSupportRadii;
typedef UIntPack< (-BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportStart ) ... > RightPointSupportRadii;
typedef UIntPack< BSplineSupportSizes< FEMSignature< FEMSigs >::Degree >::SupportSize ... > SupportSizes;
for( int d=0 ; d<=maxDepth ; d++ )
{
std::vector< PointSupportKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( maxDepth ) );
#ifdef SHOW_WARNINGS
#pragma message( "[WARNING] Why do I have to wrap the template in a lambda?" )
#endif // SHOW_WARNINGS
typedef PointEvaluatorState< UIntPack< FEMSigs ... > , IsotropicUIntPack< Dim , PointD > > _PointEvaluatorState;
auto WrapperLambda = []( const _PointEvaluatorState &eState , LocalOffset off )
{
return eState.template dValues< Real , CumulativeDerivatives< Dim , PointD > >( off );
};
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
if( _isValidSpaceNode( _sNodes.treeNodes[i] ) )
{
if( _isValidSpaceNode( _sNodes.treeNodes[i] ) )
{
_PointEvaluatorState eState;
FEMTreeNode* node = _sNodes.treeNodes[i];
PointSupportKey& neighborKey = neighborKeys[ thread ];
typename FEMTreeNode::template ConstNeighbors< SupportSizes > neighbors;
neighborKey.getNeighbors( LeftPointSupportRadii() , RightPointSupportRadii() , node , neighbors );
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
size_t begin , end;
interpolationInfo.range( node , begin , end );
for( size_t pIndex=begin ; pIndex<end ; pIndex++ )
{
const DualPointInfo< Dim , Real , T , PointD >& pData = interpolationInfo[ pIndex ];
Point< Real , Dim > p = pData.position;
evaluator.initEvaluationState( p , d , off , eState );
int s[Dim];
WindowLoop< Dim >::Run
(
IsotropicUIntPack< Dim , 0 >() , SupportSizes() ,
[&]( int d , int i ){ s[d] = i; } ,
[&]( const FEMTreeNode* _node )
{
if( _isValidFEM1Node( _node ) )
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset( _node , _d , _off );
CumulativeDerivativeValues< Real , Dim , PointD > values = WrapperLambda( eState , _off );
T dot = {};
for( int s=0 ; s<CumulativeDerivatives< Dim , PointD >::Size ; s++ ) dot += pData.dualValues[s] * values[s];
AddAtomic( constraints[ _node->nodeData.nodeIndex ] , dot );
}
} ,
neighbors.neighbors()
);
}
}
}
}
);
}
MemoryUsage();
}
}
template< unsigned int Dim , class Real >
template< typename T , typename TDotT , unsigned int ... FEMSigs1 , unsigned int ... FEMSigs2 , class Coefficients1 , class Coefficients2 , unsigned int PointD >
double FEMTree< Dim , Real >::_interpolationDot( UIntPack< FEMSigs1 ... > , UIntPack< FEMSigs2 ... > , const Coefficients1& coefficients1 , const Coefficients2& coefficients2 , TDotT Dot , const InterpolationInfo< T , PointD >* iInfo ) const
{
typedef UIntPack< FEMSignature< FEMSigs1 >::Degree ... > FEMDegrees1;
typedef UIntPack< FEMSignature< FEMSigs2 >::Degree ... > FEMDegrees2;
typedef UIntPack< FEMSigs1 ... > FEMSignatures1;
typedef UIntPack< FEMSigs2 ... > FEMSignatures2;
double dot = 0;
if( iInfo )
{
MultiThreadedEvaluator< FEMSignatures1 , PointD , T > mt1( this , coefficients1 );
MultiThreadedEvaluator< FEMSignatures2 , PointD , T > mt2( this , coefficients2 );
size_t begin , end;
iInfo->range( _spaceRoot , begin , end );
std::vector< double > dots( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( begin , end , [&]( unsigned int thread , size_t i )
{
Point< Real , Dim > p = (*iInfo)[i].position;
Real w = (*iInfo)[i].weight;
CumulativeDerivativeValues< T , Dim , PointD > v1 = (*iInfo)( i , mt1.values( p , thread ) );
CumulativeDerivativeValues< T , Dim , PointD > v2 = mt2.values( p , thread );
for( int dd=0 ; dd<CumulativeDerivatives< Dim , PointD >::Size ; dd++ ) dots[thread] += Dot( v1[dd] , v2[dd] ) * w;
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) dot += dots[t];
}
return dot;
}
template< unsigned int Dim , class Real >
template< typename T , typename TDotT , unsigned int ... FEMSigs1 , unsigned int ... FEMSigs2 , unsigned int ... Degrees1 , unsigned int ... Degrees2 , class Coefficients1 , class Coefficients2 >
double FEMTree< Dim , Real >::_dot( UIntPack< FEMSigs1 ... > , UIntPack< FEMSigs2 ... > , typename BaseFEMIntegrator::template Constraint< UIntPack< Degrees1 ... > , UIntPack< Degrees2 ... > , 1 >& F , const Coefficients1& coefficients1 , const Coefficients2& coefficients2 , TDotT Dot ) const
{
_setFEM1ValidityFlags( UIntPack< FEMSigs1 ... >() );
_setFEM2ValidityFlags( UIntPack< FEMSigs2 ... >() );
typedef typename BaseFEMIntegrator::template Constraint< UIntPack< Degrees1 ... > , UIntPack< Degrees2 ... > , 1 > BaseConstraint;
double dot = 0;
// Calculate the contribution from @(depth,depth)
{
typedef UIntPack< BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapSize ... > OverlapSizes;
typedef UIntPack< -BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapStart ... > LeftOverlapRadii;
typedef UIntPack< BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapEnd ... > RightOverlapRadii;
for( LocalDepth d=0 ; d<=_maxDepth ; d++ )
{
typename BaseConstraint::CCStencil stencil;
F.init( d );
F.template setStencil< false >( stencil );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( d ) );
std::vector< double > dots( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
double &dot = dots[thread];
const FEMTreeNode* node = _sNodes.treeNodes[i];
const T* _data1;
if( _isValidFEM1Node( node ) && ( _data1=coefficients1(node) ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
neighborKey.getNeighbors( LeftOverlapRadii() , RightOverlapRadii() , node , neighbors );
bool isInterior = _isInteriorlyOverlapped( UIntPack< Degrees1 ... >() , UIntPack< Degrees2 ... >() , node );
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
ConstPointer( FEMTreeNode * const ) nodes = neighbors.neighbors().data;
ConstPointer( Point< double , 1 > ) stencilValues = stencil.data;
if( isInterior )
{
for( int i=0 ; i<WindowSize< UIntPack< BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapSize ... > >::Size ; i++ )
{
const T* _data2;
if( _isValidFEM2Node( nodes[i] ) && ( _data2=coefficients2( nodes[i] ) ) ) dot += Dot( *_data1 , *_data2 ) * stencilValues[i][0];
}
}
else
{
for( int i=0 ; i<WindowSize< UIntPack< BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapSize ... > >::Size ; i++ )
{
const T* _data2;
if( _isValidFEM2Node( nodes[i] ) && ( _data2=coefficients2( nodes[i] ) ) )
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset( nodes[i] , _d , _off );
dot += Dot( *_data1 , *_data2 ) * F.ccIntegrate( off , _off )[0];
}
}
}
}
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) dot += dots[t];
}
}
// Calculate the contribution from @(<depth,depth)
{
typedef UIntPack< BSplineOverlapSizes< Degrees2 , Degrees1 >::OverlapSize ... > OverlapSizes;
typedef UIntPack< -BSplineOverlapSizes< Degrees2 , Degrees1 >::OverlapStart ... > LeftOverlapRadii;
typedef UIntPack< BSplineOverlapSizes< Degrees2 , Degrees1 >::OverlapEnd ... > RightOverlapRadii;
DenseNodeData< T , UIntPack< FEMSigs1 ... > > cumulative1( _sNodesEnd( _maxDepth-1 ) );
if( _maxDepth>0 ) memset( cumulative1() , 0 , sizeof(T) * _sNodesEnd( _maxDepth-1 ) );
for( LocalDepth d=1 ; d<=_maxDepth ; d++ )
{
// Update the cumulative coefficients with the coefficients @(depth-1)
ThreadPool::Parallel_for( _sNodesBegin(d-1) , _sNodesEnd(d-1) , [&]( unsigned int , size_t i )
{
const T* _data1 = coefficients1( _sNodes.treeNodes[i] );
if( _data1 ) cumulative1[i] += *_data1;
}
);
typename BaseConstraint::PCStencils stencils;
F.init( d );
F.template setStencils< true >( stencils );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( d-1 ) );
std::vector< double > dots( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
double &dot = dots[thread];
const FEMTreeNode* node = _sNodes.treeNodes[i];
const T* _data2;
if( _isValidFEM2Node( node ) && ( _data2=coefficients2( node ) ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
bool isInterior = _isInteriorlyOverlapped( UIntPack< Degrees1 ... >() , UIntPack< Degrees2 ... >() , node->parent );
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
int cIdx = (int)( node - node->parent->children );
typename BaseConstraint::CCStencil& _stencil = stencils.data[cIdx];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
neighborKey.getNeighbors( LeftOverlapRadii() , RightOverlapRadii() , node->parent , neighbors );
int start[Dim] , end[Dim];
_SetParentOverlapBounds( UIntPack< Degrees1 ... >() , UIntPack< Degrees2 ... >() , node , start , end );
WindowLoop< Dim >::Run
(
start , end ,
[&]( int , int ){;} ,
[&]( const FEMTreeNode* node , Point< double , 1 > stencilValue )
{
const T* _data1;
if( _isValidFEM1Node( node ) && ( _data1=cumulative1(node) ) )
{
if( isInterior ) dot += Dot( *_data1 , *_data2 ) * stencilValue[0];
else
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset( node , _d , _off );
dot += Dot ( *_data1 , *_data2 ) * F.pcIntegrate( _off , off )[0];
}
}
} ,
neighbors.neighbors() , _stencil()
);
}
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) dot += dots[t];
// Up sample the cumulative coefficients for the next level
if( d<_maxDepth ) _upSample( UIntPack< FEMSigs1 ... >() , F.tRestrictionProlongation() , d , cumulative1() );
}
}
// Calculate the contribution from @(>depth,depth)
{
typedef UIntPack< BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapSize ... > OverlapSizes;
typedef UIntPack< -BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapStart ... > LeftOverlapRadii;
typedef UIntPack< BSplineOverlapSizes< Degrees1 , Degrees2 >::OverlapEnd ... > RightOverlapRadii;
DenseNodeData< T , UIntPack< FEMSigs2 ... > > cumulative2( _sNodesEnd( _maxDepth-1 ) );
if( _maxDepth>0 ) memset( cumulative2() , 0 , sizeof(T) * _sNodesEnd( _maxDepth-1 ) );
for( LocalDepth d=_maxDepth ; d>0 ; d-- )
{
typename BaseConstraint::CPStencils stencils;
F.init( d );
F.template setStencils< false >( stencils );
std::vector< ConstOneRingNeighborKey > neighborKeys( ThreadPool::NumThreads() );
for( size_t i=0 ; i<neighborKeys.size() ; i++ ) neighborKeys[i].set( _localToGlobal( d-1 ) );
// Update the cumulative constraints @(depth-1) from @(depth)
std::vector< double > dots( ThreadPool::NumThreads() , 0 );
ThreadPool::Parallel_for( _sNodesBegin(d) , _sNodesEnd(d) , [&]( unsigned int thread , size_t i )
{
double &dot = dots[thread];
const FEMTreeNode* node = _sNodes.treeNodes[i];
const T* _data1;
if( _isValidFEM1Node( node ) && ( _data1=coefficients1( node ) ) )
{
ConstOneRingNeighborKey& neighborKey = neighborKeys[ thread ];
bool isInterior = _isInteriorlyOverlapped( UIntPack< Degrees2 ... >() , UIntPack< Degrees1 ... >() , node->parent );
LocalDepth d ; LocalOffset off;
_localDepthAndOffset( node , d , off );
int cIdx = (int)( node - node->parent->children );
typename BaseConstraint::CCStencil& _stencil = stencils.data[cIdx];
typename FEMTreeNode::template ConstNeighbors< OverlapSizes > neighbors;
neighborKey.getNeighbors( LeftOverlapRadii() , RightOverlapRadii() , node->parent , neighbors );
int start[Dim] , end[Dim];
_SetParentOverlapBounds( UIntPack< Degrees1 ... >() , UIntPack< Degrees2 ... >() , node , start , end );
#ifdef __clang__
#pragma message ( "[WARNING] You've got me clang" )
std::function< void (int,int) > updateFunction = [](int,int){};
#endif // __clang__
WindowLoop< Dim >::Run
(
start , end ,
#ifdef __clang__
updateFunction ,
#else // !__clang__
[&]( int , int ){;} ,
#endif // __clang__
[&]( const FEMTreeNode* node , Point< double , 1 > stencilValue )
{
if( _isValidFEM2Node( node ) )
{
T _dot;
if( isInterior ) _dot = (*_data1) * stencilValue[0];
else
{
LocalDepth _d ; LocalOffset _off ; _localDepthAndOffset( node , _d , _off );
_dot = (*_data1) * F.cpIntegrate( off , _off )[0];
}
AddAtomic( cumulative2[ node->nodeData.nodeIndex ] , _dot );
}
} ,
neighbors.neighbors() , _stencil()
);
}
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) dot += dots[t];
// Update the dot-product using the cumulative constraints @(depth-1)
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) dots[t] = 0;
ThreadPool::Parallel_for( _sNodesBegin(d-1) , _sNodesEnd(d-1) , [&]( unsigned int thread , size_t i )
{
double &dot = dots[thread];
const FEMTreeNode* node = _sNodes.treeNodes[i];
const T* _data2;
if( _isValidFEM2Node( node ) && ( _data2=coefficients2( node ) ) ) dot += Dot( cumulative2[ node->nodeData.nodeIndex ] , *_data2 );
}
);
for( unsigned int t=0 ; t<ThreadPool::NumThreads() ; t++ ) dot += dots[t];
// Down-sample the cumulative constraints from @(depth-1) to @(depth-2) for the next pass
if( d-1>0 ) _downSample( UIntPack< FEMSigs2 ... >() , F.cRestrictionProlongation() , d-1 , GetPointer( &cumulative2[0] , cumulative2.size() ) );
}
}
return dot;
}
|