1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929
|
NVIDIA CUDA Toolkit Release Notes
---------------------------------
The Release Notes for the CUDA Toolkit.
1. CUDA 11.8 Release Notes
--------------------------
The release notes for the NVIDIA® CUDA® Toolkit can be found
online at
https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html.
Note: The release notes have been reorganized into two major
sections: the general CUDA release notes, and the CUDA
libraries release notes including historical information for
11.x releases.
1.1. CUDA Toolkit Major Component Versions
CUDA Components
Starting with CUDA 11, the various components in the
toolkit are versioned independently.
For CUDA 11.8, the table below indicates the versions:
Table 1. CUDA 11.8 Component Versions
Component Name
Version Information
Supported Architectures
CUDA C++ Core Compute Libraries
11.8.68
x86_64, POWER, AArch64
CUDA Runtime (cudart)
11.8.68
x86_64, POWER, AArch64
cuobjdump
11.8.68
x86_64, POWER, AArch64
CUPTI
11.8.68
x86_64, POWER, AArch64
CUDA cuxxfilt (demangler)
11.8.68
x86_64, POWER, AArch64
CUDA Demo Suite
11.8.68
x86_64
CUDA GDB
11.8.68
x86_64, POWER, AArch64
CUDA Memcheck
11.8.68
x86_64, POWER
CUDA Nsight
11.8.68
x86_64, POWER
CUDA NVCC
11.8.68
x86_64, POWER, AArch64
CUDA nvdisasm
11.8.68
x86_64, POWER, AArch64
CUDA NVML Headers
11.8.68
x86_64, POWER, AArch64
CUDA nvprof
11.8.68
x86_64, POWER
CUDA nvprune
11.8.68
x86_64, POWER, AArch64
CUDA NVRTC
11.8.68
x86_64, POWER, AArch64
CUDA NVTX
11.8.68
x86_64, POWER, AArch64
CUDA NVVP
11.8.68
x86_64, POWER
CUDA Compute Sanitizer API
11.8.68
x86_64, POWER, AArch64
CUDA cuBLAS
11.11.0.32
x86_64, POWER, AArch64
CUDA cuDLA
11.8.68
AArch64
CUDA cuFFT
10.9.0.40
x86_64, POWER, AArch64
CUDA cuFile
1.4.0.31
x86_64
CUDA cuRAND
10.3.0.68
x86_64, POWER, AArch64
CUDA cuSOLVER
11.4.1.30
x86_64, POWER, AArch64
CUDA cuSPARSE
11.7.5.68
x86_64, POWER, AArch64
CUDA NPP
11.8.0.68
x86_64, POWER, AArch64
CUDA nvJPEG
11.9.0.68
x86_64, POWER, AArch64
Nsight Compute
2022.3.0.14
x86_64, POWER, AArch64 (CLI only)
Nsight NVTX
1.21018621
x86_64 (Windows)
Nsight Systems
2022.3.1.32
x86_64, POWER, AArch64 (CLI only)
Nsight Visual Studio Edition (VSE)
2022.3.0.22185
x86_64 (Windows)
nvidia_fs1
2.13.5
x86_64, AArch64
Visual Studio Integration
11.8.68
x86_64 (Windows)
NVIDIA Linux Driver
520.43
x86_64, POWER, AArch64
NVIDIA Windows Driver
521.14
x86_64 (Windows)
CUDA Driver
Running a CUDA application requires the system with at
least one CUDA capable GPU and a driver that is
compatible with the CUDA Toolkit. See Table 3. For more
information various GPU products that are CUDA capable,
visit https://developer.nvidia.com/cuda-gpus.
Each release of the CUDA Toolkit requires a minimum
version of the CUDA driver. The CUDA driver is backward
compatible, meaning that applications compiled against a
particular version of the CUDA will continue to work on
subsequent (later) driver releases.
More information on compatibility can be found at
https://docs.nvidia.com/cuda/cuda-c-best-practices-guide/index.html#cuda-compatibility-and-upgrades.
Note: Starting with CUDA 11.0, the toolkit components
are individually versioned, and the toolkit itself is
versioned as shown in the table below.
The minimum required driver version for CUDA minor
version compatibility is shown below. CUDA minor version
compatibility is described in detail in
https://docs.nvidia.com/deploy/cuda-compatibility/index.html
Table 2. CUDA Toolkit and Minimum Required Driver
Version for CUDA Minor Version Compatibility
CUDA Toolkit
Minimum Required Driver Version for CUDA Minor Version
Compatibility*
Linux x86_64 Driver Version
Linux AArch64 Driver Version
Windows x86_64 Driver Version
CUDA 11.8.x
>=450.80.02
>=452.39
CUDA 11.7.x
CUDA 11.6.x
CUDA 11.5.x
CUDA 11.4.x
CUDA 11.3.x
CUDA 11.2.x
CUDA 11.1 (11.1.0)
CUDA 11.0 (11.0.3)
>=450.36.06**
>=450.28.01**
>=451.22**
* Using a Minimum Required Version that is different
from Toolkit Driver Version could be allowed in
compatibility mode -- please read the CUDA Compatibility
Guide for details.
** CUDA 11.0 was released with an earlier driver
version, but by upgrading to Tesla Recommended Drivers
450.80.02 (Linux) / 452.39 (Windows), minor version
compatibility is possible across the CUDA 11.x family of
toolkits.
The version of the development NVIDIA GPU Driver
packaged in each CUDA Toolkit release is shown below.
Table 3. CUDA Toolkit and Corresponding Driver Versions
CUDA Toolkit
Toolkit Driver Version
Linux x86_64 Driver Version
Windows x86_64 Driver Version
CUDA 11.8
>=520.43
>=521.14
CUDA 11.7 Update 1
>=515.48.07
>=516.31
CUDA 11.7 GA
>=515.43.04
>=516.01
CUDA 11.6 Update 2
>=510.47.03
>=511.65
CUDA 11.6 Update 1
>=510.47.03
>=511.65
CUDA 11.6 GA
>=510.39.01
>=511.23
CUDA 11.5 Update 2
>=495.29.05
>=496.13
CUDA 11.5 Update 1
>=495.29.05
>=496.13
CUDA 11.5 GA
>=495.29.05
>=496.04
CUDA 11.4 Update 4
>=470.82.01
>=472.50
CUDA 11.4 Update 3
>=470.82.01
>=472.50
CUDA 11.4 Update 2
>=470.57.02
>=471.41
CUDA 11.4 Update 1
>=470.57.02
>=471.41
CUDA 11.4.0 GA
>=470.42.01
>=471.11
CUDA 11.3.1 Update 1
>=465.19.01
>=465.89
CUDA 11.3.0 GA
>=465.19.01
>=465.89
CUDA 11.2.2 Update 2
>=460.32.03
>=461.33
CUDA 11.2.1 Update 1
>=460.32.03
>=461.09
CUDA 11.2.0 GA
>=460.27.03
>=460.82
CUDA 11.1.1 Update 1
>=455.32
>=456.81
CUDA 11.1 GA
>=455.23
>=456.38
CUDA 11.0.3 Update 1
>= 450.51.06
>= 451.82
CUDA 11.0.2 GA
>= 450.51.05
>= 451.48
CUDA 11.0.1 RC
>= 450.36.06
>= 451.22
CUDA 10.2.89
>= 440.33
>= 441.22
CUDA 10.1 (10.1.105 general release, and updates)
>= 418.39
>= 418.96
CUDA 10.0.130
>= 410.48
>= 411.31
CUDA 9.2 (9.2.148 Update 1)
>= 396.37
>= 398.26
CUDA 9.2 (9.2.88)
>= 396.26
>= 397.44
CUDA 9.1 (9.1.85)
>= 390.46
>= 391.29
CUDA 9.0 (9.0.76)
>= 384.81
>= 385.54
CUDA 8.0 (8.0.61 GA2)
>= 375.26
>= 376.51
CUDA 8.0 (8.0.44)
>= 367.48
>= 369.30
CUDA 7.5 (7.5.16)
>= 352.31
>= 353.66
CUDA 7.0 (7.0.28)
>= 346.46
>= 347.62
For convenience, the NVIDIA driver is installed as part
of the CUDA Toolkit installation. Note that this driver
is for development purposes and is not recommended for
use in production with Tesla GPUs.
For running CUDA applications in production with Tesla
GPUs, it is recommended to download the latest driver
for Tesla GPUs from the NVIDIA driver downloads site at
https://www.nvidia.com/drivers.
During the installation of the CUDA Toolkit, the
installation of the NVIDIA driver may be skipped on
Windows (when using the interactive or silent
installation) or on Linux (by using meta packages).
For more information on customizing the install process
on Windows, see
https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html#install-cuda-software.
For meta packages on Linux, see
https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#package-manager-metas
1.2. General CUDA
11.7. Update 1
* Added support for RHEL 9.0
11.7
* To best ensure the security and reliability of our RPM and
Debian package repositories, NVIDIA is updating and
rotating the signing keys used by apt, dnf/yum, and zypper
package managers beginning April 27, 2022. Failure to
update your repository signing keys will result in package
management errors when attempting to access or install
packages from CUDA repositories.
To ensure continued access to the latest NVIDIA software,
please follow the instructions here:
https://developer.nvidia.com/blog/updating-the-cuda-linux-gpg-repository-key/.
*
NVIDIA Open GPU Kernel Modules: With CUDA 11.7 and R515
driver, NVIDIA is open sourcing the GPU kernel mode driver
under dual GPL/MIT license. Refer to
https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#open-gpu-kernel-modules
for more information.
* Lazy Loading: Delay kernel loading from host to GPU to the
point where the kernel is called. This also only loads
used kernels, which may result in a significant
device-side memory savings. This also defers load latency
from the beginning of the application to the point where a
kernel is first called—overall binary load latency is
usually significantly reduced, but is also shifted to
later points in the application.
To enable this feature, set the environment variable
CUDA_MODULE_LOADING=LAZY before launching your process.
Note that this feature is only compatible with libraries
compiled with CUDA versions >= 11.7.
1.3. CUDA Compilers
11.7
* Grid private constants
*
NVCC host compiler support for clang13
1.4. CUDA Developer Tools
* For changes to nvprof and Visual Profiler, see the
changelog.
* For new features, improvements, and bug fixes in CUPTI,
see the changelog.
* For new features, improvements, and bug fixes in Nsight
Compute, see the changelog.
* For new features, improvements, and bug fixes in Compute
Sanitizer, see the changelog.
* For new features, improvements, and bug fixes in CUDA-GDB,
see the changelog.
1.5. Resolved Issues
1.5.1. General CUDA
*
All color formats are now supported for Vulkan-CUDA
interop on L4T and Android.
* Resolved a linking issue that could be encountered on some
systems when using libnvfm.so.
1.5.2. CUDA Compilers
11.7
* There was a compiler bug due to which a function marked
__forceinline__ in a CUDA C++ program (or a function
marked with the NVVM IR alwaysinline attribute for libNVVM
compilation) was incorrectly given static linkage by the
compiler in certain compilation modes. This incorrect
behavior has been fixed and the compiler will not change
the linkage in these compilation modes. As a result, if
the static linkage is appropriate for such a function,
then the program itself should set the linkage.
* Updated the libNVVM API documentation to include the
library version and a note regarding thread safety.
1.6. Deprecated Features
The following features are deprecated in the current release
of the CUDA software. The features still work in the current
release, but their documentation may have been removed, and
they will become officially unsupported in a future release.
We recommend that developers employ alternative solutions to
these features in their software.
General CUDA
* CentOS Linux 8 has reached End-of-Life on December
31, 2021. Support for this OS is now removed from
the CUDA Toolkit and is replaced by Rocky Linux 8.
* Server 2016 support has been deprecated and shall be
removed in a future release.
CUDA Compiler
*
NVCC is deprecating 32-bit compilation for ALL GPUs,
and it will be removed in future release. Older CUDA
toolkits will continue to support it.
* The NVVM IR spec no longer allows static
initialization of shared variables. These were
allowed and ignored in earlier CUDA releases. Use "undef"
initialization instead.
1.7. Known Issues
1.7.1. CUDA Compiler
*
In 11.7, the ISO C++ 20 standard is not supported yet.
1.7.2. CUDA Tools
* Nsight Profiler launch has known performance regression
with GSP driver architecture both with the closed and open
kernel modules.
* NVIDIA Visual Profiler can't remote into a target machine
running Ubuntu 20.04.
* Lazy loading: Nsight Compute, Compute Sanitizer and
cuda-gdb force-disable lazy loading in this release.
Late-attaching with cuda-gdb to an application executing
with lazy loading enabled is unsupported in this release.
Full support for Nsight Compute, Compute Sanitizer and
cuda-gdb will be added in a later release.
2. CUDA Libraries
-----------------
This section covers CUDA Libraries release notes for 11.x
releases.
* CUDA Math Libraries toolchain uses C++11 features, and a
C++11-compatible standard library (libstdc++ >= 20150422)
is required on the host.
* CUDA Math libraries are no longer shipped for SM30 and
SM32.
* Support for the following compute capabilities are
deprecated for all libraries:
* sm_35 (Kepler)
* sm_37 (Kepler)
2.1. cuBLAS Library
2.1.1. cuBLAS: Release 11.6 Update 2
* New Features
* Performance improvements for batched GEMV.
* Performance improvements for the following BLAS Level
3 routines on NVIDIA Ampere GPU architecture (SM80):
{D,Z}{SYRK,SYMM,TRMM}, Z{HERK,HEMM}.
* Known Issues
* The cublasGetVersion() API return value was updated
due to cuBLAS minor version >= 10 and therefore,
depending on how the API is used, version checks based
on this API can lead to warnings or errors. Use cases
such as cublasGetVersion() >= CUBLAS_VERSION will not
break based on how the API was updated. The
cublasGetProperty() API still returns correct values.
* Resolved Issues
* Fixed incorrect bias gradient computations for
CUBLASLT_EPILOGUE_BGAD{A,B} when the corresponding
matrix (A or B) size is greater than 231.
* Fixed a potential cuBLAS hang when cuBLAS API is
called with different CUDA streams but which are the
same value-wise (e.g. this could happen in a loop that
creates CUDA stream, calls cuBLAS with it, and then
deletes the stream).
* If cuBLAS uses internal CUDA streams, their priority
now matches the priority of the stream with which
cuBLAS API was called.
2.1.2. cuBLAS: Release 11.6
* New Features
* New epilogue options have been added to support fusion
in DLtraining: CUBLASLT_EPILOGUE_{DRELU,DGELU} which
are similar to CUBLASLT_EPILOGUE_{DRELU,DGELU}_BGRAD
but don’t compute bias gradient.
* Resolved Issues
* Some syrk-related functions (cublas{D,Z}syrk,
cublas{D,Z}syr2k, cublas{D,Z}syrkx) may fail for
matrices which size is greater than 2^31.
2.1.3. cuBLAS: Release 11.4 Update 3
* Resolved Issues
* Some cublas and cublasLt functions sometimes returned
CUBLAS_STATUS_EXECUTION_FAILED if the dynamic library
was loaded and unloaded several times during
application lifetime within the same CUDA context.
This issue has been resolved.
2.1.4. cuBLAS: Release 11.4 Update 2
* New Features
* Vector (and batched) alpha support for per-row scaling
in TN int32 math Matmul with int8 output. See
CUBLASLT_POINTER_MODE_ALPHA_DEVICE_VECTOR_BETA_HOST
and CUBLASLT_MATMUL_DESC_ALPHA_VECTOR_BATCH_STRIDE.
* New epilogue options have been added to support fusion
in DLtraining: CUBLASLT_EPILOGUE_BGRADA and
CUBLASLT_EPILOGUE_BGRADB which compute bias gradients
based on matrices A and B respectively.
* New auxiliary functions cublasGetStatusName(),
cublasGetStatusString() have been added to cuBLAS that
return the string representation and the description
of the cuBLAS status (cublasStatus_t) respectively.
Similarly, cublasLtGetStatusName(),
cublasLtGetStatusString() have been added to cuBlasLt.
* Known Issues
* cublasGemmBatchedEx() and cublas<t>gemmBatched() check
the alignment of the input/output arrays of the
pointers like they were the pointers to the actual
matrices. These checks are irrelevant and will be
disabled in future releases. This mostly affects
half-precision inputGEMMs which might require 16-byte
alignment, and array of pointers could only be aligned
by 8-byte boundary.
* Resolved Issues
* cublasLtMatrixTransform can now operate on matrices
with dimensions greater than 65535.
* Fixed out-of-bound access in GEMM and Matmul
functions, when split K or non-default epilogue is
used and leading dimension of the output matrix
exceeds int32_t limit.
* NVBLAS now uses lazy loading of the CPU BLAS library
on Linux to avoid issues caused by preloading
libnvblas.so in complex applications that use fork and
similar APIs.
* Resolved symbols name conflict when using cuBlasLt
static library with static TensorRT or cuDNN
libraries.
2.1.5. cuBLAS: Release 11.4
* Resolved Issues
* Some gemv cases were producing incorrect results if
the matrix dimension (n or m) was large, for example
2^20.
2.1.6. cuBLAS: Release 11.3 Update 1
* New Features
* Some new kernels have been added for improved
performance but have the limitation that only host
pointers are supported for scalars (for example, alpha
and beta parameters). This limitation is expected to
be resolved in a future release.
* New epilogues have been added to support fusion in ML
training. These include:
* ReLuBias and GeluBias epilogues that produce an
auxiliary output which is used on backward
propagation to compute the corresponding
gradients.
* DReLuBGrad and DGeluBGrad epilogues that compute
the backpropagation of the corresponding
activation function on matrix C, and produce bias
gradient as a separate output. These epilogues
require auxiliary input mentioned in the bullet
above.
* Resolved Issues
* Some tensor core accelerated strided batched GEMM
routines would result in misaligned memory access
exceptions when batch stride wasn't a multiple of 8.
* Tensor core accelerated cublasGemmBatchedEx
(pointer-array) routines would use slower variants of
kernels assuming bad alignment of the pointers in the
pointer array. Now it assumes that pointers are well
aligned, as noted in the documentation.
* Known Issues
* To be able to access the fastest possible kernels
through cublasLtMatmulAlgoGetHeuristic() you need to
set CUBLASLT_MATMUL_PREF_POINTER_MODE_MASK in search
preferences to CUBLASLT_POINTER_MODE_MASK_HOST or
CUBLASLT_POINTER_MODE_MASK_NO_FILTERING. By default,
heuristics query assumes the pointer mode may change
later and only returns algo configurations that
support both _HOST and _DEVICE modes. Without this,
newly added kernels will be excluded and it will
likely lead to a performance penalty on some problem
sizes.
* Deprecated Features
* Linking with static cublas and cublasLt libraries on
Linux now requires using gcc-5.2 and compatible or
higher due to C++11 requirements in these libraries.
2.1.7. cuBLAS: Release 11.3
* Known Issues
* The planar complex matrix descriptor for batched
matmul has inconsistent interpretation of batch
offset.
* Mixed precision operations with reduction scheme
CUBLASLT_REDUCTION_SCHEME_OUTPUT_TYPE (might be
automatically selected based on problem size by
cublasSgemmEx() or cublasGemmEx() too, unless
CUBLAS_MATH_DISALLOW_REDUCED_PRECISION_REDUCTION math
mode bit is set) not only stores intermediate results
in output type but also accumulates them internally in
the same precision, which may result in lower than
expected accuracy. Please use
CUBLASLT_MATMUL_PREF_REDUCTION_SCHEME_MASK or
CUBLAS_MATH_DISALLOW_REDUCED_PRECISION_REDUCTION if
this results in numerical precision issues in your
application.
2.1.8. cuBLAS: Release 11.2
* Known Issues
* cublas<s/d/c/z>Gemm() with very large n and m=k=1 may
fail on Pascal devices.
2.1.9. cuBLAS: Release 11.1 Update 1
* New Features
* cuBLASLt Logging is officially stable and no longer
experimental. cuBLASLt Logging APIs are still
experimental and may change in future releases.
* Resolved Issues
* cublasLt Matmul fails on Volta architecture GPUs with
CUBLAS_STATUS_EXECUTION_FAILED when n dimension >
262,137 and epilogue bias feature is being used. This
issue exists in 11.0 and 11.1 releases but has been
corrected in 11.1 Update 1
2.1.10. cuBLAS: Release 11.1
* Resolved Issues
* A performance regression in the cublasCgetrfBatched
and cublasCgetriBatched routines has been fixed.
* The IMMA kernels do not support padding in matrix C
and may corrupt the data when matrix C with padding is
supplied to cublasLtMatmul. A suggested work around is
to supply matrix C with leading dimension equal to 32
times the number of rows when targeting the IMMA
kernels: computeType = CUDA_R_32I and
CUBLASLT_ORDER_COL32 for matrices A,C,D, and
CUBLASLT_ORDER_COL4_4R2_8C (on NVIDIA Ampere GPU
architecture or Turing architecture) or
CUBLASLT_ORDER_COL32_2R_4R4 (on NVIDIA Ampere GPU
architecture) for matrix B. Matmul descriptor must
specify CUBLAS_OP_T on matrix B and CUBLAS_OP_N
(default) on matrix A and C. The data corruption
behavior was fixed so that CUBLAS_STATUS_NOT_SUPPORTED
is returned instead.
* Fixed an issue that caused an Address out of bounds
error when calling cublasSgemm().
* A performance regression in the cublasCgetrfBatched
and cublasCgetriBatched routines has been fixed.
2.1.11. cuBLAS: Release 11.0 Update 1
* New Features
* The cuBLAS API was extended with a new function,
cublasSetWorkspace(), which allows the user to set the
cuBLAS library workspace to a user-owned device
buffer, which will be used by cuBLAS to execute all
subsequent calls to the library on the currently set
stream.
* cuBLASLt experimental logging mechanism can be enabled
in two ways:
* By setting the following environment variables
before launching the target application:
* CUBLASLT_LOG_LEVEL=<level> -- where level is
one of the following levels:
* "0" - Off - logging is disabled (default)
* "1" - Error - only errors will be logged
* "2" - Trace - API calls that launch CUDA
kernels will log their parameters and
important information
* "3" - Hints - hints that can potentially
improve the application's performance
* "4" - Heuristics - heuristics log that may
help users to tune their parameters
* "5" - API Trace - API calls will log their
parameter and important information
* CUBLASLT_LOG_MASK=<mask> -- where mask is a
combination of the following masks:
* "0" - Off
* "1" - Error
* "2" - Trace
* "4" - Hints
* "8" - Heuristics
* "16" - API Trace
* CUBLASLT_LOG_FILE=<value> -- where value is a
file name in the format of "<file_name>.%i",
%i will be replaced with process id.If
CUBLASLT_LOG_FILE is not defined, the log
messages are printed to stdout.
* By using the runtime API functions defined in the
cublasLt header:
* typedef void(*cublasLtLoggerCallback_t)(int
logLevel, const char* functionName, const
char* message) -- A type of callback function
pointer.
* cublasStatus_t
cublasLtLoggerSetCallback(cublasLtLoggerCallback_t
callback) -- Allows to set a call back
functions that will be called for every
message that is logged by the library.
* cublasStatus_t cublasLtLoggerSetFile(FILE*
file) -- Allows to set the output file for the
logger. The file must be open and have write
permissions.
* cublasStatus_t cublasLtLoggerOpenFile(const
char* logFile) -- Allows to give a path in
which the logger should create the log file.
* cublasStatus_t cublasLtLoggerSetLevel(int
level) -- Allows to set the log level to one
of the above mentioned levels.
* cublasStatus_t cublasLtLoggerSetMask(int mask)
-- Allows to set the log mask to a combination
of the above mentioned masks.
* cublasStatus_t cublasLtLoggerForceDisable() --
Allows to disable to logger for the entire
session. Once this API is being called, the
logger cannot be reactivated in the current
session.
2.1.12. cuBLAS: Release 11.0
* New Features
* cuBLASLt Matrix Multiplication adds support for fused
ReLU and bias operations for all floating point types
except double precision (FP64).
* Improved batched TRSM performance for matrices larger
than 256.
2.1.13. cuBLAS: Release 11.0 RC
* New Features
* Many performance improvements have been implemented
for NVIDIA Ampere, Volta, and Turing Architecture
based GPUs.
* The cuBLASLt logging mechanism can be enabled by
setting the following environment variables before
launching the target application:
* CUBLASLT_LOG_LEVEL=<level> - while level is one of
the following levels:
* "0" - Off - logging is disabled (default)
* "1" - Error - only errors will be logged
* "2" - Trace - API calls will be logged with
their parameters and important information
* CUBLASLT_LOG_FILE=<value> - while value is a file
name in the format of "<file_name>.%i", %i will be
replaced with process id. If CUBLASLT_LOG_FILE is
not defined, the log messages are printed to
stdout.
* For matrix multiplication APIs:
* cublasGemmEx, cublasGemmBatchedEx,
cublasGemmStridedBatchedEx and cublasLtMatmul
added new data type support for __nv_bfloat16
(CUDA_R_16BF).
* A new compute type TensorFloat32 (TF32) has been
added to provide tensor core acceleration for FP32
matrix multiplication routines with full dynamic
range and increased precision compared to
BFLOAT16.
* New compute modes Default, Pedantic, and Fast have
been introduced to offer more control over compute
precision used.
* Tensor cores are now enabled by default for half-,
and mixed-precision- matrix multiplications.
* Double precision tensor cores (DMMA) are used
automatically.
* Tensor cores can now be used for all sizes and
data alignments and for all GPU architectures:
* Selection of these kernels through cuBLAS
heuristics is automatic and will depend on
factors such as math mode setting as well as
whether it will run faster than the non-tensor
core kernels.
* Users should note that while these new kernels
that use tensor cores for all unaligned cases
are expected to perform faster than non-tensor
core based kernels but slower than kernels
that can be run when all buffers are well
aligned.
* Deprecated Features
* Algorithm selection in cublasGemmEx APIs (including
batched variants) is non-functional for NVIDIA Ampere
Architecture GPUs. Regardless of selection it will
default to a heuristics selection. Users are
encouraged to use the cublasLt APIs for algorithm
selection functionality.
* The matrix multiply math mode CUBLAS_TENSOR_OP_MATH is
being deprecated and will be removed in a future
release. Users are encouraged to use the new
cublasComputeType_t enumeration to define compute
precision.
2.2. cuFFT Library
2.2.1. cuFFT: Release 11.8
* Resolved Issues
* Some R2C and C2R transforms with inner inner strides
equal to 1 and more than 2^31 elements were returning
invalid results. This has been fixed.
* Known Issues
* cuFFT plans have an unintentional small memory
overhead (of a few kB) per plan. This overhead will be
fixed in an upcoming release.
* cuFFT fails to deallocate some internal structures if
the active CUDA context at program finalization is not
the same used to create the cuFFT plan. This memory
leak is constant per context, and will be fixed in an
upcoming release.
* Performance of cuFFT callback functionality was
changed across all plan types and FFT sizes.
Performance of a small set of cases regressed up to
0.5x, while most of the cases didn’t change
performance significantly, or improved up to 2x. In
addition to these performance changes, using cuFFT
callbacks for loading data in out-of-place transforms
might exhibit performance and memory footprint
overhead for all cuFFT plan types and FFT sizes. An
upcoming release will update the cuFFT callback
implementation, removing the overheads and performance
drops. cuFFT deprecated callback functionality based
on separate compiled device code in cuFFT 11.4.
2.2.2. cuFFT: Release 11.7
* Known Issues
* cuFFT fails to deallocate some internal structures if
the active CUDA context at program finalization is not
the same used to create the cuFFT plan. This memory
leak is constant per context, and will be fixed in an
upcoming release.
2.2.3. cuFFT: Release 11.5
* Known Issues
* FFTs of certain sizes in single and double precision
(multiples of size 6) could fail on future devices.
This issue will be fixed in an upcoming release.
2.2.4. cuFFT: Release 11.4 Update 2
* Resolved Issues
* Since cuFFT 10.3.0 (CUDA Toolkit 11.1), cuFFT may
require user to make sure that all operations on input
and output buffers are complete before calling
cufft[Xt]Exec* if:
* sm70 or later, 3D FFT, batch > 1, total size of
transform is greater than 4.5MB
* FFT size for all dimensions is in the set of the
following sizes: {2, 4, 8, 16, 32, 64, 128, 3, 9,
81, 243, 729, 2187, 6561, 5, 25, 125, 625, 3125,
6, 36, 216, 1296, 7776, 7, 49, 343, 2401, 11, 121}
* Some V100 FFTs were slower than expected. This issue
is resolved.
* Known Issues
* Some T4 FFTs are slower than expected.
* Plans for FFTs of certain sizes in single precision
(including some multiples of 1024 sizes, and some
large prime numbers) could fail on future devices with
less than 64 kB of shared memory. This issue will be
fixed in an upcoming release.
2.2.5. cuFFT: Release 11.4 Update 1
* Resolved Issues
* Some cuFFT multi-GPU plans exhibited very long
creation times.
* cuFFT sometimes produced incorrect results for
real-to-complex and complex-to-real transforms when
the total number of elements across all batches in a
single execution exceeded 2147483647.
* Known Issues
* Some V100 FFTs are slower than expected.
* Some T4 FFTs are slower than expected.
2.2.6. cuFFT: Release 11.4
* New Features
* Performance improvements.
* Known Issues
* Some T4 FFTs are slower than expected.
* cuFFT may produce incorrect results for
real-to-complex and complex-to-real transforms when
the total number of elements across all batches in a
single execution exceeds 2147483647.
* Some cuFFT multi-GPU plans may exhibit very long
creation time. Issue will be fixed in the next update.
* cuFFT may produce incorrect results for transforms
with strides when the index of the last element across
all batches exceeds 2147483647 (see Advanced Data
Layout).
* Deprecated Features
* Support for callback functionality using separately
compiled device code is deprecated on all GPU
architectures. Callback functionality will continue to
be supported for all GPU architectures.
2.2.7. cuFFT: Release 11.3
* New Features
* cuFFT shared libraries are now linked statically
against libstdc++ on Linux platforms.
* Improved performance of certain sizes (multiples of
large powers of 3, powers of 11) in SM86.
* Known Issues
* cuFFT planning and plan estimation functions may not
restore correct context affecting CUDA driver API
applications.
* Plans with strides, primes larger than 127 in FFT size
decomposition and total size of transform including
strides bigger than 32GB produce incorrect results.
2.2.8. cuFFT: Release 11.2 Update 2
* Known Issues
* cuFFT planning and plan estimation functions may not
restore correct context affecting CUDA driver API
applications.
* Plans with strides, primes larger than 127 in FFT size
decomposition and total size of transform including
strides bigger than 32GB produce incorrect results.
2.2.9. cuFFT: Release 11.2 Update 1
* Resolved Issues
* Previously, reduced performance of power-of-2 single
precision FFTs was observed on GPUs with sm_86
architecture. This issue has been resolved.
* Large prime factors in size decomposition and real to
complex or complex to real FFT type no longer cause
cuFFT plan functions to fail.
* Known Issues
* cuFFT planning and plan estimation functions may not
restore correct context affecting CUDA driver API
applications.
* Plans with strides, primes larger than 127 in FFT size
decomposition and total size of transform including
strides bigger than 32GB produce incorrect results.
2.2.10. cuFFT: Release 11.2
* New Features
* Multi-GPU plans can be associated with a stream using
the cufftSetStream API function call.
* Performance improvements for R2C/C2C/C2R transforms.
* Performance improvements for multi-GPU systems.
* Resolved Issues
* cuFFT is no longer stuck in a bad state if previous
plan creation fails with CUFFT_ALLOC_FAILED.
* Previously, single dimensional multi-GPU FFT plans
ignored user input on cufftXtSetGPUswhichGPUs argument
and assumed that GPUs IDs are always numbered from 0
to N-1. This issue has been resolved.
* Plans with primes larger than 127 in FFT size
decomposition or FFT size being a prime number bigger
than 4093 do not perform calculations on second and
subsequent cufftExecute* calls. The regression was
introduced in cuFFT 11.1.
* Known Issues
* cuFFT planning and plan estimation functions may not
restore correct context affecting CUDA driver API
applications.
2.2.11. cuFFT: Release 11.1
* New Features
* cuFFT is now L2-cache aware and uses L2 cache for GPUs
with more than 4.5MB of L2 cache. Performance may
improve in certain single-GPU 3D C2C FFT cases.
* After successfully creating a plan, cuFFT now enforces
a lock on the cufftHandle. Subsequent calls to any
planning function with the same cufftHandle will fail.
* Added support for very large sizes (3k cube) to
multi-GPU cuFFT on DGX-2.
* Improved performance on multi-gpu cuFFT for certain
sizes (1k cube).
* Resolved Issues
* Resolved an issue that caused cuFFT to crash when
reusing a handle after clearing a callback.
* Fixed an error which produced incorrect results / NaN
values when running a real-to-complex FFT in half
precision.
* Known Issues
* cuFFT will always overwrite the input for out-of-place
C2R transform.
* Single dimensional multi-GPU FFT plans ignore user
input on the whichGPUs parameter of cufftXtSetGPUs()
and assume that GPUs IDs are always numbered from 0 to
N-1.
2.2.12. cuFFT: Release 11.0 RC
* New Features
* cuFFT now accepts __nv_bfloat16 input and output data
type for power-of-two sizes with single precision
computations within the kernels.
* Reoptimized power of 2 FFT kernels on Volta and Turing
architectures.
* Resolved Issues
* Reduced R2C/C2R plan memory usage to previous levels.
* Resolved bug introduced in 10.1 update 1 that caused
incorrect results when using custom strides, batched
2D plans and certain sizes on Volta and later.
* Known Issues
* cuFFT modifies C2R input buffer for some non-strided
FFT plans.
* There is a known issue with certain cuFFT plans that
causes an assertion in the execution phase of certain
plans. This applies to plans with all of the following
characteristics: real input to complex output (R2C),
in-place, native compatibility mode, certain even
transform sizes, and more than one batch.
2.3. cuRAND Library
2.3.1. cuRAND: Release 11.5 Update 1
* New Features
* Improved performance of CURAND_RNG_PSEUDO_MRG32K3A
pseudorandom number generator when using ordering
CURAND_ORDERING_PSEUDO_BEST or
CURAND_ORDERING_PSEUDO_DEFAULT.
* Added a new type of order parameter:
CURAND_ORDERING_PSEUDO_DYNAMIC.
* Supported PRNGs:
* CURAND_RNG_PSEUDO_XORWOW
* CURAND_RNG_PSEUDO_MRG32K3A
* CURAND_RNG_PSEUDO_MTGP32
* CURAND_RNG_PSEUDO_PHILOX4_32_10
* Improved performance compared to
CURAND_ORDERING_PSEUDO_DEFAULT, especially on
NVIDIA Ampere architecture GPUs.
* The output ordering of generated random numbers
for CURAND_ORDERING_PSEUDO_DYNAMIC depends on the
number of SMs on a GPU, and thus can be different
on different GPUs.
* The CURAND_ORDERING_PSEUDO_DYNAMIC ordering can't
be used with a host generator created using
curandCreateGeneratorHost().
* Resolved Issues
* Added information about cuRAND thread safety.
* Known Issues
* CURAND_RNG_PSEUDO_XORWOW with ordering
CURAND_ORDERING_PSEUDO_DYNAMIC can produce incorrect
results on architectures newer than SM86.
2.3.2. cuRAND: Release 11.3
* Resolved Issues
* Fixed inconsistency between random numbers generated
by GPU and host generators when
CURAND_ORDERING_PSEUDO_LEGACY ordering is selected for
certain generator types.
2.3.3. cuRAND: Release 11.0 Update 1
* Resolved Issues
* Fixed an issue that caused linker errors about the
multiple definitions of mtgp32dc_params_fast_11213 and
mtgpdc_params_11213_num when including
curand_mtgp32dc_p_11213.h in different compilation
units.
2.3.4. cuRAND: Release 11.0
* Resolved Issues
* Fixed an issue that caused linker errors about the
multiple definitions of mtgp32dc_params_fast_11213 and
mtgpdc_params_11213_num when including
curand_mtgp32dc_p_11213.h in different compilation
units.
2.3.5. cuRAND: Release 11.0 RC
* Resolved Issues
* Introduced CURAND_ORDERING_PSEUDO_LEGACY ordering.
Starting with CUDA 10.0, the ordering of random
numbers returned by MTGP32 and MRG32k3a generators are
no longer the same as previous releases despite being
guaranteed by the documentation for the
CURAND_ORDERING_PSEUDO_DEFAULT setting. The
CURAND_ORDERING_PSEUDO_LEGACY provides pre-CUDA 10.0
ordering for MTGP32 and MRG32k3a generators.
* Starting with CUDA 11.0 CURAND_ORDERING_PSEUDO_DEFAULT
is the same as CURAND_ORDERING_PSEUDO_BEST for all
generators except MT19937. Only
CURAND_ORDERING_PSEUDO_LEGACY is guaranteed to provide
the same for all future cuRAND releases.
2.4. cuSOLVER Library
2.4.1. cuSOLVER: Release 11.4
* New Features
* Introducing cusolverDnXtrtri, a new generic API for
triangular matrix inversion (trtri).
* Introducing cusolverDnXsytrs, a new generic API for
solving systems of linear equations using a given
factorized symmetric matrix from SYTRF.
2.4.2. cuSOLVER: Release 11.3
* Known Issues
* For values N<=16, cusolverDn[S|D|C|Z]syevjBatched hits
out-of-bound access and may deliver the wrong result.
The workaround is to pad the matrix A with a diagonal
matrix D such that the dimension of [A 0 ; 0 D] is
bigger than 16. The diagonal entry D(j,j) must be
bigger than maximum eigenvalue of A, for example,
norm(A, ‘fro’). After the syevj, W(0:n-1) contains
the eigenvalues and A(0:n-1,0:n-1) contains the
eigenvectors.
2.4.3. cuSOLVER: Release 11.2 Update 2
* New Features
* New singular value decomposition (GESVDR) is added.
GESVDR computes partial spectrum with random sampling,
an order of magnitude faster than GESVD.
* libcusolver.so no longer links libcublas_static.a;
instead, it depends on libcublas.so. This reduces the
binary size of libcusolver.so. However, it breaks
backward compatibility. The user has to link
libcusolver.so with the correct version of
libcublas.so.
2.4.4. cuSOLVER: Release 11.2
* Resolved Issues
* cusolverDnIRSXgels sometimes returned
CUSOLVER_STATUS_INTERNAL_ERROR when the precision is
‘z’. This issue has been fixed in CUDA 11.2; now
cusolverDnIRSXgels works for all precisions.
* ZSYTRF sometimes returned
CUSOLVER_STATUS_INTERNAL_ERROR due to insufficient
resources to launch the kernel. This issue has been
fixed in CUDA 11.2.
* GETRF returned early without finishing the whole
factorization when the matrix was singular. This issue
has been fixed in CUDA 11.2.
2.4.5. cuSOLVER: Release 11.1 Update 1
* Resolved Issues
* cusolverDnDDgels reports IRS_NOT_SUPPORTED when m > n.
The issue has been fixed in release 11.1 U1, so
cusolverDnDDgels will support m > n.
* cusolverMgDeviceSelect can consume over 1GB device
memory. The issue has been fixed in release 11.1 U1.
The hidden memory allocation inside cusolverMG handle
is about 30 MB per device.
* Known Issues
*
cusolverDnIRSXgels may return
CUSOLVER_STATUS_INTERNAL_ERROR. when the precision is
‘z’ due to insufficient workspace which causes
illegal memory access.
The cusolverDnIRSXgels_bufferSize() does not report
the correct size of workspace. To workaround the
issue, the user has to add more workspace than what is
reported by cusolverDnIRSXgels_bufferSize(). For
example, if x is the size of workspace returned by
cusolverDnIRSXgels_bufferSize(), then the user has to
allocate (x + min(m,n)*sizeof(cuDoubleComplex)) bytes.
2.4.6. cuSOLVER: Release 11.1
* New Features
* Added new 64-bit APIs:
* cusolverDnXpotrf_bufferSize
* cusolverDnXpotrf
* cusolverDnXpotrs
* cusolverDnXgeqrf_bufferSize
* cusolverDnXgeqrf
* cusolverDnXgetrf_bufferSize
* cusolverDnXgetrf
* cusolverDnXgetrs
* cusolverDnXsyevd_bufferSize
* cusolverDnXsyevd
* cusolverDnXsyevdx_bufferSize
* cusolverDnXsyevdx
* cusolverDnXgesvd_bufferSize
* cusolverDnXgesvd
* Added a new SVD algorithm based on polar
decomposition, called GESVDP which uses the new 64-bit
API, including cusolverDnXgesvdp_bufferSize and
cusolverDnXgesvdp.
* Deprecated FeaturesThe following 64-bit APIs are
deprecated:
* cusolverDnPotrf_bufferSize
* cusolverDnPotrf
* cusolverDnPotrs
* cusolverDnGeqrf_bufferSize
* cusolverDnGeqrf
* cusolverDnGetrf_bufferSize
* cusolverDnGetrf
* cusolverDnGetrs
* cusolverDnSyevd_bufferSize
* cusolverDnSyevd
* cusolverDnSyevdx_bufferSize
* cusolverDnSyevdx
* cusolverDnGesvd_bufferSize
* cusolverDnGesvd
2.4.7. cuSOLVER: Release 11.0
* New Features
* Add 64-bit API of GESVD. The new routine
cusolverDnGesvd_bufferSize() fills the missing
parameters in 32-bit API
cusolverDn[S|D|C|Z]gesvd_bufferSize() such that it can
estimate the size of the workspace accurately.
* Added the single process multi-GPU Cholesky
factorization capabilities POTRF, POTRS and POTRI in
cusolverMG library.
* Resolved Issues
* Fixed an issue where SYEVD/SYGVD would fail and return
error code 7 if the matrix is zero and the dimension
is bigger than 25.
2.5. cuSPARSE Library
2.5.1. cuSPARSE: Release 11.8
* New Features
* Added two new algorithms for cusparseSpGEMM with
better memory utilization
2.5.2. cuSPARSE: Release 11.7 Update 1
* New Features
* cusparseSDDMM now supports batched computation.
* Improved COO cusparseSpMM Alg2 with support for
batched computation, custom row/col-major layout for
B/C, and mixed-precision computation.
* Further improved error handling for JIT LTOcusparseSpMMOp.
*
Better performance for cusparseSpMM COO Alg3 and
cusparseSpSM.
* Resolved Issues
* Batched cusparseSpMM produced wrong results when the
number of columns of B/C is one.
Known Issues
* cusparseSpSV, cusparseSpSM could produce wrong results
if the output vector/matrix is not zero-initialized.
2.5.3. cuSPARSE: Release 11.7
* New Features
* Added a new utility to get the data associated to the
CSC descriptor:cusparseCscGet().
* Resolved Issues
* Fixed a rare correctness bug of cusparseSpMM with
CUSPARSE_SPMM_CSR_ALG1 when the number of rows in the
sparse matrix is 2.
Known Issues
* cusparseSpSV, cusparseSpSM could produce wrong results
if the output vector/matrix is not zero-initialized.
2.5.4. cuSPARSE: Release 11.6 Update 1
* New Features
* Improved CSR cusparseSpMM Alg1 for column-major
layout:
* Better performance
* Support for batched computation, custom
row/col-major layout for B/C, and mixed-precision
computation
* Improved COO cusparseSpMM Alg3 with support for
batched computation, custom row/col-major layout for
B/C, and mixed-precision computation.
* Improved mixed-precision computation of CSR/COO
cusparseSpMV.
* Added CSC format support for cusparseSpMV and
cusparseSpMM.
* Better error handling for JIT LTOcusparseSpMMOp.
* cusparseSpMM now supports batches of sparse matrices.
* Resolved Issues
* cusparseDenseToSparse produced wrong results when the
input matrix contained the floating-point value -0.0.
* std::locale is no longer modified by cuSPARSE during
the initialization.
* Added a note in the documentation of cusparseSpMMOp to
report that the routine is not compatible with old
CUDA driver version and Android platforms.
* Known Issues
* cusparseSpSV, cusparseSpSM could produce wrong results
if the output vector/matrix is not zero-initialized.
2.5.5. cuSPARSE: Release 11.6
* New Features
* Better performance for cusparseSpGEMM,
cusparseSpGEMMreuse, cusparseCsr2cscEx2, and
cusparseDenseToSparse routines.
* Resolved Issues
* Fixed forward compatibility issues with axpby, rot,
spvv, scatter, gather.
* Fixed incorrect results in COO SpMM Alg1 which
occurred in some rare cases.
2.5.6. cuSPARSE: Release 11.5 Update 1
* New Features
* New routine cusparseSpMMOp that exploits Just-In-Time
Link-Time-Optimization (JIT LTO) for providing sparse
matrix-dense matrix multiplication with custom
(user-defined) operators. See
https://docs.nvidia.com/cuda/cusparse/index.html#cusparse-generic-function-spmm-op.
* cuSPARSE now supports logging functionalities. See
https://docs.nvidia.com/cuda/cusparse/index.html#cusparse-logging.
* Resolved Issues
* Added memory requirements, graph capture, and
asynchronous notes for cusparseXcsrsm2_analysis.
* CSR, CSC, and COO format descriptions wrongly reported
sorted column indices requirement. All routines
support unsorted column indices, except where strictly
indicated
* Clarified cusparseSpSV and cusparseSpSM memory
management.
* cusparseSpSM produced wrong results in some cases when
the matB operation is CUSPARSE_
OPERATION_NON_TRANSPOSE or
CUSPARSE_OPERATION_CONJUGATE_TRANSPOSE.
* cusparseSpSM produced wrong results in some cases when
the matrix layout is row-major.
2.5.7. cuSPARSE: Release 11.4 Update 1
* Resolved Issues
* cusparseSpSV and cusparseSpSM could produce wrong
results
* cusparseSpSV and cusparseSpSM did not work correctly
when vecX == vecY or matB == matC.
2.5.8. cuSPARSE: Release 11.4
* Known Issues
* cusparseSpSV and cusparseSpSM could produce wrong
results
* cusparseSpSV and cusparseSpSM do not work correctly
when vecX == vecY or matB == matC.
2.5.9. cuSPARSE: Release 11.3 Update 1
* New Features
* Introduced a new routine for sparse matrix - sparse
matrix multiplication (cusparseSpGEMMreuse) where the
output matrix structure is reused for multiple
computation. The new routine supports CSR storage
format and mixed-precision computation.
* Sparse triangular solver adds support for COO format.
* Introduced a new routine for sparse triangular solver
with multiple right-hand sides cusparseSpSM().
* cusparseDenseToSparse() routine adds the conversion
from dense matrix (row-major/column-major) to
Blocked-ELL format.
* Blocke-ELL format now support empty blocks
* Better performance for Blocked-ELL SpMM with block
size > 64, double data type, and alignments smaller
than 128-byte on NVIDIA Ampere sm80.
* All cuSPARSE APIs are now asynchronous on platforms
that support stream ordered memory allocators
https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#stream-ordered-querying-memory-support.
* Improved NTVX trace with distinction between light
calls and kernel routines
* Resolved Issues
* cusparseCnnz_compress produced wrong results when the
number of rows are greater than 128 * resident CTAs.
* cusparseSnnz produced wrong results for some
particular sparsity pattern.
* Deprecated Features
* cusparseXcsrsm2_zeroPivot, cusparseXcsrsm2_solve,
cusparseXcsrsm2_analysis, and
cusparseScsrsm2_bufferSizeExt have been deprecated in
favor of cusparseSpSM Generic APIs
2.5.10. cuSPARSE: Release 11.3
* New FeaturesAdded new routine cusparesSpSV for sparse
triangular solver with better performance. The new Generic
API supports:
* CSR storage format
* Non-transpose, transpose, and transpose-conjugate
operations
* Upper, lower fill mode
* Unit, non-unit diagonal type
* 32-bit and 64-bit indices
* Uniform data type computation
* Deprecated Features
* cusparseScsrsv2_analysis, cusparseScsrsv2_solve,
cusparseXcsrsv2_zeroPivot, and
cusparseScsrsv2_bufferSize have been deprecated in
favor of cusparseSpSV.
2.5.11. cuSPARSE: Release 11.2 Update 2
* Resolved Issues
* cusparseDestroy(NULL) no longer crashes on Windows.
* Known Issues
* cusparseDestroySpVec, cusparseDestroyDnVec,
cusparseDestroySpMat, cusparseDestroyDnMat,
cusparseDestroy with NULL argument could cause
segmentation fault on Windows.
2.5.12. cuSPARSE: Release 11.2 Update 1
* New Features
* New Tensor Core-accelerated Block Sparse Matrix -
Matrix Multiplication (cusparseSpMM) and introduction
of the Blocked-Ellpack storage format.
* New algorithms for CSR/COO Sparse Matrix - Vector
Multiplication (cusparseSpMV) with better performance.
* Extended functionalities for cusparseSpMV:
* Support for the CSC format.
* Support for regular/complex bfloat16 data types
for both uniform and mixed-precision computation.
* Support for mixed regular-complex data type
computation.
* Support for deterministic and non-deterministic
computation.
* New algorithm (CUSPARSE_SPMM_CSR_ALG3) for Sparse
Matrix - Matrix Multiplication (cusparseSpMM) with
better performance especially for small matrices.
* New routine for Sampled Dense Matrix - Dense Matrix
Multiplication (cusparseSDDMM) which deprecated
cusparseConstrainedGeMM and provides better
performance.
* Better accuracy of cusparseAxpby, cusparseRot,
cusparseSpVV for bfloat16 and half regular/complex
data types.
* All routines support NVTX annotation for enhancing the
profiler time line on complex applications.
* Resolved Issues
* cusparseAxpby, cusparseGather, cusparseScatter,
cusparseRot, cusparseSpVV, cusparseSpMV now support
zero-size matrices.
* cusparseCsr2cscEx2 now correctly handles empty
matrices (nnz = 0).
* cusparseXcsr2csr_compress now uses 2-norm for the
comparison of complex values instead of only the real
part.
* Known Issues
cusparseDestroySpVec, cusparseDestroyDnVec,
cusparseDestroySpMat, cusparseDestroyDnMat,
cusparseDestroy with NULL argument could cause
segmentation fault on Windows.
* Deprecated Features
* cusparseConstrainedGeMM has been deprecated in favor
of cusparseSDDMM.
* cusparseCsrmvEx has been deprecated in favor of
cusparseSpMV.
* COO Array of Structure (CooAoS) format has been
deprecated including cusparseCreateCooAoS,
cusparseCooAoSGet, and its support for cusparseSpMV.
2.5.13. cuSPARSE: Release 11.2
* Known Issues
* cusparseXdense2csr provides incorrect results for some
matrix sizes.
2.5.14. cuSPARSE: Release 11.1 Update 1
* New Features
* cusparseSparseToDense
* CSR, CSC, or COO conversion to dense
representation
* Support row-major and column-major layouts
* Support all data types
* Support 32-bit and 64-bit indices
* Provide performance 3x higher than
cusparseXcsc2dense, cusparseXcsr2dense
* cusparseDenseToSparse
* Dense representation to CSR, CSC, or COO
* Support row-major and column-major layouts
* Support all data types
* Support 32-bit and 64-bit indices
* Provide performance 3x higher than
cusparseXcsc2dense, cusparseXcsr2dense
* Known Issues
* cusparseXdense2csr provides incorrect results for some
matrix sizes.
* Deprecated Features
* Legacy conversion routines: cusparseXcsc2dense,
cusparseXcsr2dense, cusparseXdense2csc,
cusparseXdense2csr
2.5.15. cuSPARSE: Release 11.0
* New Features
* Added new Generic APIs for Axpby (cusparseAxpby),
Scatter (cusparseScatter), Gather (cusparseGather),
Givens rotation (cusparseRot). __nv_bfloat16/
__nv_bfloat162 data types and 64-bit indices are also
supported.
*
This release adds the following features for
cusparseSpMM:
* Support for row-major layout for cusparseSpMM for
both CSR and COO format
* Support for 64-bit indices
* Support for __nv_bfloat16 and __nv_bfloat162 data
types
* Support for the following strided batch mode:
*
Ci=A⋅Bi
*
Ci=Ai⋅B
*
Ci=Ai⋅Bi
2.5.16. cuSPARSE: Release 11.0 RC
* New Features
* Added new Generic APIs for Axpby (cusparseAxpby),
Scatter (cusparseScatter), Gather (cusparseGather),
Givens rotation (cusparseRot). __nv_bfloat16/
__nv_bfloat162 data types and 64-bit indices are also
supported.
*
This release adds the following features for
cusparseSpMM:
* Support for row-major layout for cusparseSpMM for
both CSR and COO format
* Support for 64-bit indices
* Support for __nv_bfloat16 and __nv_bfloat162 data
types
* Support for the following strided batch mode:
*
Ci=A⋅Bi
*
Ci=Ai⋅B
*
Ci=Ai⋅Bi
* Added new generic APIs and improved performance for
sparse matrix-sparse matrix multiplication (SpGEMM):
cusparseSpGEMM_workEstimation, cusparseSpGEMM_compute,
and cusparseSpGEMM_copy.
* SpVV: added support for __nv_bfloat16.
* Deprecated FeaturesThe following functions have been
removed:
* cusparse<t>gemmi()
* cusparseXaxpyi, cusparseXgthr, cusparseXgthrz,
cusparseXroti, cusparseXsctr
* Hybrid format enums and helper functions:
cusparseHybPartition_t, cusparseHybPartition_t,
cusparseCreateHybMat, cusparseDestroyHybMat
* Triangular solver enums and helper functions:
cusparseSolveAnalysisInfo_t,
cusparseCreateSolveAnalysisInfo,
cusparseDestroySolveAnalysisInfo
* Sparse dot product: cusparseXdoti, cusparseXdotci
* Sparse matrix-vector multiplication: cusparseXcsrmv,
cusparseXcsrmv_mp
* Sparse matrix-matrix multiplication: cusparseXcsrmm,
cusparseXcsrmm2
* Sparse triangular-single vector solver:
cusparseXcsrsv_analysis, cusparseCsrsv_analysisEx,
cusparseXcsrsv_solve, cusparseCsrsv_solveEx
* Sparse triangular-multiple vectors solver:
cusparseXcsrsm_analysis, cusparseXcsrsm_solve
* Sparse hybrid format solver: cusparseXhybsv_analysis,
cusparseShybsv_solve
* Extra functions: cusparseXcsrgeamNnz, cusparseScsrgeam,
cusparseXcsrgemmNnz, cusparseXcsrgemm
* Incomplete Cholesky Factorization, level 0:
cusparseXcsric0
* Incomplete LU Factorization, level 0: cusparseXcsrilu0,
cusparseCsrilu0Ex
* Tridiagonal Solver: cusparseXgtsv,
cusparseXgtsv_nopivot
* Batched Tridiagonal Solver: cusparseXgtsvStridedBatch
* Reordering: cusparseXcsc2hyb, cusparseXcsr2hyb,
cusparseXdense2hyb, cusparseXhyb2csc, cusparseXhyb2csr,
cusparseXhyb2dense
The following functions have been deprecated:
* SpGEMM: cusparseXcsrgemm2_bufferSizeExt,
cusparseXcsrgemm2Nnz, cusparseXcsrgemm2
2.6. Math Library
2.6.1. CUDA Math: Release 11.6
* New Features
* New half and bfloat16 APIs for addition/multiplication
in round-to-nearest-even mode that do not get
contracted into an fma instruction. Please see
__hadd_rn, __hsub_rn, __hmul_rn, __hadd2_rn,
__hsub2_rn, and __hmul2_rn in
https://docs.nvidia.com/cuda/cuda-math-api/index.html.
2.6.2. CUDA Math: Release 11.5
* Deprecations
* The following undocumented CUDA Math APIs are
deprecated and will be removed in a future release.
Please consider switching to similar intrinsic APIs
documented here:
https://docs.nvidia.com/cuda/cuda-math-api/index.html
* __device__ int mulhi(const int a, const int b)
* __device__ unsigned int mulhi(const unsigned int
a, const unsigned int b)
* __device__ unsigned int mulhi(const int a, const
unsigned int b)
* __device__ unsigned int mulhi(const unsigned int
a, const int b)
* __device__ long long int mul64hi(const long long
int a, const long long int b)
* __device__ unsigned long long int mul64hi(const
unsigned long long int a, const unsigned long long
int b)
* __device__ unsigned long long int mul64hi(const
long long int a, const unsigned long long int b)
* __device__ unsigned long long int mul64hi(const
unsigned long long int a, const long long int b)
* __device__ int float_as_int(const float a)
* __device__ float int_as_float(const int a)
* __device__ unsigned int float_as_uint(const float
a)
* __device__ float uint_as_float(const unsigned int
a)
* __device__ float saturate(const float a)
* __device__ int mul24(const int a, const int b)
* __device__ unsigned int umul24(const unsigned int
a, const unsigned int b)
* __device__ int float2int(const float a, const enum
cudaRoundMode mode = cudaRoundZero)
* __device__ unsigned int float2uint(const float a,
const enum cudaRoundMode mode = cudaRoundZero)
* __device__ float int2float(const int a, const enum
cudaRoundMode mode = cudaRoundNearest)
* __device__ float uint2float(const unsigned int a,
const enum cudaRoundMode mode = cudaRoundNearest)
2.6.3. CUDA Math: Release 11.4
Beginning in 2022, the NVIDIA Math Libraries official hardware
support will follow an N-2 policy, where N is an x100 series
GPU.
2.6.4. CUDA Math: Release 11.3
* Resolved Issues
* Previous releases of CUDA were potentially delivering
incorrect results in some Linux distributions for the
following host Math APIs: sinpi, cospi, sincospi,
sinpif, cospif, sincospif. If passed huge inputs like
7.3748776e+15 or 8258177.5 the results were not equal
to 0 or 1. These have been corrected with this
release.
2.6.5. CUDA Math: Release 11.1
* New Features
* Added host support for half and nv_bfloat16 converts
to/from integer types.
* Added __hcmadd() device only API for fast half2 and
nv_bfloat162 based complex multiply-accumulate.
2.6.6. CUDA Math: Release 11.0 Update 1
* Resolved Issues
* nv_bfloat16 comparison functions could trigger a fault
with misaligned addresses.
* Performance improvements in half and nv_bfloat16 basic
arithmetic implementations.
2.6.7. CUDA Math: Release 11.0 RC
* New Features
* Add arithmetic support for __nv_bfloat16
floating-point data type with 8 bits of exponent, 7
explicit bits of mantissa.
* Performance and accuracy improvements in single
precision math functions: fmodf, expf, exp10f, sinhf,
and coshf.
* Resolved Issues
*
Corrected documented maximum ulp error thresholds in
erfcinvf and powf.
* Improved cuda_fp16.h interoperability with Visual
Studio C++ compiler.
* Updated libdevice user guide and CUDA math API
definitions for j1, j1f, fmod, fmodf, ilogb, and
ilogbf math functions.
2.7. NVIDIA Performance Primitives (NPP)
2.7.1. NPP: Release 11.7
* New Features
* Constant arithmetic functions that use a constant that
is in device memory.
* Resolved Issues
* Bilinear interpolation results for floating point
values do not match with CPU results.
* NPP remap for 64-bit float does not match expected
values from manual calculation, nor does it match IPP
result.
* Compressed Marker Labels Info returns -1000
(NPP_CUDA_KERNEL_EXECUTION_ERROR); resulting
rectangles contains corrupt data.
* LabelMarkers 8Way function can occasionally
incorrectly connect contours that should remain
separate.
* Wiener Border fixes for customer image.
* nppsIntegral_32s fails cuda-memcheck for certain input
sizes.
2.7.2. NPP: Release 11.6 Update 2
* Resolved Issues
* Improved Wiener filter to produce output similar to
the IPP version.
* Enhanced Boxfilter improved performance for large
kernel sizes.
* An issue that caused the FilterUnsharpNew() function
to blur images is resolved.
* Modified the correlation coefficient calculation to
support double precision and aligned the results with
OpenCV/IPP.
* Added double precision support for Normalized
correlation coefficients.
2.7.3. NPP: Release 11.5
* New Features
* New APIs added to compute Signed Anti-aliased Distance
Transform using PBA, the anti-aliased Euclidean
distance between pixel sites in images. This will
improve the accuracy of distance transform.
* nppiSignedDistanceTransformAbsPBA_xxxxx_C1R_Ctx()
– Input and output combination supports (xxxxxx)
- 32f, 32f64f, 64f
* New API for Absolute Manhattan distance transform;
another method to improve the accuracy of distance
transform using Manhattan distance transform between
pixels.
* nppiDistanceTransformAbsPBA_xxxxx_C1R_Ctx() –
Input and output combination supports (xxxxxx) -
8u16u, 8s16u, 16u16u, 16s16u, 8u32f, 8s32f,
16u32f, 16s32f, 8u64f, 8s64f, 16u64f, 16s64f,
32f64f, 64f
* Resolved Issues
* Fixed an issue in FilterMedian() API with add
interpolation when mask even size.
* Improved Contour function performance by parallelizing
more of it and also improving quality.
* Resolved an issue with Alpha composition used to
accumulate output buffers multiple times.
* Resolved an issue with nppiLabelMarkersUF_8u32u_C1R
column processing incorrect results.
2.7.4. NPP: Release 11.4
* New Features
* New API FindContours .FindContours can be explained
simply as a curve joining all the continuous points
(along the boundary), having the same color or
intensity. The contours are a useful tool for shape
analysis and object detection and recognition.
2.7.5. NPP: Release 11.3
* New Features
* Added nppiDistanceTransformPBA functions.
2.7.6. NPP: Release 11.2 Update 2
* New Features
* Added nppiDistanceTransformPBA functions.
2.7.7. NPP: Release 11.2 Update 1
* New FeaturesNew APIs added to compute Distance Transform
using Parallel Banding Algorithm (PBA):
* nppiDistanceTransformPBA_xxxxx_C1R_Ctx() – where
xxxxx specifies the input and output combination:
8u16u, 8s16u, 16u16u, 16s16u, 8u32f, 8s32f, 16u32f,
16s32f
* nppiSignedDistanceTransformPBA_32f_C1R_Ctx()
* Resolved Issues
* Fixed the issue in which Label Markers adds zero pixel
as object region.
2.7.8. NPP: Release 11.0
* New Features
* Batched Image Label Markers Compression that removes
sparseness between marker label IDs output from
LabelMarkers call.
* Image Flood Fill functionality fills a connected
region of an image with a specified new value.
* Stability and performance fixes to Image Label Markers
and Image Label Markers Compression.
2.7.9. NPP: Release 11.0 RC
* New Features
* Batched Image Label Markers Compression that removes
sparseness between marker label IDs output from
LabelMarkers call.
* Image Flood Fill functionality fills a connected
region of an image with a specified new value.
* Added batching support for nppiLabelMarkersUF
functions.
* Added the nppiCompressMarkerLabelsUF_32u_C1IR
function.
*
Added nppiSegmentWatershed functions.
* Added sample apps on GitHub demonstrating the use of
NPP application managed stream contexts along with
watershed segmentation and batched and compressed UF
image label markers functions.
* Added support for non-blocking streams.
* Resolved Issues
* Stability and performance fixes to Image Label Markers
and Image Label Markers Compression.
* Improved quality of nppiLabelMarkersUF functions.
* nppiCompressMarkerLabelsUF_32u_C1IR can now handle a
huge number of labels generated by the
nppiLabelMarkersUF function.
* Known Issues
* The nppiCopy API is limited by CUDA thread for large
image size. Maximum image limits is a minimum of 16 *
65,535 = 1,048,560 horizontal pixels of any data type
and number of channels and 8 * 65,535 = 524,280
vertical pixels for a maximum total of 549,739,036,800
pixels.
2.8. nvJPEG Library
2.8.1. nvJPEG: Release 11.6 Update 2
* Resolved Issues
* Enhanced the encoder to work asynchronously.
* Fixed a minor issue in EXIF parser in which it was
unable to decode one of the ImageNet bitstreams.
2.8.2. nvJPEG: Release 11.5 Update 1
* Resolved Issues
* Fixed the issue in which nvcuvid() released
uncompressed frames causing a memory leak.
2.8.3. nvJPEG: Release 11.4
* Resolved Issues
* Additional subsampling added to solve the
NVJPEG_CSS_2x4.
2.8.4. nvJPEG: Release 11.2 Update 1
* New FeaturesnvJPEG decoder added new APIs to support
region of interest (ROI) based decoding for batched
hardware decoder:
* nvjpegDecodeBatchedEx()
* nvjpegDecodeBatchedSupportedEx()
2.8.5. nvJPEG: Release 11.1 Update 1
* New Features
* Added error handling capabilities for nonstandard JPEG
images.
2.8.6. nvJPEG: Release 11.0 Update 1
* Known Issues
* NVJPEG_BACKEND_GPU_HYBRID has an issue when handling
bit-streams which have corruption in the scan.
2.8.7. nvJPEG: Release 11.0
* New Features
* nvJPEG allows the user to allocate separate memory
pools for each chroma subsampling format. This helps
avoid memory re-allocation overhead. This can be
controlled by passing the newly added flag
NVJPEG_FLAGS_ENABLE_MEMORY_POOLS to the nvjpegCreateEx
API.
* nvJPEG encoder now allow compressed bitstream on the
GPU Memory.
2.8.8. nvJPEG: Release 11.0 RC
* New Features
* nvJPEG allows the user to allocate separate memory
pools for each chroma subsampling format. This helps
avoid memory re-allocation overhead. This can be
controlled by passing the newly added flag
NVJPEG_FLAGS_ENABLE_MEMORY_POOLS to the nvjpegCreateEx
API.
* nvJPEG encoder now allow compressed bitstream on the
GPU Memory.
* Hardware accelerated decode is now supported on NVIDIA
A100.
* The nvJPEG decode API (nvjpegDecodeJpeg()) now has the
flexibility to select the backend when creating
nvjpegJpegDecoder_t object. The user has the option to
call this API instead of making three separate calls
to nvjpegDecodeJpegHost(),
nvjpegDecodeJpegTransferToDevice(), and
nvjpegDecodeJpegDevice().
* Known Issues
* NVJPEG_BACKEND_GPU_HYBRID has an issue when handling
bit-streams which have corruption in the scan.
* Deprecated Features
The following multiphase APIs have been removed:
*
nvjpegStatus_t NVJPEGAPI nvjpegDecodePhaseOne
*
nvjpegStatus_t NVJPEGAPI nvjpegDecodePhaseTwo
*
nvjpegStatus_t NVJPEGAPI nvjpegDecodePhaseThree
*
nvjpegStatus_t NVJPEGAPI nvjpegDecodeBatchedPhaseOne
*
nvjpegStatus_t NVJPEGAPI nvjpegDecodeBatchedPhaseTwo
Notices
-------
Notice
This document is provided for information purposes only and
shall not be regarded as a warranty of a certain
functionality, condition, or quality of a product. NVIDIA
Corporation (“NVIDIA”) makes no representations or
warranties, expressed or implied, as to the accuracy or
completeness of the information contained in this document and
assumes no responsibility for any errors contained herein.
NVIDIA shall have no liability for the consequences or use of
such information or for any infringement of patents or other
rights of third parties that may result from its use. This
document is not a commitment to develop, release, or deliver
any Material (defined below), code, or functionality.
NVIDIA reserves the right to make corrections, modifications,
enhancements, improvements, and any other changes to this
document, at any time without notice.
Customer should obtain the latest relevant information before
placing orders and should verify that such information is
current and complete.
NVIDIA products are sold subject to the NVIDIA standard terms
and conditions of sale supplied at the time of order
acknowledgement, unless otherwise agreed in an individual
sales agreement signed by authorized representatives of NVIDIA
and customer (“Terms of Sale”). NVIDIA hereby expressly
objects to applying any customer general terms and conditions
with regards to the purchase of the NVIDIA product referenced
in this document. No contractual obligations are formed either
directly or indirectly by this document.
NVIDIA products are not designed, authorized, or warranted to
be suitable for use in medical, military, aircraft, space, or
life support equipment, nor in applications where failure or
malfunction of the NVIDIA product can reasonably be expected
to result in personal injury, death, or property or
environmental damage. NVIDIA accepts no liability for
inclusion and/or use of NVIDIA products in such equipment or
applications and therefore such inclusion and/or use is at
customer’s own risk.
NVIDIA makes no representation or warranty that products based
on this document will be suitable for any specified use.
Testing of all parameters of each product is not necessarily
performed by NVIDIA. It is customer’s sole responsibility to
evaluate and determine the applicability of any information
contained in this document, ensure the product is suitable and
fit for the application planned by customer, and perform the
necessary testing for the application in order to avoid a
default of the application or the product. Weaknesses in
customer’s product designs may affect the quality and
reliability of the NVIDIA product and may result in additional
or different conditions and/or requirements beyond those
contained in this document. NVIDIA accepts no liability
related to any default, damage, costs, or problem which may be
based on or attributable to: (i) the use of the NVIDIA product
in any manner that is contrary to this document or (ii)
customer product designs.
No license, either expressed or implied, is granted under any
NVIDIA patent right, copyright, or other NVIDIA intellectual
property right under this document. Information published by
NVIDIA regarding third-party products or services does not
constitute a license from NVIDIA to use such products or
services or a warranty or endorsement thereof. Use of such
information may require a license from a third party under the
patents or other intellectual property rights of the third
party, or a license from NVIDIA under the patents or other
intellectual property rights of NVIDIA.
Reproduction of information in this document is permissible
only if approved in advance by NVIDIA in writing, reproduced
without alteration and in full compliance with all applicable
export laws and regulations, and accompanied by all associated
conditions, limitations, and notices.
THIS DOCUMENT AND ALL NVIDIA DESIGN SPECIFICATIONS, REFERENCE
BOARDS, FILES, DRAWINGS, DIAGNOSTICS, LISTS, AND OTHER
DOCUMENTS (TOGETHER AND SEPARATELY, “MATERIALS”) ARE BEING
PROVIDED “AS IS.” NVIDIA MAKES NO WARRANTIES, EXPRESSED,
IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE
MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF
NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR
PURPOSE. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL
NVIDIA BE LIABLE FOR ANY DAMAGES, INCLUDING WITHOUT LIMITATION
ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE, OR
CONSEQUENTIAL DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE
THEORY OF LIABILITY, ARISING OUT OF ANY USE OF THIS DOCUMENT,
EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES. Notwithstanding any damages that customer might incur
for any reason whatsoever, NVIDIA’s aggregate and cumulative
liability towards customer for the products described herein
shall be limited in accordance with the Terms of Sale for the
product.
OpenCL
OpenCL is a trademark of Apple Inc. used under license to the
Khronos Group Inc.
Trademarks
NVIDIA and the NVIDIA logo are trademarks or registered
trademarks of NVIDIA Corporation in the U.S. and other
countries. Other company and product names may be trademarks
of the respective companies with which they are associated.
Copyright
© 2007-2022 NVIDIA Corporation & affiliates. All rights
reserved.
1. Only available on select Linux distros
-----------------------------------------
|