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
|
Gauss demo. Note that all transposes are array transposes,
not matrix (conjugate) transposes.
GraphBLAS Context: World
Context.nthreads: 32
Context.chunk: 65536
JIT configuration: ------------------
JIT C compiler: [/usr/bin/gcc]
JIT C flags: [ -Wundef -Wno-strict-aliasing -std=c11 -lm -Wno-pragmas -fexcess-precision=fast -fcx-limited-range -fno-math-errno -fwrapv -Wall -Wextra -Wpedantic -Werror -O3 -DNDEBUG -fPIC -fopenmp]
JIT C link flags: [ -shared ]
JIT C libraries: [ -lm -ldl -lgomp -lpthread]
JIT C preface: []
JIT cache: [/home/davis/.SuiteSparse/GrB10.0.0]
JIT C control: [4]
JIT C control: [4] reset
-------------------------------------
JIT C preface (revised):
// kernel generated by gauss_demo.c
#include <math.h>
[ GxB_Type_new (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__user_type__0__gauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/b4/GB_jit__user_type__0__gauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__user_type__0__gauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
[100%] Built target GB_jit__user_type__0__gauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/b4/libGB_jit__user_type__0__gauss.so
0.379 sec ]
GraphBLAS Type: BadGauss user-defined: [gauss] size: 4
typedef struct { int32_t real ; } gauss ;
jit: status 4
[ GxB_Type_new (jit: type changed) (jit: loaded but must recompile) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__user_type__0__gauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/b4/GB_jit__user_type__0__gauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__user_type__0__gauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
[100%] Built target GB_jit__user_type__0__gauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/ce2be202506bf1b4'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/b4/libGB_jit__user_type__0__gauss.so
0.346 sec ]
GraphBLAS Type: Gauss user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
[ GxB_Type_new
7.2e-06 sec ]
GraphBLAS Type: Gauss user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
JIT: off
JIT: on
jit: status 4
[ GxB_BinaryOp_new (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__user_op__0__addgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/1b/GB_jit__user_op__0__addgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__user_op__0__addgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
[100%] Built target GB_jit__user_op__0__addgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/1b/libGB_jit__user_op__0__addgauss.so
0.357 sec ]
GraphBLAS BinaryOp: BadAddGauss (user-defined): z=addgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void addgauss (gauss *z, const gauss *x, const gauss *y)
{
z->real = x->real + y->real ;
z->imag = -911 ;
}
[ GxB_BinaryOp_new (jit: op changed) (jit: loaded but must recompile) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__user_op__0__addgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/1b/GB_jit__user_op__0__addgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__user_op__0__addgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
[100%] Built target GB_jit__user_op__0__addgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/af7c00a52397011b'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/1b/libGB_jit__user_op__0__addgauss.so
0.395 sec ]
GraphBLAS BinaryOp: AddGauss (user-defined): z=addgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void addgauss (gauss *z, const gauss *x, const gauss *y)
{
z->real = x->real + y->real ;
z->imag = x->imag + y->imag ;
}
[ GxB_BinaryOp_new
2.53e-06 sec ]
GraphBLAS BinaryOp: AddGauss (user-defined): z=addgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void addgauss (gauss *z, const gauss *x, const gauss *y)
{
z->real = x->real + y->real ;
z->imag = x->imag + y->imag ;
}
JIT: off
JIT: on
jit: status 4
GraphBLAS Monoid: AddMonoid (user-defined):
GraphBLAS BinaryOp: monoid->op (user-defined): z=addgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void addgauss (gauss *z, const gauss *x, const gauss *y)
{
z->real = x->real + y->real ;
z->imag = x->imag + y->imag ;
}
identity: [ [user-defined value] ]
GraphBLAS BinaryOp: MultGauss (user-defined): z=multgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void multgauss (gauss *z, const gauss *x, const gauss *y)
{
int32_t zreal = x->real * y->real - x->imag * y->imag ;
int32_t zimag = x->real * y->imag + x->imag * y->real ;
z->real = zreal ;
z->imag = zimag ;
}
GraphBLAS Semiring: GaussSemiring (user-defined): (addgauss_multgauss)
GraphBLAS Monoid: semiring->add (user-defined):
GraphBLAS BinaryOp: monoid->op (user-defined): z=addgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void addgauss (gauss *z, const gauss *x, const gauss *y)
{
z->real = x->real + y->real ;
z->imag = x->imag + y->imag ;
}
identity: [ [user-defined value] ]
GraphBLAS BinaryOp: semiring->multiply (user-defined): z=multgauss(x,y)
GraphBLAS Type: ztype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
GraphBLAS Type: ytype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void multgauss (gauss *z, const gauss *x, const gauss *y)
{
int32_t zreal = x->real * y->real - x->imag * y->imag ;
int32_t zimag = x->real * y->imag + x->imag * y->real ;
z->real = zreal ;
z->imag = zimag ;
}
(convert ints 32/32 to 64/64, time: 1.23279e-05) (convert ints 32/32 to 64/64, time: 7.57165e-07) (iso wait:C (setElement:to non-iso) 0 zombies, 1 pending) (build 32/32 time: 1.2116e-05)
=============== Gauss A matrix:
size: 4-by-4
row 0: . ( 1, 1) ( 1, 0) ( 1, -1)
row 1: ( 2, 2) ( 2, 1) ( 2, 0) ( 2, -1)
row 2: ( 3, 2) ( 3, 1) ( 3, 0) ( 3, -1)
row 3: ( 4, 2) ( 4, 1) ( 4, 0) ( 4, -1)
[ GrB_reduce (A bitmap) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__reduce__10ee2__addgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/57/GB_jit__reduce__10ee2__addgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__reduce__10ee2__addgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
[100%] Built target GB_jit__reduce__10ee2__addgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/225c38640fc21857'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/57/libGB_jit__reduce__10ee2__addgauss.so
0.356 sec ]
sum (A) = (39,6)
[ GrB_mxm C=A*B, saxpy (B = B*B, anz: 15 bnz: 15) (bitmap saxpy) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__AxB_saxbit__0100eee0eee8a__addgauss_multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/c6/GB_jit__AxB_saxbit__0100eee0eee8a__addgauss_multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__AxB_saxbit__0100eee0eee8a__addgauss_multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
[100%] Built target GB_jit__AxB_saxbit__0100eee0eee8a__addgauss_multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/c9c3bcfb88e8c0c6'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/c6/libGB_jit__AxB_saxbit__0100eee0eee8a__addgauss_multgauss.so
(bitmap to full)
0.397 sec ]
=============== Gauss A = A^2 matrix:
size: 4-by-4
row 0: ( 9, 4) ( 9, 1) ( 9, -2) ( 9, -5)
row 1: ( 18, 10) ( 18, 8) ( 20, 0) ( 22, -8)
row 2: ( 27, 16) ( 28, 12) ( 30, 0) ( 32, -12)
row 3: ( 36, 22) ( 38, 16) ( 40, 0) ( 42, -16)
[ GrB_reduce (A full) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__reduce__10ee3__addgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/67/GB_jit__reduce__10ee3__addgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__reduce__10ee3__addgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
[100%] Built target GB_jit__reduce__10ee3__addgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/11676798b10dcc67'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/67/libGB_jit__reduce__10ee3__addgauss.so
0.378 sec ]
sum (A^2) = (387,46)
(convert ints 32/32 to 64/64, time: 1.19661e-05)
Gauss C empty matrix
size: 4-by-4
row 0: . . . .
row 1: . . . .
row 2: . . . .
row 3: . . . .
[ GrB_set (full to sparse)
1.72e-05 sec ]
[ GrB_set (hyper to sparse)
8.24e-06 sec ]
[ GrB_mxm (iso mask: struct) (iso wait:M 0 zombies, 4 pending) (iso build, 1 threads) (build 32/32 time: 1.3663e-05) (hyper to sparse) (convert ints 32/32 to 64/64, time: 4.87687e-06) C<M>=A'*B, masked_dot_product (dot3) (S{S} = Sf'*Sf) nthreads 1 ntasks 1 (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__AxB_dot3__0100eee2eee55__addgauss_multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/41/GB_jit__AxB_dot3__0100eee2eee55__addgauss_multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__AxB_dot3__0100eee2eee55__addgauss_multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
[100%] Built target GB_jit__AxB_dot3__0100eee2eee55__addgauss_multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/6682aa418beb7841'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/41/libGB_jit__AxB_dot3__0100eee2eee55__addgauss_multgauss.so
(sparse to bitmap)
0.361 sec ]
=============== Gauss C = diag(AA') matrix:
size: 4-by-4
row 0: ( 278, -36) . . .
row 1: . (1304, 296) . .
row 2: . . (2893, 768) .
row 3: . . . (5108,1456)
(convert ints 32/32 to 64/64, time: 5.23916e-06) [ GrB_set
8.04e-07 sec ]
[ GrB_set (hyper to sparse)
2.26e-06 sec ]
[ GrB_select (A dense)
2.5e-05 sec ]
Gauss D matrix
size: 4-by-4
row 0: ( 9, 4) . . .
row 1: . ( 18, 8) . .
row 2: . . ( 30, 0) .
row 3: . . . ( 42, -16)
[ GrB_mxm C=A*B, colscale (Sf=Sf*S) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__colscale__00080eee0eee45__multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/18/GB_jit__colscale__00080eee0eee45__multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__colscale__00080eee0eee45__multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
[100%] Built target GB_jit__colscale__00080eee0eee45__multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/5eb304f0fae2b218'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/18/libGB_jit__colscale__00080eee0eee45__multgauss.so
0.409 sec ]
=============== Gauss C = D*A matrix:
size: 4-by-4
row 0: ( 65, 72) ( 77, 45) ( 89, 18) ( 101, -9)
row 1: ( 244, 324) ( 260, 288) ( 360, 160) ( 460, 32)
row 2: ( 810, 480) ( 840, 360) ( 900, 0) ( 960,-360)
row 3: (1864, 348) (1852, 64) (1680,-640) (1508,-1344)
[ GrB_set
6.96e-07 sec ]
[ GrB_set (sparse to bitmap)
5.13e-06 sec ]
Gauss D matrix (bitmap)
size: 4-by-4
row 0: ( 9, 4) . . .
row 1: . ( 18, 8) . .
row 2: . . ( 30, 0) .
row 3: . . . ( 42, -16)
4x4 GraphBLAS gauss matrix, bitmap by row
sparsity control: bitmap only
D, 4 entries, memory: 376 bytes
(0,0) [user-defined value]
(1,1) [user-defined value]
(2,2) [user-defined value]
(3,3) [user-defined value]
[ GrB_set (bitmap to sparse)
6e-06 sec ]
Gauss D matrix (back to sparse)
size: 4-by-4
row 0: ( 9, 4) . . .
row 1: . ( 18, 8) . .
row 2: . . ( 30, 0) .
row 3: . . . ( 42, -16)
4x4 GraphBLAS gauss matrix, sparse by row, ints: 64/64
sparsity control: sparse only
D, 4 entries, memory: 336 bytes
(0,0) [user-defined value]
(1,1) [user-defined value]
(2,2) [user-defined value]
(3,3) [user-defined value]
[ GrB_mxm C=A*B, rowscale (Sf=S*Sf) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__rowscale__00080eee0eee45__multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/7f/GB_jit__rowscale__00080eee0eee45__multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__rowscale__00080eee0eee45__multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
[100%] Built target GB_jit__rowscale__00080eee0eee45__multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/4767bca8be22337f'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/7f/libGB_jit__rowscale__00080eee0eee45__multgauss.so
0.365 sec ]
=============== Gauss C = A*D matrix:
size: 4-by-4
row 0: ( 65, 72) ( 154, 90) ( 270, -60) ( 298,-354)
row 1: ( 122, 162) ( 260, 288) ( 600, 0) ( 796,-688)
row 2: ( 179, 252) ( 408, 440) ( 900, 0) (1152,-1016)
row 3: ( 236, 342) ( 556, 592) (1200, 0) (1508,-1344)
[ GrB_assign (C iso assign) (pending: 0) Method 21: (C full) = scalar
3.13e-05 sec ]
=============== Gauss C = (1,-2) matrix:
size: 4-by-4
row 0: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
row 1: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
row 2: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
row 3: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
=============== Gauss A matrix:
size: 4-by-4
row 0: ( 9, 4) ( 9, 1) ( 9, -2) ( 9, -5)
row 1: ( 18, 10) ( 18, 8) ( 20, 0) ( 22, -8)
row 2: ( 27, 16) ( 28, 12) ( 30, 0) ( 32, -12)
row 3: ( 36, 22) ( 38, 16) ( 40, 0) ( 42, -16)
[ GrB_mxm C=A'*B, dot_product (dot4: F += Sf'*Sf) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__AxB_dot4__0900eee0eeec5__addgauss_multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/54/GB_jit__AxB_dot4__0900eee0eeec5__addgauss_multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__AxB_dot4__0900eee0eeec5__addgauss_multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
[100%] Built target GB_jit__AxB_dot4__0900eee0eeec5__addgauss_multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/bd5099fe43e43654'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/54/libGB_jit__AxB_dot4__0900eee0eeec5__addgauss_multgauss.so
(C in place)
0.287 sec ]
=============== Gauss C += A*A' matrix:
size: 4-by-4
row 0: ( 279, -38) ( 615, 28) ( 918, 58) (1221, 88)
row 1: ( 615, 28) (1305, 294) (1943, 476) (2581, 658)
row 2: ( 918, 58) (1943, 476) (2894, 766) (3845,1056)
row 3: (1221, 88) (2581, 658) (3845,1056) (5109,1454)
(convert ints 32/32 to 64/64, time: 5.3891e-06) [ GrB_assign (C iso assign) (pending: 0) Method 21: (C full) = scalar
1.39e-05 sec ]
=============== Gauss B = (1,-2) matrix:
size: 4-by-4
row 0: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
row 1: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
row 2: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
row 3: ( 1, -2) ( 1, -2) ( 1, -2) ( 1, -2)
[ GrB_mxm C=A*B, saxpy (saxpy4: F += Sf*F) (coarse, threads: 1) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__AxB_saxpy4__0300eee0eeec7__addgauss_multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/f0/GB_jit__AxB_saxpy4__0300eee0eeec7__addgauss_multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__AxB_saxpy4__0300eee0eeec7__addgauss_multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
[100%] Built target GB_jit__AxB_saxpy4__0300eee0eeec7__addgauss_multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/561033c1482ca5f0'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/f0/libGB_jit__AxB_saxpy4__0300eee0eeec7__addgauss_multgauss.so
(C in place)
0.378 sec ]
=============== Gauss C += B*A:
size: 4-by-4
row 0: ( 473,-166) ( 782,-121) (1013,-142) (1244,-163)
row 1: ( 809,-100) (1472, 145) (2038, 276) (2604, 407)
row 2: (1112, -70) (2110, 327) (2989, 566) (3868, 805)
row 3: (1415, -40) (2748, 509) (3940, 856) (5132,1203)
[ GrB_mxm C=A*B, saxpy (saxpy5: F += F*Sf) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__AxB_saxpy5__0500eee0eeecd__addgauss_multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/3b/GB_jit__AxB_saxpy5__0500eee0eeecd__addgauss_multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__AxB_saxpy5__0500eee0eeecd__addgauss_multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
[100%] Built target GB_jit__AxB_saxpy5__0500eee0eeecd__addgauss_multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/b76aa5d3285c123b'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/3b/libGB_jit__AxB_saxpy5__0500eee0eeecd__addgauss_multgauss.so
(C in place)
0.369 sec ]
=============== Gauss C += A*B:
size: 4-by-4
row 0: ( 505,-240) ( 814,-195) (1045,-216) (1276,-237)
row 1: ( 907,-246) (1570, -1) (2136, 130) (2702, 261)
row 2: (1261,-288) (2259, 109) (3138, 348) (4017, 587)
row 3: (1615,-330) (2948, 219) (4140, 566) (5332, 913)
[ GrB_apply (shallow-op) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__apply_bind1st__00000eee0efec1__addgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/19/GB_jit__apply_bind1st__00000eee0efec1__addgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__apply_bind1st__00000eee0efec1__addgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
[100%] Built target GB_jit__apply_bind1st__00000eee0efec1__addgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/3b6448d781104419'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/19/libGB_jit__apply_bind1st__00000eee0efec1__addgauss.so
0.341 sec ]
=============== Gauss C = (1,-2) + A:
size: 4-by-4
row 0: ( 10, 2) ( 10, -1) ( 10, -4) ( 10, -7)
row 1: ( 19, 8) ( 19, 6) ( 21, -2) ( 23, -10)
row 2: ( 28, 14) ( 29, 10) ( 31, -2) ( 33, -14)
row 3: ( 37, 20) ( 39, 14) ( 41, -2) ( 43, -18)
[ GrB_apply (shallow-op) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__apply_bind2nd__00000eee0eefc4__multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/c9/GB_jit__apply_bind2nd__00000eee0eefc4__multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__apply_bind2nd__00000eee0eefc4__multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
[100%] Built target GB_jit__apply_bind2nd__00000eee0eefc4__multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/42813a1e14cb43c9'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/c9/libGB_jit__apply_bind2nd__00000eee0eefc4__multgauss.so
0.36 sec ]
=============== Gauss C = A*(1,-2):
size: 4-by-4
row 0: ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23)
row 1: ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52)
row 2: ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76)
row 3: ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100)
[ GrB_apply (transpose-op) (transpose) (1-thread bucket transpose) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__trans_bind2nd__00000eee0eef44__multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/d3/GB_jit__trans_bind2nd__00000eee0eef44__multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__trans_bind2nd__00000eee0eef44__multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
[100%] Built target GB_jit__trans_bind2nd__00000eee0eef44__multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/37d33aa629f415d3'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/d3/libGB_jit__trans_bind2nd__00000eee0eef44__multgauss.so
(full to sparse)
0.393 sec ]
=============== Gauss C = A'*(1,-2):
size: 4-by-4
row 0: ( 17, -14) ( 38, -26) ( 59, -38) ( 80, -50)
row 1: ( 11, -17) ( 34, -28) ( 52, -44) ( 70, -60)
row 2: ( 5, -20) ( 20, -40) ( 30, -60) ( 40, -80)
row 3: ( -1, -23) ( 6, -52) ( 8, -76) ( 10,-100)
[ GrB_apply (transpose-op) (transpose) (1-thread bucket transpose) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__trans_bind1st__00000eee0efe41__multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/d3/GB_jit__trans_bind1st__00000eee0efe41__multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__trans_bind1st__00000eee0efe41__multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
[100%] Built target GB_jit__trans_bind1st__00000eee0efe41__multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/07d1cb825d4304d3'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/d3/libGB_jit__trans_bind1st__00000eee0efe41__multgauss.so
(full to sparse)
0.361 sec ]
=============== Gauss C = (1,-2)*A':
size: 4-by-4
row 0: ( 17, -14) ( 38, -26) ( 59, -38) ( 80, -50)
row 1: ( 11, -17) ( 34, -28) ( 52, -44) ( 70, -60)
row 2: ( 5, -20) ( 20, -40) ( 30, -60) ( 40, -80)
row 3: ( -1, -23) ( 6, -52) ( 8, -76) ( 10,-100)
GraphBLAS UnaryOp: RealGauss (user-defined): z=realgauss(x)
GraphBLAS Type: ztype int32_t size: 4
GraphBLAS Type: xtype user-defined: [gauss] size: 8
typedef struct { int32_t real ; int32_t imag ; } gauss ;
void realgauss (int32_t *z, const gauss *x)
{
(*z) = x->real ;
}
(convert ints 32/32 to 64/64, time: 4.68502e-06) [ GrB_apply (shallow-op) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__apply_unop__040006e06ef__realgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/f6/GB_jit__apply_unop__040006e06ef__realgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__apply_unop__040006e06ef__realgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
[100%] Built target GB_jit__apply_unop__040006e06ef__realgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/2eb4c260aa6a3cf6'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/f6/libGB_jit__apply_unop__040006e06ef__realgauss.so
0.344 sec ]
4x4 GraphBLAS int32_t matrix, full by row
R, 16 entries, memory: 296 bytes
(0,0) 17
(0,1) 38
(0,2) 59
(0,3) 80
(1,0) 11
(1,1) 34
(1,2) 52
(1,3) 70
(2,0) 5
(2,1) 20
(2,2) 30
(2,3) 40
(3,0) -1
(3,1) 6
(3,2) 8
(3,3) 10
=============== R = RealGauss (C')
size: 4-by-4
row 0: ( 17, -14) ( 38, -26) ( 59, -38) ( 80, -50)
row 1: ( 11, -17) ( 34, -28) ( 52, -44) ( 70, -60)
row 2: ( 5, -20) ( 20, -40) ( 30, -60) ( 40, -80)
row 3: ( -1, -23) ( 6, -52) ( 8, -76) ( 10,-100)
[ GrB_apply (transpose-op) (transpose) (bitmap/full transpose) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__trans_unop__048006e06ef__realgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/bf/GB_jit__trans_unop__048006e06ef__realgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__trans_unop__048006e06ef__realgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
[100%] Built target GB_jit__trans_unop__048006e06ef__realgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/a59f0f91c7c71dbf'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/bf/libGB_jit__trans_unop__048006e06ef__realgauss.so
0.341 sec ]
4x4 GraphBLAS int32_t matrix, full by row
R, 16 entries, memory: 296 bytes
(0,0) 17
(0,1) 11
(0,2) 5
(0,3) -1
(1,0) 38
(1,1) 34
(1,2) 20
(1,3) 6
(2,0) 59
(2,1) 52
(2,2) 30
(2,3) 8
(3,0) 80
(3,1) 70
(3,2) 40
(3,3) 10
(convert ints 32/32 to 64/64, time: 2.66312e-06)
=============== C
size: 4-by-4
row 0: ( 17, -14) ( 38, -26) ( 59, -38) ( 80, -50)
row 1: ( 11, -17) ( 34, -28) ( 52, -44) ( 70, -60)
row 2: ( 5, -20) ( 20, -40) ( 30, -60) ( 40, -80)
row 3: ( -1, -23) ( 6, -52) ( 8, -76) ( 10,-100)
[ GrB_apply (shallow-op) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__apply_unop__047fe8ee8ef__ijgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/c4/GB_jit__apply_unop__047fe8ee8ef__ijgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__apply_unop__047fe8ee8ef__ijgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
[100%] Built target GB_jit__apply_unop__047fe8ee8ef__ijgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/da95801438e113c4'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/c4/libGB_jit__apply_unop__047fe8ee8ef__ijgauss.so
0.35 sec ]
R = ijgauss (C)
4x4 GraphBLAS int64_t matrix, full by row
R, 16 entries, memory: 360 bytes
(0,0) 18
(0,1) 38
(0,2) 58
(0,3) 78
(1,0) 13
(1,1) 35
(1,2) 52
(1,3) 69
(2,0) 8
(2,1) 22
(2,2) 31
(2,3) 40
(3,0) 3
(3,1) 9
(3,2) 10
(3,3) 11
[ GrB_Matrix_extractTuples_FP64 (A full)
3.28e-05 sec ]
R (0,0) = 18
R (0,1) = 38
R (0,2) = 58
R (0,3) = 78
R (1,0) = 13
R (1,1) = 35
R (1,2) = 52
R (1,3) = 69
R (2,0) = 8
R (2,1) = 22
R (2,2) = 31
R (2,3) = 40
R (3,0) = 3
R (3,1) = 9
R (3,2) = 10
R (3,3) = 11
=============== C
size: 4-by-4
row 0: ( 17, -14) ( 38, -26) ( 59, -38) ( 80, -50)
row 1: ( 11, -17) ( 34, -28) ( 52, -44) ( 70, -60)
row 2: ( 5, -20) ( 20, -40) ( 30, -60) ( 40, -80)
row 3: ( -1, -23) ( 6, -52) ( 8, -76) ( 10,-100)
[ GrB_transpose (transpose) (bitmap/full transpose) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__trans_unop__04802ee0eef__gauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/0d/GB_jit__trans_unop__04802ee0eef__gauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__trans_unop__04802ee0eef__gauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
[100%] Built target GB_jit__trans_unop__04802ee0eef__gauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/238f3ddc4a66790d'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/0d/libGB_jit__trans_unop__04802ee0eef__gauss.so
0.335 sec ]
=============== C = C'
size: 4-by-4
row 0: ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23)
row 1: ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52)
row 2: ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76)
row 3: ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100)
(convert ints 32/32 to 64/64, time: 7.15395e-06) (convert ints 32/32 to 64/64, time: 3.12226e-06) [ GrB_set (in-place transpose) (transpose)
1.63e-05 sec ]
[ GxB_Matrix_concat (sparse concat) (transpose) (bitmap/full transpose) (transpose) (transpose) (1-thread bucket transpose) (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__trans_unop__04802ee0ee5__gauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/da/GB_jit__trans_unop__04802ee0ee5__gauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__trans_unop__04802ee0ee5__gauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
[100%] Built target GB_jit__trans_unop__04802ee0ee5__gauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/09d7fc73177577da'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/da/libGB_jit__trans_unop__04802ee0ee5__gauss.so
(transpose) (1-thread bucket transpose) (transpose) (transpose) (bitmap/full transpose)
0.372 sec ]
=============== Z = [C D ; E E ; D C]
size: 256-by-8
row 0: ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23) ( 9, 4) . . .
row 1: ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52) . ( 18, 8) . .
row 2: ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76) . . ( 30, 0) .
row 3: ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100) . . . ( 42, -16)
row 4: . . . . . . . .
row 5: . . . . . . . .
row 6: . . . . . . . .
row 7: . . . . . . . .
row 8: . . . . . . . .
row 9: . . . . . . . .
row 10: . . . . . . . .
row 11: . . . . . . . .
row 12: . . . . . . . .
row 13: . . . . . . . .
row 14: . . . . . . . .
row 15: . . . . . . . .
row 16: . . . . . . . .
row 17: . . . . . . . .
row 18: . . . . . . . .
row 19: . . . . . . . .
row 20: . . . . . . . .
row 21: . . . . . . . .
row 22: . . . . . . . .
row 23: . . . . . . . .
row 24: . . . . . . . .
row 25: . . . . . . . .
row 26: . . . . . . . .
row 27: . . . . . . . .
row 28: . . . . . . . .
row 29: . . . . . . . .
row 30: . . . . . . . .
row 31: . . . . . . . .
row 32: . . . . . . . .
row 33: . . . . . . . .
row 34: . . . . . . . .
row 35: . . . . . . . .
row 36: . . . . . . . .
row 37: . . . . . . . .
row 38: . . . . . . . .
row 39: . . . . . . . .
row 40: . . . . . . . .
row 41: . . . . . . . .
row 42: . . . . . . . .
row 43: . . . . . . . .
row 44: . . . . . . . .
row 45: . . . . . . . .
row 46: . . . . . . . .
row 47: . . . . . . . .
row 48: . . . . . . . .
row 49: . . . . . . . .
row 50: . . . . . . . .
row 51: . . . . . . . .
row 52: . . . . . . . .
row 53: . . . . . . . .
row 54: . . . . . . . .
row 55: . . . . . . . .
row 56: . . . . . . . .
row 57: . . . . . . . .
row 58: . . . . . . . .
row 59: . . . . . . . .
row 60: . . . . . . . .
row 61: . . . . . . . .
row 62: . . . . . . . .
row 63: . . . . . . . .
row 64: . . . . . . . .
row 65: . . . . . . . .
row 66: . . . . . . . .
row 67: . . . . . . . .
row 68: . . . . . . . .
row 69: . . . . . . . .
row 70: . . . . . . . .
row 71: . . . . . . . .
row 72: . . . . . . . .
row 73: . . . . . . . .
row 74: . . . . . . . .
row 75: . . . . . . . .
row 76: . . . . . . . .
row 77: . . . . . . . .
row 78: . . . . . . . .
row 79: . . . . . . . .
row 80: . . . . . . . .
row 81: . . . . . . . .
row 82: . . . . . . . .
row 83: . . . . . . . .
row 84: . . . . . . . .
row 85: . . . . . . . .
row 86: . . . . . . . .
row 87: . . . . . . . .
row 88: . . . . . . . .
row 89: . . . . . . . .
row 90: . . . . . . . .
row 91: . . . . . . . .
row 92: . . . . . . . .
row 93: . . . . . . . .
row 94: . . . . . . . .
row 95: . . . . . . . .
row 96: . . . . . . . .
row 97: . . . . . . . .
row 98: . . . . . . . .
row 99: . . . . . . . .
row 100: . . . . . . . .
row 101: . . . . . . . .
row 102: . . . . . . . .
row 103: . . . . . . . .
row 104: . . . . . . . .
row 105: . . . . . . . .
row 106: . . . . . . . .
row 107: . . . . . . . .
row 108: . . . . . . . .
row 109: . . . . . . . .
row 110: . . . . . . . .
row 111: . . . . . . . .
row 112: . . . . . . . .
row 113: . . . . . . . .
row 114: . . . . . . . .
row 115: . . . . . . . .
row 116: . . . . . . . .
row 117: . . . . . . . .
row 118: . . . . . . . .
row 119: . . . . . . . .
row 120: . . . . . . . .
row 121: . . . . . . . .
row 122: . . . . . . . .
row 123: . . . . . . . .
row 124: . . . . . . . .
row 125: . . . . . . . .
row 126: . . . . . . . .
row 127: . . . . . . . .
row 128: . . . . . . . .
row 129: . . . . . . . .
row 130: . . . . . . . .
row 131: . . . . . . . .
row 132: . . . . . . . .
row 133: . . . . . . . .
row 134: . . . . . . . .
row 135: . . . . . . . .
row 136: . . . . . . . .
row 137: . . . . . . . .
row 138: . . . . . . . .
row 139: . . . . . . . .
row 140: . . . . . . . .
row 141: . . . . . . . .
row 142: . . . . . . . .
row 143: . . . . . . . .
row 144: . . . . . . . .
row 145: . . . . . . . .
row 146: . . . . . . . .
row 147: . . . . . . . .
row 148: . . . . . . . .
row 149: . . . . . . . .
row 150: . . . . . . . .
row 151: . . . . . . . .
row 152: . . . . . . . .
row 153: . . . . . . . .
row 154: . . . . . . . .
row 155: . . . . . . . .
row 156: . . . . . . . .
row 157: . . . . . . . .
row 158: . . . . . . . .
row 159: . . . . . . . .
row 160: . . . . . . . .
row 161: . . . . . . . .
row 162: . . . . . . . .
row 163: . . . . . . . .
row 164: . . . . . . . .
row 165: . . . . . . . .
row 166: . . . . . . . .
row 167: . . . . . . . .
row 168: . . . . . . . .
row 169: . . . . . . . .
row 170: . . . . . . . .
row 171: . . . . . . . .
row 172: . . . . . . . .
row 173: . . . . . . . .
row 174: . . . . . . . .
row 175: . . . . . . . .
row 176: . . . . . . . .
row 177: . . . . . . . .
row 178: . . . . . . . .
row 179: . . . . . . . .
row 180: . . . . . . . .
row 181: . . . . . . . .
row 182: . . . . . . . .
row 183: . . . . . . . .
row 184: . . . . . . . .
row 185: . . . . . . . .
row 186: . . . . . . . .
row 187: . . . . . . . .
row 188: . . . . . . . .
row 189: . . . . . . . .
row 190: . . . . . . . .
row 191: . . . . . . . .
row 192: . . . . . . . .
row 193: . . . . . . . .
row 194: . . . . . . . .
row 195: . . . . . . . .
row 196: . . . . . . . .
row 197: . . . . . . . .
row 198: . . . . . . . .
row 199: . . . . . . . .
row 200: . . . . . . . .
row 201: . . . . . . . .
row 202: . . . . . . . .
row 203: . . . . . . . .
row 204: . . . . . . . .
row 205: . . . . . . . .
row 206: . . . . . . . .
row 207: . . . . . . . .
row 208: . . . . . . . .
row 209: . . . . . . . .
row 210: . . . . . . . .
row 211: . . . . . . . .
row 212: . . . . . . . .
row 213: . . . . . . . .
row 214: . . . . . . . .
row 215: . . . . . . . .
row 216: . . . . . . . .
row 217: . . . . . . . .
row 218: . . . . . . . .
row 219: . . . . . . . .
row 220: . . . . . . . .
row 221: . . . . . . . .
row 222: . . . . . . . .
row 223: . . . . . . . .
row 224: . . . . . . . .
row 225: . . . . . . . .
row 226: . . . . . . . .
row 227: . . . . . . . .
row 228: . . . . . . . .
row 229: . . . . . . . .
row 230: . . . . . . . .
row 231: . . . . . . . .
row 232: . . . . . . . .
row 233: . . . . . . . .
row 234: . . . . . . . .
row 235: . . . . . . . .
row 236: . . . . . . . .
row 237: . . . . . . . .
row 238: . . . . . . . .
row 239: . . . . . . . .
row 240: . . . . . . . .
row 241: . . . . . . . .
row 242: . . . . . . . .
row 243: . . . . . . . .
row 244: . . . . . . . .
row 245: . . . . . . . .
row 246: . . . . . . . .
row 247: . . . . . . . .
row 248: . . . . . . . .
row 249: . . . . . . . .
row 250: . . . . . . . .
row 251: . . . . . . . .
row 252: ( 9, 4) . . . ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23)
row 253: . ( 18, 8) . . ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52)
row 254: . . ( 30, 0) . ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76)
row 255: . . . ( 42, -16) ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100)
256x8 GraphBLAS gauss matrix, sparse by col, ints: 64/64
Z, 40 entries, memory: 944 bytes
(0,0) [user-defined value]
(1,0) [user-defined value]
(2,0) [user-defined value]
(3,0) [user-defined value]
(252,0) [user-defined value]
(0,1) [user-defined value]
(1,1) [user-defined value]
(2,1) [user-defined value]
(3,1) [user-defined value]
(253,1) [user-defined value]
(0,2) [user-defined value]
(1,2) [user-defined value]
(2,2) [user-defined value]
(3,2) [user-defined value]
(254,2) [user-defined value]
(0,3) [user-defined value]
(1,3) [user-defined value]
(2,3) [user-defined value]
(3,3) [user-defined value]
(255,3) [user-defined value]
(0,4) [user-defined value]
(252,4) [user-defined value]
(253,4) [user-defined value]
(254,4) [user-defined value]
(255,4) [user-defined value]
(1,5) [user-defined value]
(252,5) [user-defined value]
(253,5) [user-defined value]
(254,5) [user-defined value]
(255,5) [user-defined value]
(2,6) [user-defined value]
(252,6) [user-defined value]
(253,6) [user-defined value]
(254,6) [user-defined value]
(255,6) [user-defined value]
(3,7) [user-defined value]
(252,7) [user-defined value]
(253,7) [user-defined value]
(254,7) [user-defined value]
(255,7) [user-defined value]
[ GxB_Matrix_split (sparse/hyper split)
1.97e-05 sec ]
=============== C Tile from Z:
size: 128-by-3
row 0: ( 17, -14) ( 11, -17) ( 5, -20)
row 1: ( 38, -26) ( 34, -28) ( 20, -40)
row 2: ( 59, -38) ( 52, -44) ( 30, -60)
row 3: ( 80, -50) ( 70, -60) ( 40, -80)
row 4: . . .
row 5: . . .
row 6: . . .
row 7: . . .
row 8: . . .
row 9: . . .
row 10: . . .
row 11: . . .
row 12: . . .
row 13: . . .
row 14: . . .
row 15: . . .
row 16: . . .
row 17: . . .
row 18: . . .
row 19: . . .
row 20: . . .
row 21: . . .
row 22: . . .
row 23: . . .
row 24: . . .
row 25: . . .
row 26: . . .
row 27: . . .
row 28: . . .
row 29: . . .
row 30: . . .
row 31: . . .
row 32: . . .
row 33: . . .
row 34: . . .
row 35: . . .
row 36: . . .
row 37: . . .
row 38: . . .
row 39: . . .
row 40: . . .
row 41: . . .
row 42: . . .
row 43: . . .
row 44: . . .
row 45: . . .
row 46: . . .
row 47: . . .
row 48: . . .
row 49: . . .
row 50: . . .
row 51: . . .
row 52: . . .
row 53: . . .
row 54: . . .
row 55: . . .
row 56: . . .
row 57: . . .
row 58: . . .
row 59: . . .
row 60: . . .
row 61: . . .
row 62: . . .
row 63: . . .
row 64: . . .
row 65: . . .
row 66: . . .
row 67: . . .
row 68: . . .
row 69: . . .
row 70: . . .
row 71: . . .
row 72: . . .
row 73: . . .
row 74: . . .
row 75: . . .
row 76: . . .
row 77: . . .
row 78: . . .
row 79: . . .
row 80: . . .
row 81: . . .
row 82: . . .
row 83: . . .
row 84: . . .
row 85: . . .
row 86: . . .
row 87: . . .
row 88: . . .
row 89: . . .
row 90: . . .
row 91: . . .
row 92: . . .
row 93: . . .
row 94: . . .
row 95: . . .
row 96: . . .
row 97: . . .
row 98: . . .
row 99: . . .
row 100: . . .
row 101: . . .
row 102: . . .
row 103: . . .
row 104: . . .
row 105: . . .
row 106: . . .
row 107: . . .
row 108: . . .
row 109: . . .
row 110: . . .
row 111: . . .
row 112: . . .
row 113: . . .
row 114: . . .
row 115: . . .
row 116: . . .
row 117: . . .
row 118: . . .
row 119: . . .
row 120: . . .
row 121: . . .
row 122: . . .
row 123: . . .
row 124: . . .
row 125: . . .
row 126: . . .
row 127: . . .
128x3 GraphBLAS gauss matrix, sparse by col, ints: 64/64
CTiles [k], 12 entries, memory: 456 bytes
(0,0) [user-defined value]
(1,0) [user-defined value]
(2,0) [user-defined value]
(3,0) [user-defined value]
(0,1) [user-defined value]
(1,1) [user-defined value]
(2,1) [user-defined value]
(3,1) [user-defined value]
(0,2) [user-defined value]
(1,2) [user-defined value]
(2,2) [user-defined value]
(3,2) [user-defined value]
=============== C Tile from Z:
size: 128-by-5
row 0: ( -1, -23) ( 9, 4) . . .
row 1: ( 6, -52) . ( 18, 8) . .
row 2: ( 8, -76) . . ( 30, 0) .
row 3: ( 10,-100) . . . ( 42, -16)
row 4: . . . . .
row 5: . . . . .
row 6: . . . . .
row 7: . . . . .
row 8: . . . . .
row 9: . . . . .
row 10: . . . . .
row 11: . . . . .
row 12: . . . . .
row 13: . . . . .
row 14: . . . . .
row 15: . . . . .
row 16: . . . . .
row 17: . . . . .
row 18: . . . . .
row 19: . . . . .
row 20: . . . . .
row 21: . . . . .
row 22: . . . . .
row 23: . . . . .
row 24: . . . . .
row 25: . . . . .
row 26: . . . . .
row 27: . . . . .
row 28: . . . . .
row 29: . . . . .
row 30: . . . . .
row 31: . . . . .
row 32: . . . . .
row 33: . . . . .
row 34: . . . . .
row 35: . . . . .
row 36: . . . . .
row 37: . . . . .
row 38: . . . . .
row 39: . . . . .
row 40: . . . . .
row 41: . . . . .
row 42: . . . . .
row 43: . . . . .
row 44: . . . . .
row 45: . . . . .
row 46: . . . . .
row 47: . . . . .
row 48: . . . . .
row 49: . . . . .
row 50: . . . . .
row 51: . . . . .
row 52: . . . . .
row 53: . . . . .
row 54: . . . . .
row 55: . . . . .
row 56: . . . . .
row 57: . . . . .
row 58: . . . . .
row 59: . . . . .
row 60: . . . . .
row 61: . . . . .
row 62: . . . . .
row 63: . . . . .
row 64: . . . . .
row 65: . . . . .
row 66: . . . . .
row 67: . . . . .
row 68: . . . . .
row 69: . . . . .
row 70: . . . . .
row 71: . . . . .
row 72: . . . . .
row 73: . . . . .
row 74: . . . . .
row 75: . . . . .
row 76: . . . . .
row 77: . . . . .
row 78: . . . . .
row 79: . . . . .
row 80: . . . . .
row 81: . . . . .
row 82: . . . . .
row 83: . . . . .
row 84: . . . . .
row 85: . . . . .
row 86: . . . . .
row 87: . . . . .
row 88: . . . . .
row 89: . . . . .
row 90: . . . . .
row 91: . . . . .
row 92: . . . . .
row 93: . . . . .
row 94: . . . . .
row 95: . . . . .
row 96: . . . . .
row 97: . . . . .
row 98: . . . . .
row 99: . . . . .
row 100: . . . . .
row 101: . . . . .
row 102: . . . . .
row 103: . . . . .
row 104: . . . . .
row 105: . . . . .
row 106: . . . . .
row 107: . . . . .
row 108: . . . . .
row 109: . . . . .
row 110: . . . . .
row 111: . . . . .
row 112: . . . . .
row 113: . . . . .
row 114: . . . . .
row 115: . . . . .
row 116: . . . . .
row 117: . . . . .
row 118: . . . . .
row 119: . . . . .
row 120: . . . . .
row 121: . . . . .
row 122: . . . . .
row 123: . . . . .
row 124: . . . . .
row 125: . . . . .
row 126: . . . . .
row 127: . . . . .
128x5 GraphBLAS gauss matrix, sparse by col, ints: 64/64
CTiles [k], 8 entries, memory: 408 bytes
(0,0) [user-defined value]
(1,0) [user-defined value]
(2,0) [user-defined value]
(3,0) [user-defined value]
(0,1) [user-defined value]
(1,2) [user-defined value]
(2,3) [user-defined value]
(3,4) [user-defined value]
=============== C Tile from Z:
size: 128-by-3
row 0: . . .
row 1: . . .
row 2: . . .
row 3: . . .
row 4: . . .
row 5: . . .
row 6: . . .
row 7: . . .
row 8: . . .
row 9: . . .
row 10: . . .
row 11: . . .
row 12: . . .
row 13: . . .
row 14: . . .
row 15: . . .
row 16: . . .
row 17: . . .
row 18: . . .
row 19: . . .
row 20: . . .
row 21: . . .
row 22: . . .
row 23: . . .
row 24: . . .
row 25: . . .
row 26: . . .
row 27: . . .
row 28: . . .
row 29: . . .
row 30: . . .
row 31: . . .
row 32: . . .
row 33: . . .
row 34: . . .
row 35: . . .
row 36: . . .
row 37: . . .
row 38: . . .
row 39: . . .
row 40: . . .
row 41: . . .
row 42: . . .
row 43: . . .
row 44: . . .
row 45: . . .
row 46: . . .
row 47: . . .
row 48: . . .
row 49: . . .
row 50: . . .
row 51: . . .
row 52: . . .
row 53: . . .
row 54: . . .
row 55: . . .
row 56: . . .
row 57: . . .
row 58: . . .
row 59: . . .
row 60: . . .
row 61: . . .
row 62: . . .
row 63: . . .
row 64: . . .
row 65: . . .
row 66: . . .
row 67: . . .
row 68: . . .
row 69: . . .
row 70: . . .
row 71: . . .
row 72: . . .
row 73: . . .
row 74: . . .
row 75: . . .
row 76: . . .
row 77: . . .
row 78: . . .
row 79: . . .
row 80: . . .
row 81: . . .
row 82: . . .
row 83: . . .
row 84: . . .
row 85: . . .
row 86: . . .
row 87: . . .
row 88: . . .
row 89: . . .
row 90: . . .
row 91: . . .
row 92: . . .
row 93: . . .
row 94: . . .
row 95: . . .
row 96: . . .
row 97: . . .
row 98: . . .
row 99: . . .
row 100: . . .
row 101: . . .
row 102: . . .
row 103: . . .
row 104: . . .
row 105: . . .
row 106: . . .
row 107: . . .
row 108: . . .
row 109: . . .
row 110: . . .
row 111: . . .
row 112: . . .
row 113: . . .
row 114: . . .
row 115: . . .
row 116: . . .
row 117: . . .
row 118: . . .
row 119: . . .
row 120: . . .
row 121: . . .
row 122: . . .
row 123: . . .
row 124: ( 9, 4) . .
row 125: . ( 18, 8) .
row 126: . . ( 30, 0)
row 127: . . .
128x3 GraphBLAS gauss matrix, sparse by col, ints: 64/64
CTiles [k], 3 entries, memory: 312 bytes
(124,0) [user-defined value]
(125,1) [user-defined value]
(126,2) [user-defined value]
=============== C Tile from Z:
size: 128-by-5
row 0: . . . . .
row 1: . . . . .
row 2: . . . . .
row 3: . . . . .
row 4: . . . . .
row 5: . . . . .
row 6: . . . . .
row 7: . . . . .
row 8: . . . . .
row 9: . . . . .
row 10: . . . . .
row 11: . . . . .
row 12: . . . . .
row 13: . . . . .
row 14: . . . . .
row 15: . . . . .
row 16: . . . . .
row 17: . . . . .
row 18: . . . . .
row 19: . . . . .
row 20: . . . . .
row 21: . . . . .
row 22: . . . . .
row 23: . . . . .
row 24: . . . . .
row 25: . . . . .
row 26: . . . . .
row 27: . . . . .
row 28: . . . . .
row 29: . . . . .
row 30: . . . . .
row 31: . . . . .
row 32: . . . . .
row 33: . . . . .
row 34: . . . . .
row 35: . . . . .
row 36: . . . . .
row 37: . . . . .
row 38: . . . . .
row 39: . . . . .
row 40: . . . . .
row 41: . . . . .
row 42: . . . . .
row 43: . . . . .
row 44: . . . . .
row 45: . . . . .
row 46: . . . . .
row 47: . . . . .
row 48: . . . . .
row 49: . . . . .
row 50: . . . . .
row 51: . . . . .
row 52: . . . . .
row 53: . . . . .
row 54: . . . . .
row 55: . . . . .
row 56: . . . . .
row 57: . . . . .
row 58: . . . . .
row 59: . . . . .
row 60: . . . . .
row 61: . . . . .
row 62: . . . . .
row 63: . . . . .
row 64: . . . . .
row 65: . . . . .
row 66: . . . . .
row 67: . . . . .
row 68: . . . . .
row 69: . . . . .
row 70: . . . . .
row 71: . . . . .
row 72: . . . . .
row 73: . . . . .
row 74: . . . . .
row 75: . . . . .
row 76: . . . . .
row 77: . . . . .
row 78: . . . . .
row 79: . . . . .
row 80: . . . . .
row 81: . . . . .
row 82: . . . . .
row 83: . . . . .
row 84: . . . . .
row 85: . . . . .
row 86: . . . . .
row 87: . . . . .
row 88: . . . . .
row 89: . . . . .
row 90: . . . . .
row 91: . . . . .
row 92: . . . . .
row 93: . . . . .
row 94: . . . . .
row 95: . . . . .
row 96: . . . . .
row 97: . . . . .
row 98: . . . . .
row 99: . . . . .
row 100: . . . . .
row 101: . . . . .
row 102: . . . . .
row 103: . . . . .
row 104: . . . . .
row 105: . . . . .
row 106: . . . . .
row 107: . . . . .
row 108: . . . . .
row 109: . . . . .
row 110: . . . . .
row 111: . . . . .
row 112: . . . . .
row 113: . . . . .
row 114: . . . . .
row 115: . . . . .
row 116: . . . . .
row 117: . . . . .
row 118: . . . . .
row 119: . . . . .
row 120: . . . . .
row 121: . . . . .
row 122: . . . . .
row 123: . . . . .
row 124: . ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23)
row 125: . ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52)
row 126: . ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76)
row 127: ( 42, -16) ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100)
128x5 GraphBLAS gauss matrix, sparse by col, ints: 64/64
CTiles [k], 17 entries, memory: 552 bytes
(127,0) [user-defined value]
(124,1) [user-defined value]
(125,1) [user-defined value]
(126,1) [user-defined value]
(127,1) [user-defined value]
(124,2) [user-defined value]
(125,2) [user-defined value]
(126,2) [user-defined value]
(127,2) [user-defined value]
(124,3) [user-defined value]
(125,3) [user-defined value]
(126,3) [user-defined value]
(127,3) [user-defined value]
(124,4) [user-defined value]
(125,4) [user-defined value]
(126,4) [user-defined value]
(127,4) [user-defined value]
(convert ints 32/32 to 64/64, time: 3.35369e-06) (convert ints 32/32 to 64/64, time: 1.28709e-06) [ GrB_set (in-place transpose) (transpose)
2.93e-06 sec ]
[ GxB_Matrix_concat (bitmap concat) (transpose) (bitmap/full transpose) (transpose) (transpose) (1-thread bucket transpose) (transpose) (1-thread bucket transpose) (transpose) (transpose) (bitmap/full transpose)
2.59e-05 sec ]
=============== Z = [C D ; E E ; D C]
size: 16-by-8
row 0: ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23) ( 9, 4) . . .
row 1: ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52) . ( 18, 8) . .
row 2: ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76) . . ( 30, 0) .
row 3: ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100) . . . ( 42, -16)
row 4: . . . . . . . .
row 5: . . . . . . . .
row 6: . . . . . . . .
row 7: . . . . . . . .
row 8: . . . . . . . .
row 9: . . . . . . . .
row 10: . . . . . . . .
row 11: . . . . . . . .
row 12: ( 9, 4) . . . ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23)
row 13: . ( 18, 8) . . ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52)
row 14: . . ( 30, 0) . ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76)
row 15: . . . ( 42, -16) ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100)
16x8 GraphBLAS gauss matrix, bitmap by col
Z, 40 entries, memory: 1.4 KB
(0,0) [user-defined value]
(1,0) [user-defined value]
(2,0) [user-defined value]
(3,0) [user-defined value]
(12,0) [user-defined value]
(0,1) [user-defined value]
(1,1) [user-defined value]
(2,1) [user-defined value]
(3,1) [user-defined value]
(13,1) [user-defined value]
(0,2) [user-defined value]
(1,2) [user-defined value]
(2,2) [user-defined value]
(3,2) [user-defined value]
(14,2) [user-defined value]
(0,3) [user-defined value]
(1,3) [user-defined value]
(2,3) [user-defined value]
(3,3) [user-defined value]
(15,3) [user-defined value]
(0,4) [user-defined value]
(12,4) [user-defined value]
(13,4) [user-defined value]
(14,4) [user-defined value]
(15,4) [user-defined value]
(1,5) [user-defined value]
(12,5) [user-defined value]
(13,5) [user-defined value]
(14,5) [user-defined value]
(15,5) [user-defined value]
(2,6) [user-defined value]
(12,6) [user-defined value]
(13,6) [user-defined value]
(14,6) [user-defined value]
(15,6) [user-defined value]
(3,7) [user-defined value]
(12,7) [user-defined value]
(13,7) [user-defined value]
(14,7) [user-defined value]
(15,7) [user-defined value]
[ GxB_Matrix_split (bitmap split)
7.23e-06 sec ]
=============== C Tile from Z:
size: 8-by-3
row 0: ( 17, -14) ( 11, -17) ( 5, -20)
row 1: ( 38, -26) ( 34, -28) ( 20, -40)
row 2: ( 59, -38) ( 52, -44) ( 30, -60)
row 3: ( 80, -50) ( 70, -60) ( 40, -80)
row 4: . . .
row 5: . . .
row 6: . . .
row 7: . . .
8x3 GraphBLAS gauss matrix, bitmap by col
CTiles [k], 12 entries, memory: 448 bytes
(0,0) [user-defined value]
(1,0) [user-defined value]
(2,0) [user-defined value]
(3,0) [user-defined value]
(0,1) [user-defined value]
(1,1) [user-defined value]
(2,1) [user-defined value]
(3,1) [user-defined value]
(0,2) [user-defined value]
(1,2) [user-defined value]
(2,2) [user-defined value]
(3,2) [user-defined value]
=============== C Tile from Z:
size: 8-by-5
row 0: ( -1, -23) ( 9, 4) . . .
row 1: ( 6, -52) . ( 18, 8) . .
row 2: ( 8, -76) . . ( 30, 0) .
row 3: ( 10,-100) . . . ( 42, -16)
row 4: . . . . .
row 5: . . . . .
row 6: . . . . .
row 7: . . . . .
8x5 GraphBLAS gauss matrix, bitmap by col
CTiles [k], 8 entries, memory: 592 bytes
(0,0) [user-defined value]
(1,0) [user-defined value]
(2,0) [user-defined value]
(3,0) [user-defined value]
(0,1) [user-defined value]
(1,2) [user-defined value]
(2,3) [user-defined value]
(3,4) [user-defined value]
=============== C Tile from Z:
size: 8-by-3
row 0: . . .
row 1: . . .
row 2: . . .
row 3: . . .
row 4: ( 9, 4) . .
row 5: . ( 18, 8) .
row 6: . . ( 30, 0)
row 7: . . .
8x3 GraphBLAS gauss matrix, bitmap by col
CTiles [k], 3 entries, memory: 448 bytes
(4,0) [user-defined value]
(5,1) [user-defined value]
(6,2) [user-defined value]
=============== C Tile from Z:
size: 8-by-5
row 0: . . . . .
row 1: . . . . .
row 2: . . . . .
row 3: . . . . .
row 4: . ( 17, -14) ( 11, -17) ( 5, -20) ( -1, -23)
row 5: . ( 38, -26) ( 34, -28) ( 20, -40) ( 6, -52)
row 6: . ( 59, -38) ( 52, -44) ( 30, -60) ( 8, -76)
row 7: ( 42, -16) ( 80, -50) ( 70, -60) ( 40, -80) ( 10,-100)
8x5 GraphBLAS gauss matrix, bitmap by col
CTiles [k], 17 entries, memory: 592 bytes
(7,0) [user-defined value]
(4,1) [user-defined value]
(5,1) [user-defined value]
(6,1) [user-defined value]
(7,1) [user-defined value]
(4,2) [user-defined value]
(5,2) [user-defined value]
(6,2) [user-defined value]
(7,2) [user-defined value]
(4,3) [user-defined value]
(5,3) [user-defined value]
(6,3) [user-defined value]
(7,3) [user-defined value]
(4,4) [user-defined value]
(5,4) [user-defined value]
(6,4) [user-defined value]
(7,4) [user-defined value]
[ GrB_assign (pending: 0) Method 22: (C full) += scalar (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__subassign_22__2040eee0eec0__addgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/ba/GB_jit__subassign_22__2040eee0eec0__addgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__subassign_22__2040eee0eec0__addgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
[100%] Built target GB_jit__subassign_22__2040eee0eec0__addgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/9fb923a6107650ba'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/ba/libGB_jit__subassign_22__2040eee0eec0__addgauss.so
0.358 sec ]
=============== C = C + ciso
size: 4-by-4
row 0: ( 18, -16) ( 12, -19) ( 6, -22) ( 0, -25)
row 1: ( 39, -28) ( 35, -30) ( 21, -42) ( 7, -54)
row 2: ( 60, -40) ( 53, -46) ( 31, -62) ( 9, -78)
row 3: ( 81, -52) ( 71, -62) ( 41, -82) ( 11,-102)
[ GrB_set
1.99e-07 sec ]
[ GxB_Matrix_split (full split)
1.11e-05 sec ]
=============== S Tile from C:
size: 1-by-2
row 0: ( 18, -16) ( 12, -19)
1x2 GraphBLAS gauss matrix, full by row
sparsity control: full
STiles [k], 2 entries, memory: 248 bytes
(0,0) [user-defined value]
(0,1) [user-defined value]
=============== S Tile from C:
size: 1-by-2
row 0: ( 6, -22) ( 0, -25)
1x2 GraphBLAS gauss matrix, full by row
sparsity control: full
STiles [k], 2 entries, memory: 248 bytes
(0,0) [user-defined value]
(0,1) [user-defined value]
=============== S Tile from C:
size: 3-by-2
row 0: ( 39, -28) ( 35, -30)
row 1: ( 60, -40) ( 53, -46)
row 2: ( 81, -52) ( 71, -62)
3x2 GraphBLAS gauss matrix, full by row
sparsity control: full
STiles [k], 6 entries, memory: 280 bytes
(0,0) [user-defined value]
(0,1) [user-defined value]
(1,0) [user-defined value]
(1,1) [user-defined value]
(2,0) [user-defined value]
(2,1) [user-defined value]
=============== S Tile from C:
size: 3-by-2
row 0: ( 21, -42) ( 7, -54)
row 1: ( 31, -62) ( 9, -78)
row 2: ( 41, -82) ( 11,-102)
3x2 GraphBLAS gauss matrix, full by row
sparsity control: full
STiles [k], 6 entries, memory: 280 bytes
(0,0) [user-defined value]
(0,1) [user-defined value]
(1,0) [user-defined value]
(1,1) [user-defined value]
(2,0) [user-defined value]
(2,1) [user-defined value]
JIT: paused
=============== C:
size: 4-by-4
row 0: ( 18, -16) ( 12, -19) ( 6, -22) ( 0, -25)
row 1: ( 39, -28) ( 35, -30) ( 21, -42) ( 7, -54)
row 2: ( 60, -40) ( 53, -46) ( 31, -62) ( 9, -78)
row 3: ( 81, -52) ( 71, -62) ( 41, -82) ( 11,-102)
[ GrB_assign (pending: 0) Method 22: (C full) += scalar (generic C(:,:)+=x assign)
9.7e-06 sec ]
=============== C = C + ciso (JIT paused):
size: 4-by-4
row 0: ( 19, -18) ( 13, -21) ( 7, -24) ( 1, -27)
row 1: ( 40, -30) ( 36, -32) ( 22, -44) ( 8, -56)
row 2: ( 61, -42) ( 54, -48) ( 32, -64) ( 10, -80)
row 3: ( 82, -54) ( 72, -64) ( 42, -84) ( 12,-104)
=============== C:
size: 4-by-4
row 0: ( 19, -18) ( 13, -21) ( 7, -24) ( 1, -27)
row 1: ( 40, -30) ( 36, -32) ( 22, -44) ( 8, -56)
row 2: ( 61, -42) ( 54, -48) ( 32, -64) ( 10, -80)
row 3: ( 82, -54) ( 72, -64) ( 42, -84) ( 12,-104)
[ GrB_assign (pending: 0) Method 22: (C full) += scalar (generic C(:,:)+=x assign)
1.82e-06 sec ]
=============== C = C * ciso (JIT paused):
size: 4-by-4
row 0: ( -17, -56) ( -29, -47) ( -41, -38) ( -53, -29)
row 1: ( -20,-110) ( -28,-104) ( -66, -88) (-104, -72)
row 2: ( -23,-164) ( -42,-156) ( -96,-128) (-150,-100)
row 3: ( -26,-218) ( -56,-208) (-126,-168) (-196,-128)
JIT: run (the JIT can only run, not load or compile)
[ GrB_assign (pending: 0) Method 22: (C full) += scalar
1.63e-06 sec ]
=============== C = C + ciso (JIT run):
size: 4-by-4
row 0: ( -16, -58) ( -28, -49) ( -40, -40) ( -52, -31)
row 1: ( -19,-112) ( -27,-106) ( -65, -90) (-103, -74)
row 2: ( -22,-166) ( -41,-158) ( -95,-130) (-149,-102)
row 3: ( -25,-220) ( -55,-210) (-125,-170) (-195,-130)
[ GrB_assign (pending: 0) Method 22: (C full) += scalar (generic C(:,:)+=x assign)
1.78e-06 sec ]
=============== C = C * ciso (JIT not loaded):
size: 4-by-4
row 0: (-132, -26) (-126, 7) (-120, 40) (-114, 73)
row 1: (-243, -74) (-239, -52) (-245, 40) (-251, 132)
row 2: (-354,-122) (-357, -76) (-355, 60) (-353, 196)
row 3: (-465,-170) (-475,-100) (-465, 80) (-455, 260)
JIT: on
[ GrB_assign (pending: 0) Method 22: (C full) += scalar (jit: compile and load) (jit compile with cmake)
-- The C compiler identification is GNU 11.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab
gmake[1]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
gmake[2]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
gmake[3]: Entering directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
[ 50%] [32mBuilding C object CMakeFiles/GB_jit__subassign_22__2040eee0eec0__multgauss.dir/home/davis/.SuiteSparse/GrB10.0.0/c/ab/GB_jit__subassign_22__2040eee0eec0__multgauss.c.o[0m
[100%] [32m[1mLinking C shared library libGB_jit__subassign_22__2040eee0eec0__multgauss.so[0m
gmake[3]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
[100%] Built target GB_jit__subassign_22__2040eee0eec0__multgauss
gmake[2]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
gmake[1]: Leaving directory '/home/davis/.SuiteSparse/GrB10.0.0/tmp/10a2b99fcf56f7ab'
-- Install configuration: ""
-- Installing: /home/davis/.SuiteSparse/GrB10.0.0/lib/ab/libGB_jit__subassign_22__2040eee0eec0__multgauss.so
0.358 sec ]
=============== C = C * ciso (full JIT):
size: 4-by-4
row 0: (-184, 238) (-112, 259) ( -40, 280) ( 32, 301)
row 1: (-391, 412) (-343, 426) (-165, 530) ( 13, 634)
row 2: (-598, 586) (-509, 638) (-235, 770) ( 39, 902)
row 3: (-805, 760) (-675, 850) (-305,1010) ( 65,1170)
|