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
|
/*
Copyright (C) 2008-2021 Michele Martone
This file is part of librsb.
librsb is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
librsb is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with librsb; see the file COPYING.
If not, see <http://www.gnu.org/licenses/>.
*/
/* @cond INNERDOC */
/**
* @file
* @brief Recursion handling code
* @author Michele Martone
* */
#include "rsb_common.h"
#include <string.h> /*memcmp, strchr*/
RSB_INTERNALS_COMMON_HEAD_DECLS
#define RSB_WANT_MTX_CMP_LR_ASC 0
enum rsb_subm_srtc_t {
RSB_MTX_CMP_NNZ_ASC = 0, /* nonzeroes count ascending */
RSB_MTX_CMP_NNZ_DES = 1, /* nonzeroes count descending */
#if RSB_WANT_MTX_CMP_LR_ASC
RSB_MTX_CMP_LR_ASC = 2 /* last row ascending. FIXME: unused */
#endif /* RSB_WANT_MTX_CMP_LR_ASC */
};
#define RSB_MERGE_USE_TMP_COOMTX 1 /* */
#define RSB_SPLIT_USE_TMP_COOMTX 1 /* for many splits and higher parallelism, better 0: will only allocate once per parallel section */
/* Macros to locate a free submatrix pointer after merging has carved holes in the submatrices array. */
#define RSB_REC_FREE_SUBM_FLAG (!0x0) /* 0x0 is forbidden -- because it would rule out zeroing of the struct in RSB_MTX_INIT_LEAF ! */
#define RSB_REC_USED_SUBM_FLAG (!(RSB_REC_FREE_SUBM_FLAG)) /* Anything different from RSB_REC_FREE_SUBM_FLAG */
#define RSB_REC_MARK_SUBM_FREE(SM) if(SM)((SM)->flags=RSB_REC_FREE_SUBM_FLAG);(SM)=NULL; /* FIXME: for safety, one might BZERO former leaves here. */
#define RSB_REC_IS_SUBM_FREE(SM) ((SM)->flags==RSB_REC_FREE_SUBM_FLAG)
#define RSB_REC_MARK_SUBM_USED(SM) if(SM)(SM)->flags=RSB_REC_USED_SUBM_FLAG;
int rsb__compar_rcsr_matrix_for_spsvl(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
Useful for Lower Triangular Solve.
*/
struct rsb_translated_matrix_t *mtxAp = (struct rsb_translated_matrix_t*)ap;
struct rsb_translated_matrix_t *mtxBp = (struct rsb_translated_matrix_t*)bp;
rsb_coo_idx_t aro = mtxAp->roff, aco = mtxAp->coff, ar = mtxAp->nr;
rsb_coo_idx_t bro = mtxBp->roff, bco = mtxBp->coff, br = mtxBp->nr;
// the one who ends before the other beginning wins
if( aro+ar <= bro )
return -1;
if( bro+br <= aro )
return 1;
// the one beginning later comes later, unless the other matrix is on the diagonal
if( aro > bro )
return bro==bco?-1:1;
if( aro < bro )
return aro==aco?1:-1;
// if aligned, the one beginning later comes after
if( aco > bco )
return 1;
else
return -1;
}
static int rsb_compar_rcsr_matrix_for_get_csr(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
*/
struct rsb_translated_matrix_t *mtxAp = (struct rsb_translated_matrix_t*)ap;
struct rsb_translated_matrix_t *mtxBp = (struct rsb_translated_matrix_t*)bp;
rsb_coo_idx_t aro = mtxAp->roff, aco = mtxAp->coff;
rsb_coo_idx_t bro = mtxBp->roff, bco = mtxBp->coff;
if( aro > bro )
return 1;
if( aro < bro )
return -1;
if( aco > bco )
return 1;
if( aco < bco )
return -1;
return 0;
}
#ifdef RSB_OBSOLETE_QUARANTINE_UNUSED
static int rsb_compar_rcsr_matrix_for_get_ata(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
*/
struct rsb_translated_matrix_t *mtxAp = (struct rsb_translated_matrix_t*)ap;
struct rsb_translated_matrix_t *mtxBp = (struct rsb_translated_matrix_t*)bp;
rsb_coo_idx_t aro = mtxAp->roff, aco = mtxAp->coff;
rsb_coo_idx_t bro = mtxBp->roff, bco = mtxBp->coff;
#if 1
rsb_coo_idx_t anr = mtxAp->mtxlp->bm , anc = mtxAp->mtxlp->bk;
rsb_coo_idx_t bnr = mtxBp->mtxlp->bm , bnc = mtxBp->mtxlp->bk;
#else
rsb_coo_idx_t anr = mtxAp->nr , anc = mtxAp->nc;
rsb_coo_idx_t bnr = mtxBp->nr , bnc = mtxBp->nc;*/
#endif
if( aro+anr > bro+bnr )
return 1;
if( aro+anr < bro+bnr )
return -1;
if( aco+anc > bco+bnc )
return 1;
if( aco+anc < bco+bnc )
return -1;
return 0;
}
#endif /* RSB_OBSOLETE_QUARANTINE_UNUSED */
static int rsb_compar_rcsr_matrix_for_spsvut(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
Useful for Lower Triangular Solve Transposed.
it's in a way similar to
rsb__compar_rcsr_matrix_for_spsvl, with substitutions:
aro -> bco+bc
bro -> aro+ar
aco -> bco+bc
bco -> aro+ar
... <viceversa>
*/
struct rsb_translated_matrix_t *mtxAp = (struct rsb_translated_matrix_t*)ap;
struct rsb_translated_matrix_t *mtxBp = (struct rsb_translated_matrix_t*)bp;
rsb_coo_idx_t aro = mtxAp->roff, aco = mtxAp->coff, ac = mtxAp->nc;
rsb_coo_idx_t bro = mtxBp->roff, bco = mtxBp->coff, bc = mtxBp->nc;
// the one who ends before the other beginning wins
if( bco+bc <= aco )
return 1;
if( aco+ac <= bco )
return -1;
// the one beginning later comes later, unless the other matrix is on the diagonal
if( aco > bco )
return bro==bco?-1:1;
if( aco < bco )
return aro==aco?1:-1;
// if aligned, the one beginning later comes after
if( aro > bro )
return 1;
else
return -1;
}
static int rsb__compar_rcsr_matrix_for_spsvlt(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
Useful for Lower Triangular Solve Transposed.
it's in a way similar to
rsb__compar_rcsr_matrix_for_spsvl, with substitutions:
aro -> bco+bc
bro -> aro+ar
aco -> bco+bc
bco -> aro+ar
... <viceversa>
*/
struct rsb_translated_matrix_t *mtxAp = (struct rsb_translated_matrix_t*)ap;
struct rsb_translated_matrix_t *mtxBp = (struct rsb_translated_matrix_t*)bp;
rsb_coo_idx_t aro = mtxAp->roff, aco = mtxAp->coff, ar = mtxAp->nr, ac = mtxAp->nc;
rsb_coo_idx_t bro = mtxBp->roff, bco = mtxBp->coff, /*br = mtxBp->nr,*/ bc = mtxBp->nc;
// the one who ends before the other beginning wins
if( aco >= bco+bc )
return -1;
if( bco >= aco+ac )
return 1;
// the one beginning later comes later, unless the other matrix is on the diagonal
if( aco+ac < bco+bc )
return bro==bco?-1:1;
if( aco+ac > bco+bc )
return aro==aco?1:-1;
// if aligned, the one beginning later comes after
if( aro+ar > bro+ar )
return -1;
else
return 1;
}
static int rsb_compar_rcsr_matrix_for_spsvu(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
*/
struct rsb_translated_matrix_t *mtxAp = (struct rsb_translated_matrix_t*)ap;
struct rsb_translated_matrix_t *mtxBp = (struct rsb_translated_matrix_t*)bp;
rsb_coo_idx_t aro = mtxAp->roff, aco = mtxAp->coff, ar = mtxAp->nr, ac = mtxAp->nc;
rsb_coo_idx_t bro = mtxBp->roff, bco = mtxBp->coff, br = mtxBp->nr;
// the one who ends before the other beginning wins
if( aro >= bro+br )
return -1;
if( bro >= aro+ar )
return 1;
// the one beginning later comes later, unless the other matrix is on the diagonal
if( aro+ar < bro+br )
return bro==bco?-1:1;
if( aro+ar > bro+br )
return aro==aco?1:-1;
// if aligned, the one beginning later comes after
if( aco+ac > bco+ac )
return -1;
else
return 1;
}
#define RSB_ASC_CMP_FOR_QSRT(A,B) ( ( (A) > (B) ) ? (1) : (( (A) == (B) ) ? 0 : -1) )
#ifdef RSB_OBSOLETE_QUARANTINE_UNUSED
static int rsb_compar_nnz_idx_t(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
*/
rsb_nnz_idx_t a=*(rsb_nnz_idx_t*)ap;
rsb_nnz_idx_t b=*(rsb_nnz_idx_t*)bp;
return RSB_ASC_CMP_FOR_QSRT(a,b);
}
#endif /* RSB_OBSOLETE_QUARANTINE_UNUSED */
static int rsb__compar_mtx_nnz_des(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
Compare submatrices pointers in descending order of nnz occupation.
*/
const struct rsb_mtx_t*mtxAp = *(struct rsb_mtx_t**)ap;
const struct rsb_mtx_t*mtxBp = *(struct rsb_mtx_t**)bp;
const rsb_nnz_idx_t nnzA = mtxAp->nnz;
const rsb_nnz_idx_t nnzB = mtxBp->nnz;
return -RSB_ASC_CMP_FOR_QSRT(nnzA,nnzB);
}
static int rsb__compar_mtx_nnz_asc(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
Compare submatrices pointers in ascending order of nnz occupation.
*/
const struct rsb_mtx_t*mtxAp = *(struct rsb_mtx_t**)ap;
const struct rsb_mtx_t*mtxBp = *(struct rsb_mtx_t**)bp;
const rsb_nnz_idx_t nnzA = mtxAp->nnz;
const rsb_nnz_idx_t nnzB = mtxBp->nnz;
return RSB_ASC_CMP_FOR_QSRT(nnzA,nnzB);
}
#if RSB_WANT_MTX_CMP_LR_ASC
static int rsb__compar_mtx_lr_asc(const void * ap, const void * bp)
{
/**
\ingroup gr_internals
A compare function to be used with qsort.
Compare submatrices pointers in descending order of nnz occupation.
*/
/* FIXME: currently unused */
const struct rsb_mtx_t*mtxAp = *(struct rsb_mtx_t**)ap;
const struct rsb_mtx_t*mtxBp = *(struct rsb_mtx_t**)bp;
const rsb_nnz_idx_t lrA = mtxAp->roff + mtxAp->nr;
const rsb_nnz_idx_t lrB = mtxBp->roff + mtxBp->nr;
return RSB_ASC_CMP_FOR_QSRT(lrA,lrB);
}
#endif /* RSB_WANT_MTX_CMP_LR_ASC */
const rsb_err_t rsb__srt_subm_ptr_array(struct rsb_mtx_t ** mtxApp, rsb_submatrix_idx_t nsm, enum rsb_subm_srtc_t sc)
{
/**
\ingroup gr_internals
Sort submatrices pointers.
TODO: introduce other sorting criteria (e.g. index occupation, ...).
*/
rsb_err_t errval = RSB_ERR_BADARGS;
switch(sc)
{
case(RSB_MTX_CMP_NNZ_ASC):
qsort( mtxApp, (size_t) nsm, sizeof(struct rsb_mtx_t*), &rsb__compar_mtx_nnz_asc);
errval = RSB_ERR_NO_ERROR;
break;
case(RSB_MTX_CMP_NNZ_DES):
qsort( mtxApp, (size_t) nsm, sizeof(struct rsb_mtx_t*), &rsb__compar_mtx_nnz_des);
errval = RSB_ERR_NO_ERROR;
break;
#if RSB_WANT_MTX_CMP_LR_ASC
case(RSB_MTX_CMP_LR_ASC):
qsort( mtxApp, (size_t) nsm, sizeof(struct rsb_mtx_t*), &rsb__compar_mtx_lr_asc);
errval = RSB_ERR_NO_ERROR;
break;
#endif /* RSB_WANT_MTX_CMP_LR_ASC */
}
return errval;
}
rsb_err_t rsb__sort_array_of_leaf_matrices_for_ussv(const struct rsb_mtx_t * mtxAp, struct rsb_translated_matrix_t *leaf_matrices, rsb_submatrix_idx_t n, rsb_trans_t transl)
{
/**
\ingroup gr_internals
Sort rsb_translated_matrix_t structures.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
if(!leaf_matrices)
{
errval = RSB_ERR_BADARGS;
RSB_PERR_GOTO(err,RSB_ERRM_EM);
}
if(rsb__is_upper_triangle(mtxAp->flags))
{
if(RSB_DOES_TRANSPOSE(transl))
errval = rsb__sort_array_of_leaf_matrices(NULL,leaf_matrices,n,rsb_op_spsvut);
else
errval = rsb__sort_array_of_leaf_matrices(NULL,leaf_matrices,n,rsb_op_spsvu);
}
else
if(rsb__is_lower_triangle(mtxAp->flags))
{
if(RSB_DOES_TRANSPOSE(transl))
errval = rsb__sort_array_of_leaf_matrices(NULL,leaf_matrices,n,rsb_op_spsvlt);
else
errval = rsb__sort_array_of_leaf_matrices(NULL,leaf_matrices,n,rsb_op_spsvl);
}
else
{
/*
RSB_ERROR(RSB_ERRM_ES);
errval = RSB_ERR_BADARGS;
*/
}
err:
RSB_DO_ERR_RETURN(errval)
}
rsb_err_t rsb__sort_array_of_leaf_matrices(const struct rsb_translated_matrix_t *rmatrix,struct rsb_translated_matrix_t *matrices, rsb_submatrix_idx_t n, enum rsb_op_t op)
{
/**
\ingroup gr_internals
Sorts an array of leaf matrices in an order which will be suitable for SpMV, SpSV, ... later on.
FIXME: rmatrix is the root matrix, and is currently unused.
*/
rsb_err_t errval = RSB_ERR_INTERNAL_ERROR;
RSB_DEBUG_ASSERT(matrices);
switch(op)
{
case(rsb_op_spmv):
#ifdef RSB_OBSOLETE_QUARANTINE_UNUSED
{
rsb_nnz_idx_t * idx = NULL;
struct rsb_translated_matrix_t *smatrices = NULL;
rsb_submatrix_idx_t ij;
/* NOTE : this code is braindead : should use qsort directly instead */
smatrices = rsb__malloc(sizeof(struct rsb_translated_matrix_t) * n);
idx = rsb__malloc(2*sizeof(rsb_nnz_idx_t) * n);
if(!smatrices || !idx){errval = RSB_ERR_ENOMEM; RSB_PERR_GOTO(err,RSB_ERRM_EM); }
for(ij=0;ij<n;++ij)
{
/* currently, the sorting criteria is the base row only */
idx[2*ij+0]=matrices[ij].roff;
idx[2*ij+1]=ij;
}
qsort( idx , (size_t) n, 2*sizeof(rsb_nnz_idx_t), &rsb_compar_nnz_idx_t );
rsb__do_util_compact_permutation_nnz_idx_t_array(idx, n);
/* permutation */
for(ij=0;ij<n;++ij) smatrices[ij]=matrices[idx[ij]];
rsb__memcpy(matrices,smatrices,sizeof(struct rsb_translated_matrix_t)*n);
errval = RSB_ERR_NO_ERROR;
err:
RSB_CONDITIONAL_FREE(idx);
RSB_CONDITIONAL_FREE(smatrices);
}
#endif /* RSB_OBSOLETE_QUARANTINE_UNUSED */
break;
case(rsb_op_spsvl):
{
qsort( matrices , (size_t) n, sizeof(struct rsb_translated_matrix_t), &rsb__compar_rcsr_matrix_for_spsvl);
errval = RSB_ERR_NO_ERROR;
}
break;
case(rsb_op_spsvlt):
{
qsort( matrices , (size_t) n, sizeof(struct rsb_translated_matrix_t), &rsb__compar_rcsr_matrix_for_spsvlt);
errval = RSB_ERR_NO_ERROR;
}
break;
case(rsb_op_spsvu):
{
qsort( matrices , (size_t) n, sizeof(struct rsb_translated_matrix_t), &rsb_compar_rcsr_matrix_for_spsvu);
errval = RSB_ERR_NO_ERROR;
}
break;
case(rsb_op_spsvut):
{
qsort( matrices , (size_t) n, sizeof(struct rsb_translated_matrix_t), &rsb_compar_rcsr_matrix_for_spsvut);
errval = RSB_ERR_NO_ERROR;
}
break;
case(rsb_op_get_csr):
{
qsort( matrices , (size_t) n, sizeof(struct rsb_translated_matrix_t), &rsb_compar_rcsr_matrix_for_get_csr);
errval = RSB_ERR_NO_ERROR;
}
break;
case(rsb_op_nop):
RSB_NULL_STATEMENT_FOR_COMPILER_HAPPINESS
break;
#ifdef RSB_OBSOLETE_QUARANTINE_UNUSED
case(rsb_op_ata):
{
qsort( matrices , (size_t) n, sizeof(struct rsb_translated_matrix_t), &rsb_compar_rcsr_matrix_for_get_ata);
errval = RSB_ERR_NO_ERROR;
}
break;
#endif /* RSB_OBSOLETE_QUARANTINE_UNUSED */
}
RSB_DO_ERR_RETURN(errval)
}
rsb_err_t rsb__fill_array_of_leaf_matrices(const struct rsb_translated_matrix_t *tmatrix, struct rsb_translated_matrix_t *matrices, rsb_submatrix_idx_t * sip)
{
/**
\ingroup gr_internals
This function fills the input array with pointers to leaf matrices.
The input order should matter to spmv performance, but it will be dealt with later.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_submatrix_idx_t si = *sip;
if(!tmatrix || !matrices || !tmatrix->mtxlp)
{
errval = RSB_ERR_BADARGS;
RSB_PERR_GOTO(err,RSB_ERRM_ES);
}
if(rsb__is_terminal_recursive_matrix(tmatrix->mtxlp))
{
/* if this is the only matrix */
matrices[si].mtxlp = tmatrix->mtxlp;
matrices[si].roff = tmatrix->roff;
matrices[si].coff = tmatrix->coff;
matrices[si].nr = tmatrix->nr;
matrices[si].nc = tmatrix->nc;
matrices[si].level = tmatrix->level;
++*sip;
++si;
goto ok;
}
else
{
/* if tmatrix has submatrices */
rsb_submatrix_idx_t i,j;
struct rsb_mtx_t * submatrix = NULL;
// rsb_coo_idx_t mB=(tmatrix->mtxlp->rpntr[rsb__recursive_middle_block_index(tmatrix->mtxlp->M_b)]);
// rsb_coo_idx_t kB=(tmatrix->mtxlp->cpntr[rsb__recursive_middle_block_index(tmatrix->mtxlp->K_b)]);
RSB_SUBMATRIX_FOREACH(tmatrix->mtxlp,submatrix,i,j)
if(submatrix)
{
/* we update submatrices with positioning info */
struct rsb_translated_matrix_t tsubmatrix;
tsubmatrix.mtxlp = submatrix;
// tsubmatrix.roff = tmatrix->roff+i*mB;
// tsubmatrix.coff = tmatrix->coff+j*kB;
tsubmatrix.nr = submatrix->nr;
tsubmatrix.nc = submatrix->nc;
tsubmatrix.roff = submatrix->roff;
tsubmatrix.coff = submatrix->coff;
tsubmatrix.level = tmatrix->level+1;
errval = rsb__fill_array_of_leaf_matrices(&tsubmatrix, matrices, sip);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(err,RSB_ERRM_ES);
}
}
goto ok;
}
ok:
err:
RSB_DO_ERR_RETURN(errval)
}
rsb_err_t rsb__get_array_of_leaf_matrices(struct rsb_mtx_t *mtxAp, struct rsb_translated_matrix_t ** tmatricesp, rsb_submatrix_idx_t *countp)
{
/**
\ingroup gr_internals
\return an array of leaf matrices, ordered in a way to ease workload balancing on multicore platforms.
If *tmatricesp==NULL, will allocate it for us. Otherwise, it will use the given pointer.
*/
long lmc = 0; /* leaf matrices count */
struct rsb_translated_matrix_t * tmatrices = NULL;
struct rsb_translated_matrix_t tmatrix;
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_submatrix_idx_t count = 0;
RSB_BZERO_P(&tmatrix);
if(!tmatricesp /*|| !countp */|| !mtxAp)
{
errval = RSB_ERR_BADARGS;
RSB_PERR_GOTO(err,RSB_ERRM_ES);
}
tmatrix.mtxlp = mtxAp;
tmatrix.roff = tmatrix.coff = 0;
tmatrix.level = 0;
lmc = rsb__terminal_recursive_matrix_count(mtxAp);
if(lmc>0)
{
// rsb_submatrix_idx_t i,j,ij;
// struct rsb_mtx_t * submatrix = NULL;
if(*tmatricesp)
tmatrices = *tmatricesp;
else
{
tmatrices = rsb__malloc(sizeof(struct rsb_translated_matrix_t) * (lmc));
if(!tmatrices)
{
errval = RSB_ERR_ENOMEM;
RSB_PERR_GOTO(err,RSB_ERRM_ES);
}
}
errval = rsb__fill_array_of_leaf_matrices(&tmatrix,tmatrices,&count);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(err,RSB_ERRM_ES);
}
#if 0
/* sorting breaks Z ordering, really */
errval = rsb__sort_array_of_leaf_matrices(&tmatrix,tmatrices, count, rsb_op_spmv );
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(err,RSB_ERRM_ES);
}
#endif
#if 0
/* debug dump */
for(ij=0;ij<count;++ij)
{
RSB_INFO("submatrix: %d @ (%d %d) (level %d) (nnz %d)\n",
ij,tmatrices[ij].roff,tmatrices[ij].coff,tmatrices[ij].level,tmatrices[ij].mtxlp->nnz);
}
#endif
}
goto ok;
ok:
if(countp)
*countp = count;
else
mtxAp->all_leaf_matrices_n = count;
*tmatricesp = tmatrices;
goto ret;
err:
if(!*tmatricesp)
RSB_CONDITIONAL_FREE(tmatrices);
ret:
RSB_DO_ERR_RETURN(errval)
}
static rsb_err_t rsb__refresh_array_of_leaf_matrices(struct rsb_mtx_t *mtxAp)
{
/*
* On error, matrix shall be unaffected.
* */
rsb_err_t errval = RSB_ERR_NO_ERROR;
#if 1
struct rsb_mtx_t mtxB = *mtxAp;
/* FIXME: this method is not efficient; would rather need realloc and pointers diff. */
mtxAp->all_leaf_matrices_n = 0;
mtxAp->all_leaf_matrices = NULL;
errval = rsb__get_array_of_leaf_matrices(mtxAp, &(mtxAp->all_leaf_matrices), &(mtxAp->all_leaf_matrices_n));
if(RSB_SOME_ERROR(errval))
{
/* restore */
mtxAp->all_leaf_matrices_n = mtxB.all_leaf_matrices_n;
mtxAp->all_leaf_matrices = mtxB.all_leaf_matrices;
}
else
{
RSB_CONDITIONAL_FREE(mtxB.all_leaf_matrices);
}
#else
/* Note: this method (no reallocation) would be better, but is incomplete ... */
smu = 0;
for(sml=0;sml<mtxAp->all_leaf_matrices_n;sml++)
if( mtxAp->all_leaf_matrices[sml].mtxlp != NULL )
{
mtxAp->all_leaf_matrices[smu++] = mtxAp->all_leaf_matrices[sml];
// mtxAp->all_leaf_matrices[smu++].mtxlp = mtxAp->all_leaf_matrices[sml].mtxlp;
}
printf("Merged %d leaves (from %d to %d).\n",sml-smu,sml,smu);
mtxAp->all_leaf_matrices_n = smu;
if(mtxAp->all_leaf_matrices_n==0)
RSB_CONDITIONAL_FREE(mtxAp->all_leaf_matrices);
#endif
return errval;
}
size_t rsb__get_index_storage_amount(const struct rsb_mtx_t *mtxAp)
{
/**
\ingroup gr_experimental
\return the amount of allocated bytes for index storage of the matrix
NOTE: valid only for (recursive) CSR
NOTE: we don't include the matrix struct size (sizeof(struct rsb_mtx_t) times submatrices)
*/
rsb_submatrix_idx_t i,j;
struct rsb_mtx_t * submatrix = NULL;
size_t isa = 0;
RSB_DEBUG_ASSERT(mtxAp);
if(rsb__is_terminal_recursive_matrix(mtxAp))
{
size_t is;
if(RSB_DO_FLAG_HAS(mtxAp->flags,RSB_FLAG_USE_HALFWORD_INDICES))
is=sizeof(rsb_half_idx_t);
else
is=sizeof(rsb_coo_idx_t);
// if(RSB_DO_FLAG_HAS(mtxAp->flags,RSB_FLAG_WANT_BCSS_STORAGE))
if(mtxAp->matrix_storage == RSB_MATRIX_STORAGE_BCSR)
isa += (is*mtxAp->nnz)+(sizeof(rsb_coo_idx_t)*(mtxAp->Mdim+1));
else
if(mtxAp->matrix_storage == RSB_MATRIX_STORAGE_BCOR)
// if(RSB_DO_FLAG_HAS(mtxAp->flags,RSB_FLAG_WANT_COO_STORAGE))
isa += 2*(is*mtxAp->nnz);
}
else
{
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if(submatrix)
isa += rsb__get_index_storage_amount(submatrix);
}
return isa;
}
rsb_submatrix_idx_t rsb__get_diagonal_elements_count(const struct rsb_mtx_t *mtxAp)
{
/**
\ingroup gr_internals
\return number of nonzeros which are on diagonal aligned with the main diagonal
*/
rsb_submatrix_idx_t i,j;
struct rsb_mtx_t * submatrix = NULL;
rsb_submatrix_idx_t dse = 0;
if(rsb__is_terminal_recursive_matrix(mtxAp) && mtxAp->roff == mtxAp->coff)
{
dse = mtxAp->nnz;
}
else
{
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if( submatrix && i==j && RSB_SUBMATRIX_IS_ON_DIAG(submatrix) )
dse += rsb__get_diagonal_elements_count(submatrix);
}
return dse;
}
static rsb_bool_t rsb_is_node_pre_last(const struct rsb_mtx_t *mtxAp)
{
rsb_bool_t inpl = RSB_BOOL_FALSE;
if(!rsb__is_terminal_recursive_matrix(mtxAp))
{
struct rsb_mtx_t * submatrix = NULL;
rsb_submatrix_idx_t i,j;
inpl = RSB_BOOL_TRUE;
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if(submatrix && !rsb__is_terminal_recursive_matrix(submatrix))
inpl = RSB_BOOL_FALSE;
}
return inpl;
}
struct rsb_mtx_list_t
{
/* size_t sa[10000];
struct rsb_mtx_t*mp[10000]; */
size_t*sa; /* submatrices/scores array */
struct rsb_mtx_t**mp; /* matrices pointer array */
rsb_submatrix_idx_t mc; /* (leaf) matrices count (0...) */
};
static rsb_err_t rsb__leaves_analysis_rec(struct rsb_mtx_t *mtxAp, struct rsb_mtx_list_t *mlp, const int wv, rsb_bool_t wpl)
{
/**
\ingroup gr_internals
Analyze submatrices and compute a score.
If (wpl) (want pre leaf) then pre-leaf groups will be considered (i.e. for merging); otherwise, leaves.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_submatrix_idx_t i,j;
struct rsb_mtx_t * submatrix = NULL;
const int miac = 1; // merge in any case --- even when no saving is gained
if(rsb__is_terminal_recursive_matrix(mtxAp))
{
if(wpl)
; /* merge case: nothing to do */
else
{
/* split case */
mlp->sa[mlp->mc ]=mtxAp->nnz;
mlp->mp[mlp->mc++]=mtxAp;
}
goto ret;
}
else
{
if(!wpl)
{
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if(submatrix)
errval |= rsb__leaves_analysis_rec(submatrix,mlp,wv,wpl);
goto ret;
}
if(rsb_is_node_pre_last(mtxAp))
{
int sol = 0;
const int vl = 2;
rsb_coo_idx_t /*smnr[4]={0,0,0,0},*/nr=mtxAp->nr;
rsb_coo_idx_t /*smnc[4]={0,0,0,0},*/nc=mtxAp->nc;
rsb_nnz_idx_t /*smnz[4]={0,0,0,0},*/nz=mtxAp->nnz;
size_t hcooio=0,hcsrio=0;
size_t fcooio=0,fcsrio=0;
size_t rsbio = rsb__get_index_storage_amount(mtxAp),bestio=rsbio;
const rsb_char_t sp=' ', bettermark='.'/*, bestmark='*'*/;
rsb_char_t hcoof=sp,hcsrf=sp,fcoof=sp,fcsrf=sp,rsbf=sp;
double savepcnt = 0.0;
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if(submatrix)
{
/*
int idx=2*i+j;
smnr[idx]=submatrix->nr;
smnc[idx]=submatrix->nc;
smnz[idx]=submatrix->nnz; */
++sol;
}
//sol = mtxAp->all_leaf_matrices_n;
if(wv>vl)
RSB_STDOUT("sub-leaf: %p is %ld x %ld and contains %ld nnz in %ld leaves ('.'=fewer indices)\n",(const void*)mtxAp,(long int)nr,(long int)nc,(long int)nz,(long int)sol),
RSB_STDOUT("as is:%10zu %c\n",rsbio ,rsbf);
if(RSB_INDICES_FIT_IN_HALFWORD(nr,nc))
{
hcooio=sizeof(rsb_half_idx_t)*2*nz;
hcsrio=sizeof(rsb_half_idx_t)*nz+sizeof(rsb_nnz_idx_t)*(1+nr);
if(hcooio<rsbio )hcoof=bettermark;
if(hcooio<bestio)bestio=hcooio;
if(hcsrio<rsbio )hcsrf=bettermark;
if(hcsrio<bestio)bestio=hcsrio;
if(wv>vl)
RSB_STDOUT("as HCOO:%10zu %c\n",hcooio,hcoof),
RSB_STDOUT("as HCSR:%10zu %c\n",hcsrio,hcsrf);
}
fcooio=sizeof(rsb_coo_idx_t)*2*nz;
if(fcooio<rsbio)fcoof=bettermark;
if(fcooio<bestio)bestio=fcooio;
fcsrio=sizeof(rsb_coo_idx_t)*nz+sizeof(rsb_nnz_idx_t)*(1+nr);
if(fcsrio<rsbio )fcsrf=bettermark;
if(fcsrio<bestio)bestio=fcsrio;
if(wv>vl)
RSB_STDOUT("as COO:%10zu %c\n",fcooio,fcoof),
RSB_STDOUT("as CSR:%10zu %c\n",fcsrio,fcsrf);
savepcnt=100.0*(((double)(rsbio-bestio))/(double)rsbio);
if(savepcnt>0.0 || miac)
{
if(wv>vl)
RSB_STDOUT("potential saving is: %3.2lg%% (%zu bytes out of %zu)\n",savepcnt,rsbio-bestio,rsbio);
mlp->sa[mlp->mc ]=rsbio-bestio;
mlp->mp[mlp->mc++]=mtxAp;
}
}
else
{
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if(submatrix)
rsb__leaves_analysis_rec(submatrix,mlp,wv,wpl);
}
}
ret: return errval;
}
static rsb_err_t rsb__cor_merge(rsb_type_t typecode, void* RSB_RESTRICT VA, rsb_coo_idx_t * RSB_RESTRICT IA, rsb_coo_idx_t * RSB_RESTRICT JA, rsb_nnz_idx_t offB, rsb_nnz_idx_t nnzB, rsb_nnz_idx_t nnzC, const int wv, int wp, struct rsb_coo_mtx_t*RSB_RESTRICT coop)
{
/**
* \ingroup gr_internals
* Merge two non overlapping totally ordered COO sequences.
* This is a naive version using a nnzB+nnzC temporary array.
* If coop is supplied, no allocation of a RSB_MIN(nnzB,nnzC) buffer space will occur but coop's will be used.
* It would be nice to have a no-alloc version, but this can be very complicated.
* nnzB or nnzC can be zero: in that case no further action needed.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
void *VB = NULL, *VC = NULL, *VT = NULL;
rsb_coo_idx_t * IB = NULL, *JB = NULL;
rsb_coo_idx_t * IC = NULL, *JC = NULL;
rsb_coo_idx_t * IT = NULL, *JT = NULL;
rsb_nnz_idx_t bi = 0, ci = 0, ti = 0;
rsb_nnz_idx_t b0 = 0, c0 = 0, t0 = 0;
struct rsb_coo_mtx_t coo;
size_t es = RSB_SIZEOF(typecode);
if( nnzB == 0 || nnzC == 0 )
goto ret;
b0 = offB;
c0 = offB + nnzB;
VB = RSB_TYPED_OFF_PTR(typecode,VA,b0);
VC = RSB_TYPED_OFF_PTR(typecode,VA,c0);
IB = IA + b0;
IC = IA + c0;
JB = JA + b0;
JC = JA + c0;
RSB_BZERO_P(&coo);
coo.nnz = nnzB + nnzC;
coo.typecode = typecode;
if( coop && coop->nnz)
{
coo = *coop;
coo.nnz = nnzB + nnzC; /* necessary */
}
else
{
if( NULL == rsb__allocate_coo_matrix_t(&coo) )
goto err;
}
IT = coo.IA;
JT = coo.JA;
VT = coo.VA;
again:
t0 = ti;
while( bi<nnzB && ci<nnzC && RSB_COO_LT(IB[bi],JB[bi],IC[ci],JC[ci]) )
{
IT[ti] = IB[bi];
JT[ti] = JB[bi];
++bi,++ti;
}
//if(ti>t0) RSB_STDOUT("t0:%d t1:%d bi:%d ci:%d bnz:%d cnz:%d\n",t0,ti,bi,ci,nnzB,nnzC);
if(ti>t0)
RSB_A_MEMCPY(VT,VB,t0,(bi-(ti-t0)),(ti-t0),es);
t0 = ti;
while( bi<nnzB && ci<nnzC && RSB_COO_GE(IB[bi],JB[bi],IC[ci],JC[ci]) )
{
IT[ti] = IC[ci];
JT[ti] = JC[ci];
++ci,++ti;
}
//if(ti>t0) RSB_STDOUT("t0:%d t1:%d bi:%d ci:%d bnz:%d cnz:%d\n",t0,ti,bi,ci,nnzB,nnzC);
if(ti>t0)
RSB_A_MEMCPY(VT,VC,t0,(ci-(ti-t0)),(ti-t0),es);
if( ci < nnzC && bi < nnzB )
goto again;
if( bi<nnzB && ci==nnzC )
{
RSB_COA_MEMCPY(IT,IB,ti,bi,(nnzB-bi));
RSB_COA_MEMCPY(JT,JB,ti,bi,(nnzB-bi));
RSB_A_MEMCPY (VT,VB,ti,bi,(nnzB-bi),es);
ti += (nnzB - bi);
bi = nnzB;
}
if( ci<nnzC && bi==nnzB )
{
RSB_COA_MEMCPY(IT,IC,ti,ci,(nnzC-ci));
RSB_COA_MEMCPY(JT,JC,ti,ci,(nnzC-ci));
RSB_A_MEMCPY (VT,VC,ti,ci,(nnzC-ci),es);
ti += (nnzC - ci);
ci = nnzC;
}
RSB_COA_MEMCPY(IA,IT,offB,0,(coo.nnz));
RSB_COA_MEMCPY(JA,JT,offB,0,(coo.nnz));
if(wp)
{
RSB_A_MEMCPY_parallel( VA,VT,offB,0,(coo.nnz),es);
}
else
{
RSB_A_MEMCPY( VA,VT,offB,0,(coo.nnz),es);
}
RSB_ASSERT(rsb__util_is_coo_array_sorted_up_partial_order(IA,coo.nnz));
goto done;
err:
errval = RSB_ERR_ENOMEM;
done:
if( coop && coop->nnz)
;
else
rsb__destroy_coo_matrix_t(&coo);
ret:
return errval;
}
rsb_err_t rsb__leaves_merge_multiple(struct rsb_mtx_t *mtxAp, rsb_time_t *stp, rsb_time_t *atp, rsb_time_t *ltp, const int wv, int kc)
{
/* FIXME: is this used ? where ? why ? */
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_time_t st = RSB_TIME_ZERO, lt = RSB_TIME_ZERO, at = RSB_TIME_ZERO;
while(mtxAp->all_leaf_matrices_n > 1)
{
rsb_time_t mst = RSB_TIME_ZERO, mlt = RSB_TIME_ZERO, mat = RSB_TIME_ZERO; /* merge: sort,elapsed,analysis time */
errval = rsb__leaves_merge(mtxAp, mtxAp->all_leaf_matrices_n, &mst, &mat, &mlt, wv, kc);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(err, RSB_ERRM_ES);
}
st += mst;
lt += mlt;
at += mat;
}
RSB_DEBUG_ASSERT( mtxAp->all_leaf_matrices_n == 1 );
if(kc)
{
#ifdef RSB_USE_ASSERT
struct rsb_mtx_t * submatrix = NULL;
rsb_submatrix_idx_t smi;
RSB_SUBMATRIX_FOREACH_LEAF(mtxAp,submatrix,smi)
{
RSB_DEBUG_ASSERT( submatrix->matrix_storage == RSB_MATRIX_STORAGE_BCOR );
RSB_DEBUG_ASSERT( RSB_DO_FLAG_HAS( submatrix->flags , RSB_FLAG_WANT_COO_STORAGE) );
}
#endif /* RSB_USE_ASSERT */
}
if (mtxAp->all_leaf_matrices_n > 1)
{
RSB_ERROR("Merge did not work: matrix has still %d submatrices.\n", mtxAp->all_leaf_matrices_n);
errval = RSB_ERR_INTERNAL_ERROR;
RSB_PERR_GOTO(err, RSB_ERRM_ES);
}
err:
RSB_ASSIGN_IF(stp,st)
RSB_ASSIGN_IF(atp,at)
RSB_ASSIGN_IF(ltp,lt)
return errval;
}
#if 0
static void rsb__mtx_list_print(struct rsb_mtx_list_t * mlp, const int wv)
{
rsb_submatrix_idx_t smi;
RSB_DEBUG_ASSERT(mlp);
RSB_STDOUT("Selected %d matrices:\n", mlp->mc);
for(smi=0;smi<mlp->mc;++smi)
{
struct rsb_mtx_t * mtxMp = mlp->mp[smi];
//if(wv>1)
RSB_STDOUT(RSB_PRINTF_MTX_SUMMARY_ARGS(mtxMp)),
RSB_STDOUT(" -> %zd\n",mlp->sa[smi]);
}
}
#endif
static void rsb__mtx_list_free(struct rsb_mtx_list_t * mlp)
{
RSB_DEBUG_ASSERT(mlp);
RSB_CONDITIONAL_FREE(mlp->mp);
RSB_CONDITIONAL_FREE(mlp->sa);
}
static void rsb__mtx_list_init(struct rsb_mtx_list_t * mlp)
{
RSB_DEBUG_ASSERT(mlp);
RSB_BZERO_P(mlp);
}
static rsb_err_t rsb__mtx_list_bld(struct rsb_mtx_list_t * mlp, struct rsb_mtx_t *mtxAp)
{
struct rsb_mtx_list_t ml;
rsb_err_t errval = RSB_ERR_NO_ERROR;
RSB_DEBUG_ASSERT(mtxAp);
RSB_DEBUG_ASSERT(mlp);
RSB_BZERO_P(&ml);
ml.mc = rsb__submatrices(mtxAp);
ml.sa = rsb__calloc(sizeof(*ml.sa) * ml.mc); /* after rsb__srt_subm_ptr_array, this won't make sense anymore */
ml.mp = rsb__calloc(sizeof(*ml.mp) * ml.mc);
ml.mc = 0; // for rsb__leaves_analysis_rec
if(!ml.sa || !ml.mp)
{
errval = RSB_ERR_ENOMEM;
rsb__mtx_list_free(&ml);
RSB_PERR_GOTO(err,RSB_ERRM_EM);
}
*mlp = ml;
err:
return errval;
}
#define RSB_MERGE_IS_EXPERIMENTAL 0
#define RSB_SPLIT_IS_EXPERIMENTAL 1
#define RSB_MTX_REALLOC_IS_EXPERIMENTAL 0
#define RSB_LS_PARANOIA 0
#if ( RSB_LS_PARANOIA > 0 )
#define RSB_LS_ASSERT(EXP) RSB_ASSERT(EXP)
#else /* RSB_LS_PARANOIA */
#define RSB_LS_ASSERT(EXP)
#endif /* RSB_LS_PARANOIA */
#ifdef RSB_ALLOW_INTERNAL_GETENVS
#define RSB_AT_ALLOW_GETENV RSB_ALLOW_INTERNAL_GETENVS /* activate this only for testing purposes */
#else /* RSB_ALLOW_INTERNAL_GETENVS */
#define RSB_AT_ALLOW_GETENV 0 /* activate this only for testing purposes */
#endif /* RSB_ALLOW_INTERNAL_GETENVS */
static void rsb__scale_subm_idx_on_env_var(const char *envv, double * mftsp, rsb_submatrix_idx_t * mctsp, const int wv)
{
#if RSB_AT_ALLOW_GETENV
const char * msss = NULL; /* matrix split specification string */
if( ( msss = getenv(envv) ) != NULL )
{
int nom=0,den=0;
char c[2];
if( 2 == sscanf(msss,"%d/%d",&nom,&den) )
*mftsp = ((double)(nom))/(den);
else
if( 1 == sscanf(msss,"0.%lf",mftsp ) )
*mftsp /= 10.0;
else
if( 2 == sscanf(msss,"%lf%[%]",mftsp,&c[0]) )
{
*mftsp /= 100.0;
}
else
if( 1 == sscanf(msss,"%d",mctsp) )
;
else
{
RSB_STDOUT("\"%s\" is a wrong value for %s. Use something as in e.g. 1/3 0.4 10%% 5\n",msss,envv);
}
if(wv>0)
RSB_STDOUT("Will split/merge a fraction %g of the original submatrices (used env.v. %s).\n",*mftsp,envv);
}
#endif /* RSB_AT_ALLOW_GETENV */
}
static void rsb__print_subms_ptrs(const struct rsb_mtx_t * mtxAp, const struct rsb_mtx_t * submatrix, rsb_submatrix_idx_t smi)
{
rsb_bool_t isleaf = RSB_BOOL_TRUE;
rsb_submatrix_idx_t i;
RSB_STDOUT("%ld: %ld %d", (long int)smi, (long int)(RSB_REC_FREE_SUBM_FLAG != submatrix->flags), (submatrix->flags & RSB_FLAG_QUAD_PARTITIONING) );
for(i=0;i<4;++i)
if ( submatrix->sm[i] )
isleaf = RSB_BOOL_FALSE;
if ( isleaf )
{
RSB_STDOUT(" leaf: ");
RSB_STDOUT_MATRIX_SUMMARY(submatrix);
}
else
for(i=0;i<4;++i)
RSB_STDOUT(" %p/%ld", (void*)(submatrix->sm[i]), (long int)(submatrix->sm[i] ? (submatrix->sm[i]-mtxAp) : 0) );
RSB_STDOUT("\n");
}
static rsb_err_t rsb__print_subms_idxs(const struct rsb_mtx_t * RSB_RESTRICT mtxAp)
{
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_submatrix_idx_t nsbs;
rsb_submatrix_idx_t smi = 0;
nsbs = 1 + rsb__submatrices_max_ptr_diff(mtxAp);
for(smi=0;smi<nsbs ;++smi)
{
const struct rsb_mtx_t * submatrix = mtxAp + smi;
rsb__print_subms_ptrs(mtxAp, submatrix, smi);
}
return errval;
}
static rsb_err_t rsb__print_leaves_idxs(const struct rsb_mtx_t * RSB_RESTRICT mtxAp)
{
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_submatrix_idx_t smi = 0;
const struct rsb_mtx_t * submatrix = NULL;
RSB_SUBMATRIX_FOREACH_LEAF(mtxAp,submatrix,smi)
{
rsb__print_subms_ptrs(mtxAp, submatrix, smi);
}
return errval;
}
static rsb_submatrix_idx_t rsb__mtxa_first_free(struct rsb_mtx_t const * mtxAp, struct rsb_mtx_t const *mtxQp, rsb_submatrix_idx_t mpd, rsb_submatrix_idx_t nsm)
{
rsb_submatrix_idx_t smc = 0;
struct rsb_mtx_t const * mtxOp = mtxQp;
while((!RSB_REC_IS_SUBM_FREE(mtxQp)) && ((mtxQp)-mtxAp<(RSB_MAX(mpd+1,smc+nsm))))++mtxQp;
RSB_DEBUG_ASSERT( ((mtxQp)-mtxAp>=(RSB_MAX(mpd+1,smc+nsm))) || (mtxQp)->flags!=RSB_REC_USED_SUBM_FLAG );
return mtxQp - mtxOp;
}
rsb_err_t rsb__mtx_split(struct rsb_mtx_t * RSB_RESTRICT mtxAp, rsb_submatrix_idx_t manp, rsb_time_t * RSB_RESTRICT stp, rsb_time_t * RSB_RESTRICT atp, rsb_time_t * RSB_RESTRICT ltp, const int wv, int kc)
{
/*
Subdivide an RSB matrix by splitting leaf sparse blocks.
Leave the matrix in a consistent state even on error.
However, it may be in a different state than in the beginning.
Requires spare leaves, obtained by calling rsb__mtx_realloc_with_spare_leaves() beforehand.
TODO: need to document work memory requirements.
FIXME: need to use manp.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_time_t mt = - rsb_time(), st = RSB_TIME_ZERO, lt = RSB_TIME_ZERO, at = RSB_TIME_ZERO, gt = RSB_TIME_ZERO, wt = RSB_TIME_ZERO, qt = RSB_TIME_ZERO; /* merge,shuffle/sort,elapsed,analysis,alloc,switch time, quadrants time */
struct rsb_mtx_list_t ml; /* matrix list */
rsb_submatrix_idx_t smi = 0, nsm = 0;
const enum rsb_subm_srtc_t sc = RSB_MTX_CMP_NNZ_DES;
const rsb_long_t smc = rsb__submatrices(mtxAp);
const rsb_long_t mpd = rsb__submatrices_max_ptr_diff(mtxAp);
rsb_submatrix_idx_t nsbs,nsas; /* number of submatrices [before/after] split */
const rsb_thread_t rnt = rsb_get_num_threads();
rsb_thread_t nst = rnt; /* number of threads active during splitting */
// rsb_submatrix_idx_t mmts = 0; /* max matrices to split */
rsb_submatrix_idx_t mcts = 0; /* matrices count to split */
double mfts = 0.5; /* matrices fraction to split */
rsb_flags_t flags = RSB_FLAG_NOFLAGS;
#if !RSB_SPLIT_USE_TMP_COOMTX
rsb_nnz_idx_t max_nnz = 0;
rsb_coo_idx_t max_nr = 0;
struct rsb_mtx_t * submatrix = NULL;
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
RSB_DEBUG_ASSERT( mtxAp );
rsb__mtx_list_init(&ml);
nsbs = mtxAp->all_leaf_matrices_n;
flags = mtxAp->flags & RSB_FLAG_USE_HALFWORD_INDICES;
if(nsbs == 1)
RSB_DO_FLAG_ADD(flags, RSB_FLAG_USE_HALFWORD_INDICES);
#if RSB_SPLIT_IS_EXPERIMENTAL
if(! RSB_SOME_ERROR(errval) )
if(!rsb__mtx_chk(mtxAp))
{
errval = RSB_ERR_INTERNAL_ERROR;
RSB_PERR_GOTO(ret, RSB_ERRM_ES);
}
#endif
#if !RSB_SPLIT_USE_TMP_COOMTX
RSB_SUBMATRIX_FOREACH_LEAF(mtxAp,submatrix,smi)
{
max_nnz = RSB_MAX(max_nnz, submatrix->nnz); // NOTE: maximal upper or lower half would be enough actually
max_nr = RSB_MAX(max_nr, submatrix->nr);
}
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
if(wv>2)
RSB_STDOUT("# experimental leaves analysis & split of: "),
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp)),
RSB_STDOUT("\n");
if(wv>2)
RSB_STDOUT("# max ptr diff is %zd units, for %ld submatrices\n",rsb__submatrices_max_ptr_diff(mtxAp),smc);
/*
for(smi=0;smi<mtxAp->all_leaf_matrices_n;++smi)
{
int smj;
for(smj=smi+1;smj<mtxAp->all_leaf_matrices_n;++smj)
if(mtxAp->all_leaf_matrices[smi].mtxlp == mtxAp->all_leaf_matrices[smj].mtxlp)
{
printf("Duplicate submatrices: p:%p i:%d j:%d max:%d\n",0x0,smi,smj,mtxAp->all_leaf_matrices_n);
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp->all_leaf_matrices[smj].mtxlp));
}
}
*/
/* Determine largest / heaviest leaf. */
at = -rsb_time();
errval = rsb__mtx_list_bld(&ml, mtxAp);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(ret, RSB_ERRM_E_MTXAP);
}
errval = rsb__leaves_analysis_rec(mtxAp, &ml, wv, RSB_BOOL_FALSE);
errval = rsb__srt_subm_ptr_array(ml.mp, ml.mc, sc);
at += rsb_time();
RSB_ASSERT(ml.mc>0);
rsb__scale_subm_idx_on_env_var("RSB_SPLIT_SF",&mfts,&mcts,wv);
#if RSB_AT_ALLOW_GETENV
nst = getenv("RSB_SPLIT_NT") ? rsb__util_atoi(getenv("RSB_SPLIT_NT")) : nst;
#endif /* RSB_AT_ALLOW_GETENV */
/* TODO: can we have recursive split for corner-concentrated-nonzeroes matrices ? */
if(mcts == 0)
mcts = (rsb_submatrix_idx_t)(mfts*ml.mc);
mcts = RSB_MIN(RSB_MAX(1, mcts), ml.mc); /* 1 ... ml.mc */
nst = RSB_MIN(mcts, nst);
if(manp > 0)
mcts = RSB_MIN(mcts, manp);
if(wv>2)
RSB_STDOUT("# will use %zd threads to split %zd leaves\n",(size_t)nst,(size_t)mcts);
if(wv>2)
rsb__print_subms_idxs(mtxAp),
rsb__print_leaves_idxs(mtxAp);
#pragma omp parallel reduction(|:errval) reduction(+:lt) reduction(+:st) reduction(+:gt) reduction(+:wt) shared(nsm) shared(ml) num_threads(nst)
{
struct rsb_coo_mtx_t cot;
rsb_coo_idx_t * TA = NULL;
#if !RSB_SPLIT_USE_TMP_COOMTX
#pragma omp critical (rsb__mtx_split_cr)
{
/* TODO: one can minimize this number further */
cot.typecode = mtxAp->typecode;
cot.nnz = max_nnz;
cot.nr = max_nr;
if( NULL == rsb__allocate_coo_matrix_t(&cot) )
errval = RSB_ERR_ENOMEM;
TA = rsb__malloc( sizeof(rsb_coo_idx_t) * RSB_MIN(max_nnz,1+max_nr) );
if(!TA)
errval = RSB_ERR_ENOMEM;
}
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(eerr,RSB_ERRM_PAL );
}
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
#pragma omp for schedule(dynamic)
for(smi=0;smi<mcts;++smi)
{
struct rsb_mtx_t * mtxMp = ml.mp[smi];
const rsb_coo_idx_t nrA = mtxMp->nr, ncA = mtxMp->nc;
const rsb_coo_idx_t msz = 2;
rsb_nnz_idx_t nzul = 0, nzur = 0, nzll = 0, nzlr = 0;
rsb_nnz_idx_t nzu = 0, nzl = 0;
struct rsb_coo_mtx_t coa;
rsb_coo_idx_t mr = RSB_MIDDLE(nrA), mc = RSB_MIDDLE(ncA);
rsb_time_t lst = RSB_TIME_ZERO, llt = RSB_TIME_ZERO, swt = RSB_TIME_ZERO, qut = RSB_TIME_ZERO; /* local st,lt,wt */
rsb_coo_idx_t lsm = 0;
/* RSB_STDOUT("thread %d handles matrix %d\n",omp_get_thread_num(),smi); */
llt = -rsb_time();
swt = -rsb_time();
/* Skip processing if no split possible or convenient. */
if( nrA < msz || ncA < msz || mtxMp->nnz < 4 )
{
/* TODO: shall we communicate this somehow to the outside ? */
if(wv>2)
RSB_ERROR("Matrix is too small for splitting:"),
RSB_ERROR(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxMp)),
RSB_ERROR("\n");
goto nerr;
}
if( nsm + 3 >= RSB_TMP_OVERALLOC_MTX * ml.mc )
{
RSB_PERR_GOTO(lerr,"Exceeded inner limits !");
}
/* Switch to COO, then split. */
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp)==RSB_BOOL_TRUE);
#if RSB_SPLIT_USE_TMP_COOMTX
gt -= rsb_time();
#pragma omp critical (rsb__mtx_split_cr)
{
/* TODO: one can minimize this number further */
TA = rsb__malloc( sizeof(rsb_coo_idx_t) * RSB_MIN(mtxMp->nnz,1+nrA) );
if(!TA)
{
errval = RSB_ERR_ENOMEM;
}
}
gt += rsb_time();
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(lerr,RSB_ERRM_PAL ); /* !! */
}
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
errval = rsb__do_switch_leaf(mtxMp, RSB_MATRIX_STORAGE_BCOR, RSB_FLAG_USE_FULLWORD_INDICES, 0, 0, TA);
RSB_LS_ASSERT(!RSB_SOME_ERROR(errval));
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp)==RSB_BOOL_TRUE);
/*if( rsb__util_is_nnz_array_sorted_up_partial_order(mtxMp->bpntr,mtxMp->nnz)!=RSB_BOOL_TRUE)
rsb__mtx_chk(mtxMp); */
RSB_LS_ASSERT( rsb__util_is_nnz_array_sorted_up_partial_order(mtxMp->bpntr,mtxMp->nnz)==RSB_BOOL_TRUE);
if(wv>2)
RSB_STDOUT("# switched the largest leaf to COO: "),
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxMp)),
RSB_STDOUT(" @ %ld,%ld\n",(long)mtxMp->roff,(long)mtxMp->coff);
rsb__project_rsb_to_coo(mtxMp,&coa);
/* Count elements in each quadrant */
nzu = rsb__nnz_split_coo_bsearch(coa.IA,mr,mtxMp->nnz);
nzl = mtxMp->nnz - nzu;
swt += rsb_time();
cot.typecode = mtxMp->typecode;
cot.nnz = RSB_MAX(nzu,nzl); /* TODO: one can find better solutions ... */
#if RSB_SPLIT_USE_TMP_COOMTX
gt -= rsb_time();
#pragma omp critical (rsb__mtx_split_cr)
{
if( NULL == rsb__allocate_coo_matrix_t(&cot) )
{
errval = RSB_ERR_ENOMEM;
}
}
gt += rsb_time();
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(lerr,RSB_ERRM_PAL ); /* !! */
}
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
lst = -rsb_time();
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp)==RSB_BOOL_TRUE);
if( RSB_LS_PARANOIA )
{
/* TODO: make this check more compact */
rsb_coo_idx_t li, ui;
rsb_coo_idx_t lj, uj;
rsb__util_find_extremal_full_index_val(coa.IA,nzu+nzl,0,-1,&li,&ui);
rsb__util_find_extremal_full_index_val(coa.JA,nzu+nzl,0,-1,&lj,&uj);
//RSB_STDOUT("1 nr=%d nc=%d li=%d ui=%d lj=%d uj=%d mr=%d mc=%d nzu=%d nzl=%d.\n",nrA,ncA,li,ui,lj,uj,mr,mc,nzu,nzl);
RSB_ASSERT( (ui>=mr && nzl>0) || (ui<mr && nzl==0) );
}
if( RSB_LS_PARANOIA )
{
/* TODO: make this check more compact */
rsb_coo_idx_t li, ui;
rsb_coo_idx_t lj, uj;
rsb__util_find_extremal_full_index_val(coa.IA,nzu,0,-1,&li,&ui);
rsb__util_find_extremal_full_index_val(coa.JA,nzu,0,-1,&lj,&uj);
//RSB_STDOUT("2 nr=%d nc=%d li=%d ui=%d lj=%d uj=%d mr=%d mc=%d nzu=%d nzl=%d.\n",nrA,ncA,li,ui,lj,uj,mr,mc,nzu,nzl);
//RSB_ASSERT( (ui>=mr && nzl>0) || (ui<mr && nzl==0) );
}
rsb__coo_to_lr( cot.VA, cot.IA, cot.JA, coa.VA, coa.IA, coa.JA, mc, nzu, 0, 0, &nzul, &nzur, 0,-mc, mtxAp->typecode);
if( RSB_LS_PARANOIA )
{
/* TODO: make this check more compact */
rsb_coo_idx_t li, ui;
rsb_coo_idx_t lj, uj;
rsb__util_find_extremal_full_index_val(coa.IA,nzu,0,-1,&li,&ui);
rsb__util_find_extremal_full_index_val(coa.JA,nzu,0,-1,&lj,&uj);
//RSB_STDOUT("3 nr=%d nc=%d li=%d ui=%d lj=%d uj=%d mr=%d mc=%d nzu=%d nzl=%d.\n",nrA,ncA,li,ui,lj,uj,mr,mc,nzu,nzl);
RSB_ASSERT( ui < mr );
}
if( RSB_LS_PARANOIA )
{
/* TODO: make this check more compact */
rsb_coo_idx_t li, ui;
rsb_coo_idx_t lj, uj;
rsb__util_find_extremal_full_index_val(coa.IA,nzul,0,-1,&li,&ui);
rsb__util_find_extremal_full_index_val(coa.JA,nzul,0,-1,&lj,&uj);
//RSB_STDOUT("3 nr=%d nc=%d li=%d ui=%d lj=%d uj=%d mr=%d mc=%d nzu=%d nzl=%d.\n",nrA,ncA,li,ui,lj,uj,mr,mc,nzu,nzl);
RSB_ASSERT( ui < mr );
RSB_ASSERT( uj < mc );
}
rsb__coo_to_lr( cot.VA, cot.IA, cot.JA, coa.VA, coa.IA, coa.JA, mc, nzl, 0, nzu, &nzll, &nzlr,-mr,-mc, mtxAp->typecode);
lst += rsb_time();
#if RSB_SPLIT_USE_TMP_COOMTX
gt -= rsb_time();
#pragma omp critical (rsb__mtx_split_cr)
{
rsb__destroy_coo_matrix_t(&cot);
}
gt += rsb_time();
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
RSB_ASSERT( mtxMp->nnz == nzu + nzl );
RSB_ASSERT( mtxMp->nnz == nzul + nzur + nzll + nzlr );
RSB_ASSERT( nzul + nzur == nzu );
RSB_ASSERT( nzll + nzlr == nzl );
if(wv>2)
RSB_STDOUT("# nzu=%ld nzl=%ld nzul=%ld nzur=%ld nzll=%ld nzlr=%ld.\n",(long int)nzu,(long int)nzl,(long int)nzul,(long int)nzur,(long int)nzll,(long int)nzlr);
/* make sure we have further one to four submatrices */
if(1)
{
struct rsb_mtx_t * mtxQp = NULL;
struct rsb_mtx_t *mtxQ1p = NULL,*mtxQ2p = NULL, *mtxQ3p = NULL, *mtxQ4p = NULL;
/* rename this in fashion of rsb__do_set_in_place_submatrices_offsets */
#define RSB_MTX_INIT_LEAF(MTXAP,MTXLP,NNZ,NZOFF,NR,NC,ROFF,COFF) \
/* RSB_STDOUT("thread %d divides quadrant %p / subquadrant %p = %d\n",omp_get_thread_num(),MTXAP,mtxQp,(mtxQp-mtxAp)); */ \
RSB_BZERO_P((MTXLP)); \
rsb__set_init_flags_and_stuff(MTXLP,NULL,NULL,NR,NC,NNZ,NNZ,NNZ,(MTXAP)->typecode,(MTXAP)->flags); \
(MTXLP)->matrix_storage = RSB_MATRIX_STORAGE_BCOR; \
(MTXLP)->roff = (MTXAP)->roff + (ROFF), \
(MTXLP)->coff = (MTXAP)->coff + (COFF), \
(MTXLP)->nzoff = (MTXAP)->nzoff + NZOFF, \
(MTXLP)->bpntr = (MTXAP)->bpntr + NZOFF, \
(MTXLP)->bindx = (MTXAP)->bindx + NZOFF, \
(MTXLP)->VA = RSB_VA_OFFSET_POINTER((MTXAP)->VA, RSB_SIZEOF((MTXAP)->typecode), (NZOFF)), \
RSB_DO_FLAG_ADD((MTXLP)->flags,RSB_FLAG_DEFAULT_RSB_MATRIX_FLAGS ); \
RSB_DO_FLAG_DEL((MTXLP)->flags,RSB_FLAG_USE_HALFWORD_INDICES); /* COO */ \
errval = rsb__compute_bounded_box((MTXLP)); \
if(RSB_SOME_ERROR(errval)) { RSB_PERR_GOTO(lerr,RSB_ERRM_PAL );} \
errval = rsb__do_switch_leaf((MTXLP), RSB_MATRIX_STORAGE_AUTO, flags, 0, 0, TA); \
RSB_DO_FLAG_ADD((MTXLP)->flags,RSB_FLAG_NON_ROOT_MATRIX); \
if(RSB_SOME_ERROR(errval)) { RSB_PERR_GOTO(lerr,RSB_ERRM_PAL );}
qut = -rsb_time();
#pragma omp critical (rsb__mtx_split_cr)
{
/* this is a 'matrix reservation' mechanism */
/* mtxQp = (mtxAp) + smc + nsm; */ /* can use this only if there are no holes */
mtxQp = mtxAp;
mtxQp += rsb__mtxa_first_free(mtxAp, mtxQp, mpd, smc + nsm);
/* RSB_STDOUT("%d starts at %d\n",omp_get_thread_num(),(mtxQp-mtxAp)); */
if(nzul){ ++nsm; mtxQp += rsb__mtxa_first_free(mtxAp, mtxQp, mpd, smc + nsm); mtxQ1p = mtxQp; RSB_REC_MARK_SUBM_USED(mtxQp); }
if(nzur){ ++nsm; mtxQp += rsb__mtxa_first_free(mtxAp, mtxQp, mpd, smc + nsm); mtxQ2p = mtxQp; RSB_REC_MARK_SUBM_USED(mtxQp); }
if(nzll){ ++nsm; mtxQp += rsb__mtxa_first_free(mtxAp, mtxQp, mpd, smc + nsm); mtxQ3p = mtxQp; RSB_REC_MARK_SUBM_USED(mtxQp); }
if(nzlr){ ++nsm; mtxQp += rsb__mtxa_first_free(mtxAp, mtxQp, mpd, smc + nsm); mtxQ4p = mtxQp; RSB_REC_MARK_SUBM_USED(mtxQp); }
lsm += nzul ? 1 : 0;
lsm += nzur ? 1 : 0;
lsm += nzll ? 1 : 0;
lsm += nzlr ? 1 : 0;
}
qut += rsb_time();
#if ( RSB_LS_PARANOIA > 1 )
#define RSB_VRB_SPLIT(Q) RSB_STDOUT("%ld[%ld] -> %ld, misplaced ? %d\n",(mtxMp-mtxAp),(long int)(Q),(mtxQp-mtxAp),RSB__IS_SUBM_MISPLACED(mtxQp,mtxMp)); \
RSB_STDOUT(RSB_PRINTF_MTX_SUMMARIZED_ARGS("OLD submatrix: ",mtxMp,RSB_ERRM_NL));\
RSB_STDOUT(RSB_PRINTF_MTX_SUMMARIZED_ARGS("CRT submatrix: ",mtxQp,RSB_ERRM_NL));
#else
#define RSB_VRB_SPLIT(Q)
#endif
if(nzul)
{
mtxQp=mtxQ1p;
mtxMp->sm[0] = mtxQp;
RSB_MTX_INIT_LEAF(mtxMp,mtxMp->sm[0],nzul,0 , mr, mc, 0,0 );
RSB_VRB_SPLIT(0);
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp->sm[0])==RSB_BOOL_TRUE);
}
if(nzur)
{
mtxQp=mtxQ2p;
mtxMp->sm[1] = mtxQp;
RSB_MTX_INIT_LEAF(mtxMp,mtxMp->sm[1],nzur,nzul , mr,ncA-mc, 0,mc);
RSB_VRB_SPLIT(1);
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp->sm[1])==RSB_BOOL_TRUE);
RSB_DO_FLAG_DEL((mtxMp->sm[1])->flags,RSB_FLAG_UPPTRI|RSB_FLAG_TRIANGULAR);
}
if(nzll)
{
mtxQp=mtxQ3p;
mtxMp->sm[2] = mtxQp;
RSB_MTX_INIT_LEAF(mtxMp,mtxMp->sm[2],nzll,nzu ,nrA-mr, mc,mr,0 );
RSB_VRB_SPLIT(2);
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp->sm[2])==RSB_BOOL_TRUE);
RSB_DO_FLAG_DEL((mtxMp->sm[2])->flags,RSB_FLAG_UPPTRI|RSB_FLAG_TRIANGULAR);
}
if(nzlr)
{
mtxQp=mtxQ4p;
mtxMp->sm[3] = mtxQp;
RSB_MTX_INIT_LEAF(mtxMp,mtxMp->sm[3],nzlr,nzu+nzll ,nrA-mr,ncA-mc,mr,mc);
RSB_VRB_SPLIT(3);
RSB_LS_ASSERT( rsb__mtx_chk(mtxMp->sm[3])==RSB_BOOL_TRUE);
}
#undef RSB_MTX_INIT_LEAF
if(wv>2)
RSB_STDOUT("# just split from %ld .. [->%ld] +%ld subms (max %ld splits allowed (max +%ld then)).\n",(long int)(smc/*+nsm*/),(long int)(mtxQp-mtxAp-lsm+1),(long int)(lsm),(long int)mcts,4*(long int)mcts);
/* leaf recompression, bounds have been recomputed on each leaf */
/* marked present matrix as non terminal and assign nonzeroes to leaves */
}
/* RSB_DO_FLAG_DEL(mtxMp->flags,RSB_FLAG_NON_ROOT_MATRIX); */
RSB_DO_FLAG_ADD(mtxMp->flags,RSB_FLAG_QUAD_PARTITIONING);
/* TODO: what if nonzeroes are concentrated in a corner ? EXPERIMENTAL OVER-SUBDIVIDE !? */
mtxMp->VA = NULL;
mtxMp->bindx = NULL;
mtxMp->bpntr = NULL;
llt += rsb_time();
lt += llt;
st += lst;
wt += swt;
qt += qut;
mtxMp->est = lst;
mtxMp->tat = llt;
mtxMp->sat = llt - lst; /* TODO: this is to be completed */
#if RSB_SPLIT_USE_TMP_COOMTX
gt -= rsb_time();
#pragma omp critical (rsb__mtx_split_cr)
{
RSB_CONDITIONAL_FREE(TA);
}
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
continue;
lerr:
RSB_NULL_STATEMENT_FOR_COMPILER_HAPPINESS
RSB_ASSERT(0); /* critical */
nerr: /* Not an error condition. */
RSB_NULL_STATEMENT_FOR_COMPILER_HAPPINESS
/* Note: mechanism to revert matrix to the original state. */
} /* smi */
#if !RSB_SPLIT_USE_TMP_COOMTX
eerr:
#pragma omp critical (rsb__mtx_split_cr)
{
RSB_CONDITIONAL_FREE(TA);
rsb__destroy_coo_matrix_t(&cot);
}
#endif /* RSB_SPLIT_USE_TMP_COOMTX */
}
if(wv>2)
rsb__print_subms_idxs(mtxAp), rsb__print_leaves_idxs(mtxAp);
if(nsm > 0)
RSB_DO_FLAG_ADD(mtxAp->flags, RSB_FLAG_USE_HALFWORD_INDICES);
errval = rsb__refresh_array_of_leaf_matrices(mtxAp);
RSB_DEBUG_ASSERT(1+rsb__submatrices_max_ptr_diff(mtxAp)>=rsb__submatrices(mtxAp));
if(RSB_SOME_ERROR(errval))
{
RSB_ERROR(RSB_ERRM_EM);
/*
* TODO: complete this part !
* One would need a matrix revert/recovery mechanism!
* */
}
mt += rsb_time();
nsas = mtxAp->all_leaf_matrices_n;
#if RSB_STORE_IDXSA
mtxAp->idxsa = rsb__get_index_storage_amount(mtxAp);
#endif
#if RSB_WANT_SSC
mtxAp->ssbc -= nsm;
if(wv>1)
RSB_STDOUT("After split has %ld spare subms.\n",(long int)mtxAp->ssbc);
#endif
if(wv>0)
RSB_STDOUT("Split (%d -> %d leaves, %d -> %d subms) took %0.4lgs (of which: %0.4lgs analysis, %0.4lgs mem.mgmt); compute time: %0.4lgs overall, %0.4lgs searches, %0.4lgs shuffle, %0.4lgs switch, %0.4lgs quadrants.\n",nsbs,nsas,(int)smc,(int)smc+nsm,mt,at,gt,lt,st,lt-st,wt,qt);
/* The following shall be used to locate bugs in the split loop locking mechanism. */
/*
for(smi=0;smi<mtxAp->all_leaf_matrices_n;++smi)
{
printf("%p : ",mtxAp->all_leaf_matrices[smi].mtxlp);
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp->all_leaf_matrices[smi].mtxlp));
printf("\n");
}
for(smi=0;smi<mtxAp->all_leaf_matrices_n;++smi)
{
int smj;
for(smj=smi+1;smj<mtxAp->all_leaf_matrices_n;++smj)
if(mtxAp->all_leaf_matrices[smi].mtxlp == mtxAp->all_leaf_matrices[smj].mtxlp)
{
printf("Oops. Duplicate submatrices: p: %p i:%d j:%d max:%d\n",mtxAp->all_leaf_matrices[smj].mtxlp,smi,smj,mtxAp->all_leaf_matrices_n);
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp));
printf("\n");
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp->all_leaf_matrices[smj].mtxlp));
printf("\n");
printf("This is BAD. Terminating\n");
RSB_DEBUG_ASSERT(0);
exit(-1);
}
}
*/
#if RSB_SPLIT_IS_EXPERIMENTAL
if(! RSB_SOME_ERROR(errval) )
if(!rsb__mtx_chk(mtxAp))
{
errval = RSB_ERR_INTERNAL_ERROR;
RSB_ERROR(RSB_ERRM_ES);
goto ret;
}
#endif
ret:
rsb__mtx_list_free(&ml);
RSB_ASSIGN_IF(stp, st)
RSB_ASSIGN_IF(atp, at)
RSB_ASSIGN_IF(ltp, lt)
return errval;
} /* rsb__mtx_split */
rsb_err_t rsb__leaves_merge(struct rsb_mtx_t * RSB_RESTRICT mtxAp, rsb_submatrix_idx_t manp, rsb_time_t * RSB_RESTRICT stp, rsb_time_t *RSB_RESTRICT atp, rsb_time_t *RSB_RESTRICT ltp, const int wv, int kc)
{
/**
\ingroup gr_internals
Merges leaf level sparse blocks, one level.
It preserves the original VA,IA,JA arrays.
TODO: rename to rsb__mtx_merge
TODO: need to document memory requirements.
TODO: at the moment, errors are considered to be critical (matrix destructive).
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_time_t mt = - rsb_time(),
st = RSB_TIME_ZERO,
lt = RSB_TIME_ZERO,
at = RSB_TIME_ZERO; /* merge,sort,elapsed,analysis time */
/*const int wv = 0;*/ /* want verbose */
rsb_submatrix_idx_t nsbp, nsap; /* number of submatrices before and after merge */
struct rsb_mtx_list_t ml; /* matrix list */
const int vl = 2; /* ?? */
RSB_DEBUG_ASSERT( mtxAp );
rsb__mtx_list_init(&ml);
if(wv>2)
RSB_STDOUT("# max ptr diff is %zd units\n",rsb__submatrices_max_ptr_diff(mtxAp));
if(wv>2)
rsb__print_subms_idxs(mtxAp), rsb__print_leaves_idxs(mtxAp);
nsbp = mtxAp->all_leaf_matrices_n;
if(wv>vl)
RSB_STDOUT("# experimental leaves analysis: "),
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp)),
RSB_STDOUT("\n");
if(! rsb__is_terminal_recursive_matrix(mtxAp))
{
rsb_submatrix_idx_t smi;
const size_t rsbio = rsb__get_index_storage_amount(mtxAp);
int rnt = rsb_get_num_threads();
int nmt = rnt;
enum rsb_subm_srtc_t sc = RSB_MTX_CMP_NNZ_ASC;
rsb_submatrix_idx_t mctm = 0; /* matrices count to merge */
double mftm = 0.5; /* matrices fraction to merge */
#if RSB_AT_ALLOW_GETENV
nmt = getenv("RSB_MERGE_NT") ? rsb__util_atoi(getenv("RSB_MERGE_NT")) : nmt;
sc = getenv("RSB_MERGE_SC") ? rsb__util_atoi(getenv("RSB_MERGE_SC")) : sc;
#endif /* RSB_AT_ALLOW_GETENV */
RSB_DEBUG_ASSERT(nsbp>0);
at = -rsb_time();
errval = rsb__mtx_list_bld(&ml, mtxAp);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(ret, RSB_ERRM_EM);
}
errval = rsb__leaves_analysis_rec(mtxAp, &ml, wv, RSB_BOOL_TRUE);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(err, RSB_ERRM_EM);
}
errval = rsb__srt_subm_ptr_array(ml.mp, ml.mc, sc);
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(err, RSB_ERRM_EM);
}
at += rsb_time();
if(manp > 0)
ml.mc = RSB_MIN( ml.mc, manp);
rsb__scale_subm_idx_on_env_var("RSB_MERGE_SF",&mftm,&mctm,wv);
if(mctm == 0)
mctm = (rsb_submatrix_idx_t)(mftm*ml.mc);
mctm = RSB_MIN(RSB_MAX(1, mctm), ml.mc); /* 1 ... ml.mc */
nmt = RSB_MIN(mctm, nmt);
if(wv>vl)
RSB_STDOUT("Basic storage uses %zu bytes (%2.3lf bpnz).\n", rsbio, ((double)rsbio)/mtxAp->nnz),
RSB_STDOUT("We have %d merge candidate pre-leaves of which %d will be processed with %d threads.\n",ml.mc,mctm,nmt);
/* In the following parallel loop, omitting the RSB_NTC thread specification. */
#pragma omp parallel for schedule(static,1) reduction(|:errval) reduction(+:lt) reduction(+:st) shared(ml) num_threads(nmt)
for(smi=0;smi</*ml.mc*/mctm;++smi)
{
struct rsb_mtx_t * submatrix = NULL;
rsb_submatrix_idx_t sml;
rsb_submatrix_idx_t i,j;
struct rsb_mtx_t * mtxMp = ml.mp[smi];
size_t rsbio = rsb__get_index_storage_amount(mtxAp); /* rsb indices occupation */
size_t subio = rsb__get_index_storage_amount(mtxMp); /* submatrices indices occupation */
size_t jmios = ml.sa[smi]; /* join matrix index occupation save */
double rsavepcnt = 100.0*(((double)(jmios))/(double)subio);
double asavepcnt = 100.0*(((double)(jmios))/(double)rsbio);
rsb_coo_idx_t roffM = mtxMp->roff, coffM = mtxMp->coff;
rsb_coo_idx_t broffM = mtxMp->roff+mtxMp->nr, bcoffM = mtxMp->coff+mtxMp->nc;
rsb_nnz_idx_t nzul = RSB_NNZ_OF(mtxMp->sm[0]), nzur = RSB_NNZ_OF(mtxMp->sm[1]);
rsb_nnz_idx_t nzll = RSB_NNZ_OF(mtxMp->sm[2]), nzlr = RSB_NNZ_OF(mtxMp->sm[3]);
rsb_bool_t ifq = RSB_BOOL_FALSE; /* is first quadrant ? */
rsb_time_t lst = RSB_TIME_ZERO, llt = RSB_TIME_ZERO; /* local st,lt */
rsb_coo_idx_t * TA = NULL;
struct rsb_coo_mtx_t tcoo;
RSB_BZERO_P(&tcoo);
#if RSB_AT_ALLOW_GETENV
if(getenv("RSB_MERGE_KEEP_COO"))
kc = rsb__util_atoi(getenv("RSB_MERGE_KEEP_COO"));
#endif /* RSB_AT_ALLOW_GETENV */
if(wv>vl)
RSB_STDOUT(RSB_PRINTF_MTX_SUMMARY_ARGS(mtxMp)),
RSB_STDOUT("\n");
llt = -rsb_time();
if(wv>vl)
RSB_STDOUT("By merging %p/%ld [%ld+%ld+%ld+%ld=%ld], gain relative %3.2lg%% or absolute %3.2lg%% (%zu bytes)\n", (const void*)mtxMp, (long int)(mtxMp-mtxAp), (long int)nzul, (long int)nzur, (long int)nzll, (long int)nzlr, (long int)mtxMp->nnz, rsavepcnt, asavepcnt, jmios);
RSB_ASSERT( nzul + nzur + nzll + nzlr == mtxMp->nnz );
mtxMp->bpntr = NULL;
mtxMp->bindx = NULL;
mtxMp->VA = NULL;
#pragma omp critical (rsb__mtx_split_cr)
{
/* TODO: one can minimize this number further */
rsb_nnz_idx_t tamnz = RSB_MIN(mtxMp->nnz,1+mtxMp->nr);
#if RSB_MERGE_USE_TMP_COOMTX
tcoo.nnz = RSB_MAX( RSB_MAX(nzul+nzur,nzll+nzlr), tamnz );
tcoo.typecode = mtxMp->typecode;
if( NULL == rsb__allocate_coo_matrix_t(&tcoo) )
errval = RSB_ERR_ENOMEM;
TA = tcoo.IA;
#else /* RSB_MERGE_USE_TMP_COOMTX */
TA = rsb__malloc( sizeof(rsb_coo_idx_t) * tamnz );
if(!TA)
errval = RSB_ERR_ENOMEM;
#endif /* RSB_MERGE_USE_TMP_COOMTX */
}
RSB_SUBMATRIX_FOREACH(mtxMp, submatrix, i, j)
if(submatrix)
{
ifq = RSB_BOOL_FALSE;
if(wv>3)
RSB_STDOUT("lmax in IA/JA: %ld/%ld.\n", (long int)rsb__util_find_coo_max_index_val(submatrix->bpntr, submatrix->nnz), (long int)rsb__util_find_coo_max_index_val(submatrix->bindx, submatrix->nnz));
errval = rsb__do_switch_leaf(submatrix, RSB_MATRIX_STORAGE_BCOR, RSB_FLAG_USE_FULLWORD_INDICES, submatrix->roff-roffM, submatrix->coff-coffM, TA);
if(wv>3)
RSB_STDOUT("smax in IA/JA: %ld/%ld.\n", (long int)rsb__util_find_coo_max_index_val(submatrix->bpntr, submatrix->nnz), (long int)rsb__util_find_coo_max_index_val(submatrix->bindx, submatrix->nnz));
if(RSB_SOME_ERROR(errval))
{
/* RSB_PERR_GOTO(done,RSB_ERRM_ES); */
RSB_ASSERT(!(RSB_SOME_ERROR(errval)));
}
if( mtxMp->bpntr == NULL && mtxMp->bindx == NULL )
{
ifq = RSB_BOOL_TRUE;
mtxMp->bpntr = submatrix->bpntr;
mtxMp->bindx = submatrix->bindx;
mtxMp->VA = submatrix->VA;
mtxMp->flags = submatrix->flags;
mtxMp->matrix_storage = submatrix->matrix_storage;
}
mtxMp->roff = RSB_MIN(mtxMp->roff, submatrix->roff);
mtxMp->coff = RSB_MIN(mtxMp->coff, submatrix->coff);
bcoffM = RSB_MIN(bcoffM, submatrix->bcoff);
broffM = RSB_MIN(broffM, submatrix->broff);
/* broff, bcoff remain the same (local indices) */
/* base bm, bk */
mtxMp->bm = mtxMp->nr;
mtxMp->bk = mtxMp->nc;
/* tighten bm, bk (local indices) */
mtxMp->bm = RSB_MAX(mtxMp->bm ,roffM+submatrix->bm-submatrix->roff );
mtxMp->bk = RSB_MAX(mtxMp->bk ,coffM+submatrix->bk-submatrix->coff );
/* br, bc remain the same */
/*RSB_STDOUT("br/bc : %d/%d: %d/%d.\n", mtxMp->br,mtxMp->bc,submatrix->br,submatrix->bc); */
for(sml=0;sml<mtxAp->all_leaf_matrices_n;sml++)
if(mtxAp->all_leaf_matrices[sml].mtxlp == submatrix)
{
/* In order to get rid of this loop one shall reorder the submatrices appropriately */
if(ifq == RSB_BOOL_TRUE)
{
mtxAp->all_leaf_matrices[sml].mtxlp = NULL;
if(wv>3)
RSB_STDOUT("Nullified leaf %d [%d,%d] and substituted with merged (%d).\n",sml,i,j,smi);
}
else
{
mtxAp->all_leaf_matrices[sml].mtxlp = NULL;
if(wv>3)
RSB_STDOUT("Nullified leaf %d [%d,%d].\n",sml,i,j);
}
}
} /* submatrix */
RSB_SUBMATRIX_FOREACH(mtxMp, submatrix, i, j)
if(submatrix)
{
RSB_BZERO_P(submatrix);
}
RSB_DO_FLAG_DEL(mtxMp->flags, RSB_FLAG_WANT_BCSS_STORAGE);
RSB_DO_FLAG_DEL(mtxMp->flags, RSB_FLAG_USE_HALFWORD_INDICES);
RSB_DO_FLAG_ADD(mtxMp->flags, RSB_FLAG_WANT_COO_STORAGE);
mtxMp->matrix_storage = RSB_MATRIX_STORAGE_BCOR;
mtxMp->broff = broffM;
mtxMp->bcoff = bcoffM;
lst = -rsb_time();
{
int mo = 0, wp = 0;
#if RSB_AT_ALLOW_GETENV
if(getenv("RSB_MERGE_USRT"))
mo = rsb__util_atoi(getenv("RSB_MERGE_USRT"));
#endif /* RSB_AT_ALLOW_GETENV */
/* Note: we are inside a parallel outer loop: therefore here the sort algorithm can only be serial */
if(mo == 0)
{
errval += rsb__cor_merge(mtxMp->typecode, mtxMp->VA, mtxMp->bpntr, mtxMp->bindx, 0 , nzul, nzur, 1, wp, &tcoo);
RSB_ASSERT(!(RSB_SOME_ERROR(errval)));
errval += rsb__cor_merge(mtxMp->typecode, mtxMp->VA, mtxMp->bpntr, mtxMp->bindx, nzul+nzur, nzll, nzlr, 1, wp, &tcoo);
RSB_ASSERT(!(RSB_SOME_ERROR(errval)));
}
if(mo == 1)
{
struct rsb_mtx_t * mtxCp = mtxMp->sm[2];
// RSB_STDOUT("Merging of %p %p %p %p\n",mtxMp->sm[0],mtxMp->sm[1],mtxMp->sm[2],mtxMp->sm[3]);
/* in the below invocations, I've to use nr of M, not of the submatrices */
if( mtxMp->sm[0] && mtxMp->sm[1] )
{
rsb_nnz_idx_t nnzB = nzul + nzur;
rsb_coo_idx_t*IB = mtxMp->bpntr, *JB = mtxMp->bindx;
void * VB = mtxMp->VA;
errval = rsb__util_sort_row_major_inner(VB, IB, JB, nnzB,mtxMp->nr,mtxMp->nc,mtxMp->typecode,mtxMp->flags);
RSB_ASSERT(!(RSB_SOME_ERROR(errval)));
}
if( mtxMp->sm[2] && mtxMp->sm[3] )
{
rsb_nnz_idx_t nnzC = nzll + nzlr;
rsb_coo_idx_t*IC = mtxMp->bpntr + mtxCp->nzoff - mtxMp->nzoff,*JC = mtxMp->bindx + mtxCp->nzoff - mtxMp->nzoff;
void * VC = RSB_TYPED_OFF_PTR(mtxMp->typecode, mtxMp->VA, (mtxCp->nzoff-mtxMp->nzoff));
errval = rsb__util_sort_row_major_inner(VC, IC, JC, nnzC, mtxMp->nr, mtxMp->nc, mtxMp->typecode, mtxMp->flags);
RSB_ASSERT(!(RSB_SOME_ERROR(errval)));
}
}
if(mo >= 2)
{
errval = rsb__util_sort_row_major_inner(mtxMp->VA, mtxMp->bpntr, mtxMp->bindx, mtxMp->nnz, mtxMp->nr, mtxMp->nc, mtxMp->typecode, mtxMp->flags);
}
RSB_ASSERT(rsb__util_is_coo_array_sorted_up_partial_order(mtxMp->bpntr, mtxMp->nnz));
RSB_ASSERT(nzul+nzur+nzll+nzlr == mtxMp->nnz);
}
lst += rsb_time();
st += lst;
if(RSB_SOME_ERROR(errval))
{
RSB_PERR_GOTO(lerr, RSB_ERRM_ES);
}
RSB_REC_MARK_SUBM_FREE(mtxMp->sm[0]);
RSB_REC_MARK_SUBM_FREE(mtxMp->sm[1]);
RSB_REC_MARK_SUBM_FREE(mtxMp->sm[2]);
RSB_REC_MARK_SUBM_FREE(mtxMp->sm[3]);
if(!kc)
{
/* FIXME: shall implement a format selection policy right here */
rsb_fmt_t dms = RSB_MATRIX_STORAGE_BCOR;
rsb_flags_t flagsM = RSB_FLAG_USE_FULLWORD_INDICES;
if(RSB_INDICES_FIT_IN_HALFWORD(mtxMp->nr, mtxMp->nc))
flagsM = RSB_FLAG_USE_HALFWORD_INDICES;
if( mtxMp->nr+1 <= mtxMp->nnz )
dms = RSB_MATRIX_STORAGE_BCSR;
errval = rsb__do_switch_leaf(mtxMp, dms, flagsM, 0, 0, TA);
RSB_ASSERT(!(RSB_SOME_ERROR(errval)));
/* TODO: shall harmonize with rsb_do_switch_fresh_recursive_matrix_to_halfword_storages_parallel */
}
if(RSB_SOME_ERROR(errval))
{
/* TODO:error reporting is missing */
RSB_PERR_GOTO(lerr, RSB_ERRM_ES);
}
if(wv>3)
RSB_STDOUT("tmax in IA/JA: %ld/%ld.\n", (long int)rsb__util_find_coo_max_index_val(mtxMp->bpntr, mtxMp->nnz), (long int)rsb__util_find_coo_max_index_val(mtxMp->bindx, mtxMp->nnz) );
llt += rsb_time();
lt += llt;
mtxMp->est = lst;
mtxMp->tat = llt;
mtxMp->sat = llt - lst; /* TODO: this is to be completed */
#pragma omp critical (rsb__mtx_split_cr)
{
#if RSB_MERGE_USE_TMP_COOMTX
rsb__destroy_coo_matrix_t(&tcoo);
#else
RSB_CONDITIONAL_FREE(TA);
#endif /* RSB_MERGE_USE_TMP_COOMTX */
}
continue;
lerr:
RSB_NULL_STATEMENT_FOR_COMPILER_HAPPINESS
// goto done;
} /* smi */
errval = rsb__refresh_array_of_leaf_matrices(mtxAp);
if(RSB_SOME_ERROR(errval))
{
RSB_ERROR("Need code to recover the old (pre-merge) matrix here !\n"); /* FIXME */
/* Essentially, reorder the coefficients and restore the old order */
RSB_PERR_GOTO(cer,RSB_ERRM_ES);
}
RSB_DO_FLAG_DEL(mtxAp->flags, RSB_FLAG_NON_ROOT_MATRIX);
if(wv>vl)
/* RSB_STDOUT("Now: %2.3lf bpnz\n", ((double)rsb__get_index_storage_amount(mtxAp))/mtxAp->nnz), */
RSB_STDOUT("Now: "),
RSB_STDOUT(RSB_PRINTF_MATRIX_AT_SUMMARY_ARGS(mtxAp)),
RSB_STDOUT("\n");
#if RSB_STORE_IDXSA
mtxAp->idxsa = rsb__get_index_storage_amount(mtxAp);
#endif
}
mt += rsb_time();
nsap = mtxAp->all_leaf_matrices_n;
#if RSB_WANT_SSC
mtxAp->ssbc += (nsbp - nsap);
if(wv>1)
RSB_STDOUT("After merge has %ld spare subms.\n",(long int)mtxAp->ssbc);
#endif
RSB_ASSIGN_IF(stp, st)
RSB_ASSIGN_IF(atp, at)
RSB_ASSIGN_IF(ltp, lt)
if(wv>0)
RSB_STDOUT("Merge (%d -> %d leaves) took w.c.t. of %0.4lgs, ~%0.4lgs of computing time (of which %0.4lgs sorting, %0.4lgs analysis)\n", nsbp, nsap, mt, lt, st, at);
#if RSB_MERGE_IS_EXPERIMENTAL
if(! RSB_SOME_ERROR(errval) )
if(!rsb__mtx_chk(mtxAp))
{
errval = RSB_ERR_INTERNAL_ERROR;
RSB_PERR_GOTO(ret, RSB_ERRM_ES);
}
#endif
goto err;
cer:
RSB_ERROR("Critical Merge Error: cannot proceed. Merged matrix in inconsistent state !\n");
err:
rsb__mtx_list_free(&ml);
ret:
return errval;
} /* rsb__leaves_merge */
static rsb_err_t rsb__mtx_adjust_subm_ptrs(struct rsb_mtx_t *RSB_RESTRICT mtxCp, const struct rsb_mtx_t *RSB_RESTRICT mtxAp, rsb_long_t smc)
{
/*
* Adjusts pointers displacements in the matrix tree and in the pointers list.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
rsb_submatrix_idx_t smi;
rsb_submatrix_idx_t n,si;
for(n=0;n<smc;++n)
{
if(mtxCp[n].nnz) /* If valid. FIXME: IF NOT (E.G. MERGED), SHALL BE COMPLETELY ZEROED. */
for(si=0;si<RSB_FOUR;++si)
if(mtxCp[n].sm[si])
{
RSB_PTR_SHIFT( mtxCp[n].sm[si], mtxAp, mtxCp, (struct rsb_mtx_t*) );
/* RSB_STDOUT("%03d/%03d: %p\n",n,si,mtxCp[n].sm[si]); */
}
} /* n */
for( smi=0; smi < mtxCp->all_leaf_matrices_n; ++smi )
{
RSB_PTR_SHIFT( mtxCp->all_leaf_matrices[smi].mtxlp, mtxAp, mtxCp, (struct rsb_mtx_t*) );
}
return errval;
}
rsb_err_t rsb__mtx_realloc_with_spare_leaves(struct rsb_mtx_t **mtxApp, rsb_submatrix_idx_t slc)
{
/*
* Will return RSB_ERR_ENOMEM on failure, in which the matrix will stay unchanged.
* Once returned, shall fit (1 + rsb__submatrices_max_ptr_diff(*mtxApp) + slc) submatrices.
* TODO: Consider guaranteed preallocation in rsb__allocate_recursive_sparse_matrix_from_row_major_coo & co.
*/
rsb_err_t errval = RSB_ERR_NO_ERROR;
struct rsb_mtx_t *mtxAp = NULL;
rsb_submatrix_idx_t smc;
rsb_submatrix_idx_t smi;
if( slc <= 0 )
{
errval = RSB_ERR_BADARGS;
goto ret;
}
RSB_DEBUG_ASSERT( mtxApp);
RSB_DEBUG_ASSERT(*mtxApp);
smc = 1 + rsb__submatrices_max_ptr_diff(*mtxApp);
mtxAp = rsb__realloc(*mtxApp,sizeof(*mtxAp)*(smc+slc));
if(mtxAp == NULL)
{
errval = RSB_ERR_ENOMEM;
goto ret;
}
#if RSB_WANT_SSC
mtxAp->ssbc += slc;
if(RSB_MTX_REALLOC_IS_EXPERIMENTAL)
RSB_STDOUT("After realloc has %ld spare subms.\n",(long int)mtxAp->ssbc);
#endif
if(RSB_MTX_REALLOC_IS_EXPERIMENTAL)
RSB_STDOUT("in (%d -> %d) realloc, pointers of %d matrices might have to be readjusted: %p -> %p..%p (%+d bytes)\n",smc,slc,smc,(void*)(*mtxApp),(void*)mtxAp,(void*)(mtxAp+smc+slc),(int)((rsb_byte_t*)mtxAp-(rsb_byte_t*)*mtxApp));
//RSB_BZERO((mtxAp+smc),(sizeof(*mtxAp)*slc));
for (smi=smc;smi<smc+slc;++smi)
mtxAp[smi].flags = RSB_REC_FREE_SUBM_FLAG;
if( mtxAp == *mtxApp )
goto ret;
errval = rsb__mtx_adjust_subm_ptrs( mtxAp, *mtxApp, smc );
ret:
*mtxApp = mtxAp;
return errval;
} /* rsb__mtx_realloc_with_spare_leaves */
rsb_submatrix_idx_t rsb__get_diagonal_submatrices_count(const struct rsb_mtx_t *mtxAp)
{
/**
\ingroup gr_internals
\return count of submatrices laying on the diagonal, if the matrix is recursive. zero, otherwise.
*/
rsb_submatrix_idx_t i,j;
struct rsb_mtx_t * submatrix = NULL;
rsb_submatrix_idx_t dsc = 0;
RSB_DEBUG_ASSERT(mtxAp);
if(rsb__is_terminal_recursive_matrix(mtxAp))
{
dsc = 1;
}
else
{
RSB_SUBMATRIX_FOREACH(mtxAp,submatrix,i,j)
if( submatrix && i==j && RSB_SUBMATRIX_IS_ON_DIAG(submatrix) )
dsc += rsb__get_diagonal_submatrices_count(submatrix);
}
return dsc;
}
#ifdef RSB_OBSOLETE_QUARANTINE_UNUSED
rsb_err_t rsb__init_set_quad_submatrices_info(const struct rsb_mtx_partitioning_info_t * pinfop, struct rsb_mtx_t ** matrices, rsb_nnz_idx_t uuk, rsb_nnz_idx_t mk, rsb_nnz_idx_t uk, rsb_nnz_idx_t lk, rsb_nnz_idx_t llk, rsb_coo_idx_t mB, rsb_coo_idx_t kB, rsb_coo_idx_t roff, rsb_coo_idx_t coff)
{
/**
* \ingroup gr_internals
*
* */
rsb_submatrix_idx_t i,j,ij=0;
rsb_nnz_idx_t nzoff[RSB_FOUR+1]={uuk,uk,mk,lk,llk};
rsb_nnz_idx_t hnnz = 0;
rsb_err_t errval = RSB_ERR_NO_ERROR;
for(i=0;i<2;++i)
for(j=0;j<2;++j)
if((hnnz=nzoff[i*2+j+1]-nzoff[i*2+j])>0)
{
RSB_DEBUG_ASSERT(hnnz>0);
matrices[ij]->roff=i*mB+roff;
matrices[ij]->coff=j*kB+coff;
matrices[ij]->nr=i?pinfop->nr-mB:mB;
matrices[ij]->nc=j?pinfop->nc-kB:kB;
RSB_DEBUG_ASSERT(matrices[i*2+j]->nr>0);
RSB_DEBUG_ASSERT(matrices[i*2+j]->nc>0);
matrices[ij]->M_b=0;
matrices[ij]->K_b=0;
matrices[ij]->br=pinfop->br;
matrices[ij]->bc=pinfop->bc;
matrices[ij]->nnz=nzoff[i*2+j+1]-nzoff[i*2+j];
matrices[ij]->block_count=nzoff[i*2+j]; /* TODO:this is a hack. we will use block_count as first nnz index, in this function */
//RSB_INFO("+\n");
++ij;
}
else
;//RSB_INFO("-\n");
RSB_DO_ERR_RETURN(errval)
}
#endif /* RSB_OBSOLETE_QUARANTINE_UNUSED */
/* @endcond */
|