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
|
copyright=\
Copyright 2013-2015 NVIDIA Corporation. \n\
All rights reserved.
licenseURL=license.html
license=\
End User License Agreement\n\
--------------------------\n\
\n\
\n\
Preface\n\
-------\n\
\n\
The following contains specific license terms and conditions\n\
for four separate NVIDIA products. By accepting this\n\
agreement, you agree to comply with all the terms and\n\
conditions applicable to the specific product(s) included\n\
herein.\n\
\n\
\n\
NVIDIA CUDA Toolkit\n\
\n\
\n\
Description\n\
\n\
The NVIDIA CUDA Toolkit provides command-line and graphical\n\
tools for building, debugging and optimizing the performance\n\
of applications accelerated by NVIDIA GPUs, runtime and math\n\
libraries, and documentation including programming guides,\n\
user manuals, and API references. The NVIDIA CUDA Toolkit\n\
License Agreement is available in Chapter 1.\n\
\n\
\n\
Default Install Location of CUDA Toolkit\n\
\n\
Windows platform:\n\
\n\
%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v#.#\n\
\n\
Linux platform:\n\
\n\
/usr/local/cuda-#.#\n\
\n\
Mac platform:\n\
\n\
/Developer/NVIDIA/CUDA-#.#\n\
\n\
\n\
NVIDIA CUDA Samples\n\
\n\
\n\
Description\n\
\n\
This package includes over 100+ CUDA examples that demonstrate\n\
various CUDA programming principles, and efficient CUDA\n\
implementation of algorithms in specific application domains.\n\
The NVIDIA CUDA Samples License Agreement is available in\n\
Chapter 2.\n\
\n\
\n\
Default Install Location of CUDA Samples\n\
\n\
Windows platform:\n\
\n\
%ProgramData%\NVIDIA Corporation\CUDA Samples\v#.#\n\
\n\
Linux platform:\n\
\n\
/usr/local/cuda-#.#/samples\n\
\n\
and\n\
\n\
$HOME/NVIDIA_CUDA-#.#_Samples\n\
\n\
Mac platform:\n\
\n\
/Developer/NVIDIA/CUDA-#.#/samples\n\
\n\
\n\
NVIDIA Driver\n\
\n\
\n\
Description\n\
\n\
This package contains the operating system driver and\n\
fundamental system software components for NVIDIA GPUs. The\n\
NVIDIA Driver License for the Windows platform is available in\n\
Chapter 3, and the NVIDIA Driver License for the Linux and Mac\n\
OSX platforms is available in Chapter 4.\n\
\n\
\n\
NVIDIA Nsight Visual Studio Edition (Windows only)\n\
\n\
\n\
Description\n\
\n\
NVIDIA Nsight Development Platform, Visual Studio Edition is a\n\
development environment integrated into Microsoft Visual\n\
Studio that provides tools for debugging, profiling, analyzing\n\
and optimizing your GPU computing and graphics applications.\n\
The NVIDIA Nsight Visual Studio Edition License Agreement is\n\
available in Chapter 5.\n\
\n\
\n\
Default Install Location of Nsight Visual Studio Edition\n\
\n\
Windows platform:\n\
\n\
%ProgramFiles%\NVIDIA Corporation\Nsight Visual Studio Edition #.#\n\
\n\
\n\
NVIDIA CUDA General Terms\n\
\n\
\n\
Description\n\
\n\
General terms that apply to all of the software components are\n\
available in Chapter 6.\n\
\n\
\n\
1. NVIDIA CUDA Toolkit License Agreement\n\
----------------------------------------\n\
\n\
\n\
Important Notice\n\
----------------\n\
\n\
READ CAREFULLY: This Software License Agreement ("Agreement")\n\
for NVIDIA CUDA Toolkit, including computer software and\n\
associated documentation ("Software"), is the Agreement which\n\
governs use of the SOFTWARE of NVIDIA Corporation and its\n\
subsidiaries ("NVIDIA") downloadable herefrom. By downloading,\n\
installing, copying, or otherwise using the SOFTWARE, You (as\n\
defined below) agree to be bound by the terms of this\n\
Agreement. If You do not agree to the terms of this Agreement,\n\
do not download the SOFTWARE.\n\
\n\
\n\
Recitals\n\
--------\n\
\n\
Use of NVIDIA's SOFTWARE requires three elements: the\n\
SOFTWARE, an NVIDIA GPU or application processor ("NVIDIA\n\
Hardware"), and a computer system. The SOFTWARE is protected\n\
by copyright laws and international copyright treaties, as\n\
well as other intellectual property laws and treaties. The\n\
SOFTWARE is not sold, and instead is only licensed for Your\n\
use, strictly in accordance with this Agreement. The NVIDIA\n\
Hardware is protected by various patents, and is sold, but\n\
this Agreement does not cover the sale or use of such\n\
hardware, since it may not necessarily be sold as a package\n\
with the SOFTWARE. This Agreement sets forth the terms and\n\
conditions of the SOFTWARE only.\n\
\n\
\n\
1.1. Definitions\n\
\n\
\n\
1.1.1. Licensee\n\
\n\
"You", or "Your" shall mean the entity or individual that\n\
downloads and uses the SOFTWARE.\n\
\n\
\n\
1.1.2. Redistributable Software\n\
\n\
"Redistributable Software" shall mean the redistributable\n\
libraries referenced in Attachment A of this Agreement.\n\
\n\
\n\
1.1.3. Software\n\
\n\
"SOFTWARE" shall mean the deliverables provided pursuant to\n\
this Agreement. SOFTWARE may be provided in either source or\n\
binary form, at NVIDIA's discretion.\n\
\n\
\n\
1.2. Grant of License\n\
\n\
\n\
1.2.1. Rights and Limitations of Grant\n\
\n\
Provided that Licensee complies with the terms of this\n\
Agreement, NVIDIA hereby grants Licensee the following\n\
limited, non-exclusive, non-transferable, non-sublicensable\n\
(except as expressly permitted otherwise for Redistributable\n\
Software in Section 1.2.1.1 and Section 1.2.1.3 of this\n\
Agreement) right to use the SOFTWARE -- and, if the SOFTWARE\n\
is provided in source form, to compile the SOFTWARE -- with\n\
the following limitations:\n\
\n\
\n\
1.2.1.1. Redistribution Rights\n\
\n\
Licensee may transfer, redistribute, and sublicense certain\n\
files of the Redistributable SOFTWARE, as defined in\n\
Attachment A of this Agreement, provided, however, that (a)\n\
the Redistributable SOFTWARE shall be distributed solely in\n\
binary form to Licensee's licensees ("Customers") only as a\n\
component of Licensee's own software products (each, a\n\
"Licensee Application"); (b) Licensee shall design the\n\
Licensee Application such that the Redistributable SOFTWARE\n\
files are installed only in a private (non-shared) directory\n\
location that is used only by the Licensee Application; (c)\n\
Licensee shall obtain each Customer's written or clickwrap\n\
agreement to the license terms under a written, legally\n\
enforceable agreement that has the effect of protecting the\n\
SOFTWARE and the rights of NVIDIA under terms no less\n\
restrictive than this Agreement.\n\
\n\
\n\
1.2.1.2. Usage Rights\n\
\n\
Licensee may install and use multiple copies of the SOFTWARE\n\
on a shared computer or concurrently on different computers,\n\
and make multiple back-up copies of the SOFTWARE, solely for\n\
Licensee's use within Licensee's Enterprise. "Enterprise"\n\
shall mean individual use by Licensee or any legal entity\n\
(such as a corporation or university) and the subsidiaries it\n\
owns by more than 50 percent.\n\
\n\
\n\
1.2.1.3. Further Redistribution Rights\n\
\n\
Subject to the terms and conditions of the Agreement, Licensee\n\
may authorize Customers to further redistribute the\n\
Redistributable SOFTWARE that such Customers receive as part\n\
of the Licensee Application, solely in binary form, provided,\n\
however, that Licensee shall require in their standard\n\
software license agreements with Customers that all such\n\
redistributions must be made pursuant to a license agreement\n\
that has the effect of protecting the SOFTWARE and the rights\n\
of NVIDIA whose terms and conditions are at least as\n\
restrictive as those in the applicable Licensee software\n\
license agreement covering the Licensee Application. For\n\
avoidance of doubt, termination of this Agreement shall not\n\
affect rights previously granted by Licensee to its Customers\n\
under this Agreement to the extent validly granted to\n\
Customers under Section 1.2.1.1.\n\
\n\
\n\
1.2.1.4. Linux/FreeBSD Exception\n\
\n\
Notwithstanding the foregoing terms of Section 1.2.1.2,\n\
Section 1.2.1.1 and Section 1.2.1.3, SOFTWARE designed\n\
exclusively for use on the Linux or FreeBSD operating systems,\n\
or other operating systems derived from the source code to\n\
these operating systems, may be copied and redistributed,\n\
provided that the binary files thereof are not modified in any\n\
way (except for unzipping of compressed files).\n\
\n\
\n\
1.2.1.5. Additional Licensing Obligations\n\
\n\
Licensee acknowledges and agrees that its use of certain third\n\
party components included with the SOFTWARE may be subject to\n\
additional licensing terms and conditions as set forth or\n\
referenced in Attachment B of this Agreement.\n\
\n\
\n\
1.2.1.6. Limitations\n\
\n\
No Reverse Engineering\n\
\n\
If the SOFTWARE is provided in binary form, Licensee may not\n\
reverse engineer, decompile, or disassemble the SOFTWARE, nor\n\
attempt in any other manner to obtain the source code.\n\
\n\
No Separation of Components\n\
\n\
The SOFTWARE is licensed as a single product. Except as\n\
authorized in this Agreement, Software component parts of the\n\
Software may not be separated for use on more than one\n\
computer, nor otherwise used separately from the other parts.\n\
\n\
No Rental\n\
\n\
Licensee may not rent or lease the SOFTWARE to someone else.\n\
\n\
No Modifications\n\
\n\
If the SOFTWARE is provided in source form, Licensee may not\n\
modify or create derivative works of the SOFTWARE.\n\
\n\
\n\
1.3. Term and Termination\n\
\n\
This Agreement will continue in effect for two (2) years\n\
("Initial Term") after Your initial download and use of the\n\
SOFTWARE, subject to the exclusive right of NVIDIA to\n\
terminate as provided herein. The term of this Agreement will\n\
automatically renew for successive one (1) year renewal terms\n\
after the Initial Term, unless either party provides to the\n\
other party at least three (3) months prior written notice of\n\
termination before the end of the applicable renewal term.\n\
\n\
This Agreement will automatically terminate if Licensee fails\n\
to comply with any of the terms and conditions hereof. In such\n\
event, Licensee must destroy all copies of the SOFTWARE and\n\
all of its component parts.\n\
\n\
\n\
Defensive Suspension\n\
\n\
If Licensee commences or participates in any legal proceeding\n\
against NVIDIA, then NVIDIA may, in its sole discretion,\n\
suspend or terminate all license grants and any other rights\n\
provided under this Agreement during the pendency of such\n\
legal proceedings.\n\
\n\
\n\
1.4. Copyright\n\
\n\
All rights, title, interest and copyrights in and to the\n\
SOFTWARE (including but not limited to all images,\n\
photographs, animations, video, audio, music, text, and other\n\
information incorporated into the SOFTWARE), the accompanying\n\
printed materials, and any copies of the SOFTWARE, are owned\n\
by NVIDIA, or its suppliers. The SOFTWARE is protected by\n\
copyright laws and international treaty provisions.\n\
Accordingly, Licensee is required to treat the SOFTWARE like\n\
any other copyrighted material, except as otherwise allowed\n\
pursuant to this Agreement and that it may make one copy of\n\
the SOFTWARE solely for backup or archive purposes.\n\
\n\
RESTRICTED RIGHTS NOTICE. Software has been developed entirely\n\
at private expense and is commercial computer software\n\
provided with RESTRICTED RIGHTS. Use, duplication or\n\
disclosure by the U.S. Government or a U.S. Government\n\
subcontractor is subject to the restrictions set forth in the\n\
Agreement under which Software was obtained pursuant to DFARS\n\
227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2)\n\
of the Commercial Computer Software - Restricted Rights clause\n\
at FAR 52.227-19, as applicable. Contractor/manufacturer is\n\
NVIDIA, 2701 San Tomas Expressway, Santa Clara, CA 95050.\n\
\n\
\n\
1.5. Applicable Law\n\
\n\
This Agreement shall be deemed to have been made in, and shall\n\
be construed pursuant to, the laws of the State of Delaware.\n\
The United Nations Convention on Contracts for the\n\
International Sale of Goods is specifically disclaimed. The\n\
courts of Santa Clara County, California shall have exclusive\n\
jurisdiction and venue over any dispute arising out of or\n\
relating to this Agreement.\n\
\n\
\n\
1.6. Disclaimer of Warranties and Limitations on Liability\n\
\n\
\n\
1.6.1. No Warranties\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE\n\
SOFTWARE IS PROVIDED "AS IS" AND NVIDIA AND ITS SUPPLIERS\n\
DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING,\n\
BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY,\n\
FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.\n\
\n\
\n\
1.6.2. No Liability for Consequential Damages\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT\n\
SHALL NVIDIA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,\n\
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER\n\
(INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS\n\
PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,\n\
OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR\n\
INABILITY TO USE THE SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED\n\
OF THE POSSIBILITY OF SUCH DAMAGES.\n\
\n\
\n\
1.6.3. No Support\n\
\n\
NVIDIA has no obligation to support or to provide any updates\n\
of the Software.\n\
\n\
\n\
1.7. Miscellaneous\n\
\n\
\n\
1.7.1. Feedback\n\
\n\
Notwithstanding any Non-Disclosure Agreement executed by and\n\
between the parties, the parties agree that in the event\n\
Licensee or NVIDIA provides Feedback (as defined below) to the\n\
other party on how to design, implement, or improve the\n\
SOFTWARE or Licensee's product(s) for use with the SOFTWARE,\n\
the following terms and conditions apply the Feedback:\n\
\n\
\n\
1.7.1.1. Exchange of Feedback\n\
\n\
Both parties agree that neither party has an obligation to\n\
give the other party any suggestions, comments or other\n\
feedback, whether verbally or in written or source code form,\n\
relating to (i) the SOFTWARE; (ii) Licensee's products; (iii)\n\
Licensee's use of the SOFTWARE; or (iv)\n\
optimization/interoperability of Licensee's product with the\n\
SOFTWARE (collectively defined as "Feedback"). In the event\n\
either party provides Feedback to the other party, the party\n\
receiving the Feedback may use any Feedback that the other\n\
party voluntarily provides to improve the (i) SOFTWARE or\n\
other related NVIDIA technologies, respectively for the\n\
benefit of NVIDIA; or (ii) Licensee's product or other related\n\
Licensee technologies, respectively for the benefit of\n\
Licensee. Accordingly, if either party provides Feedback to\n\
the other party, both parties agree that the other party and\n\
its respective licensees may freely use, reproduce, license,\n\
distribute, and otherwise commercialize the Feedback in the\n\
(i) SOFTWARE or other related technologies; or (ii) Licensee's\n\
products or other related technologies, respectively, without\n\
the payment of any royalties or fees.\n\
\n\
\n\
1.7.1.2. Residual Rights\n\
\n\
Licensee agrees that NVIDIA shall be free to use any general\n\
knowledge, skills and experience, (including, but not limited\n\
to, ideas, concepts, know-how, or techniques) ("Residuals"),\n\
contained in the (i) Feedback provided by Licensee to NVIDIA;\n\
(ii) Licensee's products shared or disclosed to NVIDIA in\n\
connection with the Feedback; or (c) Licensee's confidential\n\
information voluntarily provided to NVIDIA in connection with\n\
the Feedback, which are retained in the memories of NVIDIA's\n\
employees, agents, or contractors who have had access to such\n\
Residuals. Subject to the terms and conditions of this\n\
Agreement, NVIDIA's employees, agents, or contractors shall\n\
not be prevented from using Residuals as part of such\n\
employee's, agent's or contractor's general knowledge, skills,\n\
experience, talent, and/or expertise. NVIDIA shall not have\n\
any obligation to limit or restrict the assignment of such\n\
employees, agents or contractors or to pay royalties for any\n\
work resulting from the use of Residuals.\n\
\n\
\n\
1.7.1.3. Disclaimer of Warranty\n\
\n\
FEEDBACK FROM EITHER PARTY IS PROVIDED FOR THE OTHER PARTY'S\n\
USE "AS IS" AND BOTH PARTIES DISCLAIM ALL WARRANTIES, EXPRESS,\n\
IMPLIED AND STATUTORY INCLUDING, WITHOUT LIMITATION, THE\n\
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n\
PARTICULAR PURPOSE, OR NONINFRINGEMENT. BOTH PARTIES DO NOT\n\
REPRESENT OR WARRANT THAT THE FEEDBACK WILL MEET THE OTHER\n\
PARTY'S REQUIREMENTS OR THAT THE OPERATION OR IMPLEMENTATION\n\
OF THE FEEDBACK WILL BE UNINTERRUPTED OR ERROR-FREE.\n\
\n\
\n\
1.7.1.4. No Liability for Consequential Damages\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT\n\
SHALL EITHER PARTY OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,\n\
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER\n\
(INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS\n\
PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,\n\
OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR\n\
INABILITY TO USE THE FEEDBACK, EVEN IF THE OTHER PARTY HAS\n\
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\
\n\
\n\
1.7.2. Freedom of Action\n\
\n\
Licensee agrees that this Agreement is nonexclusive and NVIDIA\n\
may currently or in the future be developing software, other\n\
technology or confidential information internally, or\n\
receiving confidential information from other parties that\n\
maybe similar to the Feedback and Licensee's confidential\n\
information (as provided in Section 1.7.1.2 above), which may\n\
be provided to NVIDIA in connection with Feedback by Licensee.\n\
Accordingly, Licensee agrees that nothing in this Agreement\n\
will be construed as a representation or inference that NVIDIA\n\
will not develop, design, manufacture, acquire, market\n\
products, or have products developed, designed, manufactured,\n\
acquired, or marketed for NVIDIA, that compete with the\n\
Licensee's products or confidential information.\n\
\n\
\n\
1.7.3. No Implied Licenses\n\
\n\
Under no circumstances should anything in this Agreement be\n\
construed as NVIDIA granting by implication, estoppel or\n\
otherwise, (i) a license to any NVIDIA product or technology\n\
other than the SOFTWARE; or (ii) any additional license rights\n\
for the SOFTWARE other than the licenses expressly granted in\n\
this Agreement.\n\
\n\
\n\
1.7.4. \n\
\n\
If any provision of this Agreement is inconsistent with, or\n\
cannot be fully enforced under, the law, such provision will\n\
be construed as limited to the extent necessary to be\n\
consistent with and fully enforceable under the law. This\n\
Agreement is the final, complete and exclusive agreement\n\
between the parties relating to the subject matter hereof, and\n\
supersedes all prior or contemporaneous understandings and\n\
agreements relating to such subject matter, whether oral or\n\
written. This Agreement may only be modified in writing signed\n\
by an authorized officer of NVIDIA. Licensee agrees that it\n\
will not ship, transfer or export the SOFTWARE into any\n\
country, or use the SOFTWARE in any manner, prohibited by the\n\
United States Bureau of Industry and Security or any export\n\
laws, restrictions or regulations.\n\
\n\
\n\
1.7.5. \n\
\n\
The parties agree that the following sections of the Agreement\n\
will survive the termination of the License: Section 1.2.1.4,\n\
Section 1.4, Section 1.5, Section 1.6, and Section 1.7.\n\
\n\
\n\
1.8. Attachment A\n\
\n\
\n\
Redistributable Software\n\
\n\
In connection with Section 1.2.1.1 of this Agreement, the\n\
following files may be redistributed with software\n\
applications developed by Licensee, including certain\n\
variations of these files that have version number or\n\
architecture specific information embedded in the file name -\n\
as an example only, for release version 6.0 of the 64-bit\n\
Windows software, the file cudart64_60.dll is redistributable.\n\
\n\
Component : CUDA Runtime\n\
Windows : cudart.dll, cudart_static.lib, cudadevrt.lib\n\
Mac OSX : libcudart.dylib, libcudart_static.a, libcudadevrt.a\n\
Linux : libcudart.so, libcudart_static.a, libcudadevrt.a\n\
Android : libcudart.so, libcudart_static.a, libcudadevrt.a\n\
\n\
Component : CUDA FFT Library\n\
Windows : cufft.dll, cufftw.dll\n\
Mac OSX : libcufft.dylib, libcufft_static.a, libcufftw.dylib, libcufftw_static.a\n\
Linux : libcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a\n\
Android : libcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a\n\
\n\
Component : CUDA BLAS Library\n\
Windows : cublas.dll, cublas_device.lib\n\
Mac OSX : libcublas.dylib, libcublas_static.a, libcublas_device.a\n\
Linux : libcublas.so, libcublas_static.a, libcublas_device.a\n\
Android : libcublas.so, libcublas_static.a, libcublas_device.a\n\
\n\
Component : NVIDIA "Drop-in" BLAS Library\n\
Windows : nvblas.dll\n\
Mac OSX : libnvblas.dylib\n\
Linux : libnvblas.so\n\
\n\
Component : CUDA Sparse Matrix Library\n\
Windows : cusparse.dll\n\
Mac OSX : libcusparse.dylib, libcusparse_static.a\n\
Linux : libcusparse.so, libcusparse_static.a\n\
Android : libcusparse.so, libcusparse_static.a\n\
\n\
Component : CUDA Random Number Generation Library\n\
Windows : curand.dll\n\
Mac OSX : libcurand.dylib, libcurand_static.a\n\
Linux : libcurand.so, libcurand_static.a\n\
Android : libcurand.so, libcurand_static.a\n\
\n\
Component : NVIDIA Performance Primitives Library\n\
Windows : nppc.dll, nppi.dll, npps.dll\n\
Mac OSX : libnppc.dylib, libnppi.dylib, libnpps.dylib, libnppc_static.a, libnpps_static.a, libnppi_static.a\n\
Linux : libnppc.so, libnppi.so, libnpps.so, libnppc_static.a, libnpps_static.a, libnppi_static.a\n\
Android : libnppc.so, libnppi.so, libnpps.so, libnppc_static.a, libnpps_static.a, libnppi_static.a\n\
\n\
Component : Internal common library required for statically linking to cuBLAS, cuSPARSE, cuFFT, cuRAND and NPP\n\
Mac OSX : libculibos.a\n\
Linux : libculibos.a\n\
\n\
Component : NVIDIA Optimizing Compiler Library\n\
Windows : nvvm.dll\n\
Mac OSX : libnvvm.dylib\n\
Linux : libnvvm.so\n\
\n\
Component : NVIDIA Common Device Math Functions Library\n\
Windows : libdevice.compute_20.bc, libdevice.compute_30.bc, libdevice.compute_35.bc\n\
Mac OSX : libdevice.compute_20.bc, libdevice.compute_30.bc, libdevice.compute_35.bc\n\
Linux : libdevice.compute_20.bc, libdevice.compute_30.bc, libdevice.compute_35.bc\n\
\n\
Component : CUDA Occupancy Calculation Header Library\n\
All : cuda_occupancy.h\n\
\n\
Component : Profiling Tools Interface Library\n\
Windows : cupti.dll\n\
Mac OSX : libcupti.dylib\n\
Linux : libcupti.so\n\
\n\
\n\
\n\
1.9. Attachment B\n\
\n\
\n\
Additional Licensing Obligations\n\
\n\
The following third party components included in the SOFTWARE\n\
are licensed to Licensee pursuant to the following terms and\n\
conditions:\n\
\n\
1. Licensee's use of the following third party components is\n\
subject to the terms and conditions of GNU GPL v2.0:\n\
\n\
a. gdb\n\
\n\
b. Open64\n\
\n\
This product includes copyrighted third-party software\n\
licensed under the terms of the GNU General Public License\n\
v2.0 ("GPL v2.0). All third-party software packages are\n\
copyright by their respective authors. GPL v2.0 terms and\n\
conditions are hereby incorporated into the Agreement by\n\
this reference.\n\
http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n\
\n\
2. Licensee's use of the following third party components is\n\
subject to the terms and conditions of GNU GPL v3.0:\n\
\n\
a. gcc front-end v2.2\n\
\n\
This product includes copyrighted third-party software licensed under \n\
the terms of the GNU General Public License v2.0 ("GPL v2.0). All \n\
third-party software packages are copyright by their respective \n\
authors. GPL v2.0 terms and conditions are hereby incorporated into \n\
the Agreement by this reference.\n\
\n\
http://www.gnu.org/licenses/gpl.html \n\
\n\
3. Licensee represents and warrants that any and all third\n\
party licensing and/or royalty payment obligations in\n\
connection with Licensee's use of the H.264 video codecs\n\
are solely the responsibility of Licensee.\n\
\n\
4. Licensee's use of the Thrust library is subject to the\n\
terms and conditions of the Apache License Version 2.0.\n\
All third-party software packages are copyright by their\n\
respective authors. Apache License Version 2.0 terms and\n\
conditions are hereby incorporated into the Agreement by\n\
this reference.\n\
http://www.apache.org/licenses/LICENSE-2.0.html\n\
\n\
In addition, Licensee acknowledges the following notice:\n\
Thrust includes source code from the Boost Iterator,\n\
Tuple, System, and Random Number libraries.\n\
\n\
Boost Software License - Version 1.0 - August 17th, 2003\n\
. . . .\n\
\n\
Permission is hereby granted, free of charge, to any person or \n\
organization obtaining a copy of the software and accompanying \n\
documentation covered by this license (the "Software") to use, \n\
reproduce, display, distribute, execute, and transmit the Software, \n\
and to prepare derivative works of the Software, and to permit \n\
third-parties to whom the Software is furnished to do so, all \n\
subject to the following:\n\
\n\
The copyright notices in the Software and this entire statement, \n\
including the above license grant, this restriction and the following \n\
disclaimer, must be included in all copies of the Software, in whole \n\
or in part, and all derivative works of the Software, unless such \n\
copies or derivative works are solely in the form of machine-executable \n\
object code generated by a source language processor.\n\
\n\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, \n\
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \n\
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND \n\
NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR \n\
ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR \n\
OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING \n\
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR \n\
OTHER DEALINGS IN THE SOFTWARE. \n\
\n\
5. Licensee's use of the LLVM third party component is\n\
subject to the following terms and conditions:\n\
\n\
======================================================\n\
LLVM Release License\n\
======================================================\n\
University of Illinois/NCSA\n\
Open Source License\n\
\n\
Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.\n\
All rights reserved.\n\
\n\
Developed by:\n\
\n\
LLVM Team\n\
\n\
University of Illinois at Urbana-Champaign\n\
\n\
http://llvm.org\n\
\n\
Permission is hereby granted, free of charge, to any person obtaining a copy\n\
of this software and associated documentation files (the "Software"), to \n\
deal with the Software without restriction, including without limitation the\n\
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or \n\
sell copies of the Software, and to permit persons to whom the Software is \n\
furnished to do so, subject to the following conditions:\n\
\n\
* Redistributions of source code must retain the above copyright notice, \n\
this list of conditions and the following disclaimers.\n\
\n\
* Redistributions in binary form must reproduce the above copyright \n\
notice, this list of conditions and the following disclaimers in the \n\
documentation and/or other materials provided with the distribution.\n\
\n\
* Neither the names of the LLVM Team, University of Illinois at Urbana-\n\
Champaign, nor the names of its contributors may be used to endorse or\n\
promote products derived from this Software without specific prior \n\
written permission.\n\
\n\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \n\
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \n\
THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR \n\
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n\
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n\
DEALINGS WITH THE SOFTWARE. \n\
\n\
6. Licensee's use of the PCRE third party component is\n\
subject to the following terms and conditions:\n\
\n\
------------\n\
PCRE LICENCE\n\
------------\n\
PCRE is a library of functions to support regular expressions whose syntax\n\
and semantics are as close as possible to those of the Perl 5 language.\n\
Release 8 of PCRE is distributed under the terms of the "BSD" licence, as\n\
specified below. The documentation for PCRE, supplied in the "doc" \n\
directory, is distributed under the same terms as the software itself. The\n\
basic library functions are written in C and are freestanding. Also \n\
included in the distribution is a set of C++ wrapper functions, and a just-\n\
in-time compiler that can be used to optimize pattern matching. These are \n\
both optional features that can be omitted when the library is built.\n\
\n\
THE BASIC LIBRARY FUNCTIONS\n\
---------------------------\n\
Written by: Philip Hazel\n\
Email local part: ph10\n\
Email domain: cam.ac.uk\n\
University of Cambridge Computing Service,\n\
Cambridge, England.\n\
Copyright (c) 1997-2012 University of Cambridge\n\
All rights reserved.\n\
\n\
PCRE JUST-IN-TIME COMPILATION SUPPORT\n\
-------------------------------------\n\
Written by: Zoltan Herczeg\n\
Email local part: hzmester\n\
Emain domain: freemail.hu\n\
Copyright(c) 2010-2012 Zoltan Herczeg\n\
All rights reserved.\n\
\n\
STACK-LESS JUST-IN-TIME COMPILER\n\
--------------------------------\n\
Written by: Zoltan Herczeg\n\
Email local part: hzmester\n\
Emain domain: freemail.hu\n\
Copyright(c) 2009-2012 Zoltan Herczeg\n\
All rights reserved.\n\
\n\
THE C++ WRAPPER FUNCTIONS\n\
-------------------------\n\
Contributed by: Google Inc.\n\
Copyright (c) 2007-2012, Google Inc.\n\
All rights reserved.\n\
\n\
THE "BSD" LICENCE\n\
-----------------\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are met:\n\
\n\
* Redistributions of source code must retain the above copyright notice, \n\
this list of conditions and the following disclaimer.\n\
\n\
* Redistributions in binary form must reproduce the above copyright \n\
notice, this list of conditions and the following disclaimer in the \n\
documentation and/or other materials provided with the distribution.\n\
\n\
* Neither the name of the University of Cambridge nor the name of Google \n\
Inc. nor the names of their contributors may be used to endorse or \n\
promote products derived from this software without specific prior \n\
written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\n\
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \n\
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \n\
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE \n\
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \n\
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF \n\
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \n\
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \n\
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \n\
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \n\
POSSIBILITY OF SUCH DAMAGE. \n\
\n\
7. Some of the cuBLAS library routines were written by or\n\
derived from code written by Vasily Volkov and are subject\n\
to the Modified Berkeley Software Distribution License as\n\
follows:\n\
\n\
Copyright (c) 2007-2009, Regents of the University of California\n\
\n\
All rights reserved.\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following\n\
disclaimer in the documentation and/or other materials provided\n\
with the distribution.\n\
* Neither the name of the University of California, Berkeley nor\n\
the names of its contributors may be used to endorse or promote\n\
products derived from this software without specific prior\n\
written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR\n\
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n\
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n\
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n\
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n\
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n\
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n\
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n\
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n\
POSSIBILITY OF SUCH DAMAGE. \n\
\n\
8. Some of the cuBLAS library routines were written by or\n\
derived from code written by Davide Barbieri and are\n\
subject to the Modified Berkeley Software Distribution\n\
License as follows:\n\
\n\
Copyright (c) 2008-2009 Davide Barbieri @ University of Rome Tor Vergata.\n\
\n\
All rights reserved.\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following\n\
disclaimer in the documentation and/or other materials provided\n\
with the distribution.\n\
* The name of the author may not be used to endorse or promote\n\
products derived from this software without specific prior\n\
written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR\n\
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n\
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n\
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n\
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n\
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n\
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n\
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING\n\
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n\
POSSIBILITY OF SUCH DAMAGE. \n\
\n\
9. Some of the cuBLAS library routines were derived from\n\
code developed by the University of Tennessee and are\n\
subject to the Modified Berkeley Software Distribution\n\
License as follows:\n\
\n\
Copyright (c) 2010 The University of Tennessee.\n\
\n\
All rights reserved.\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following\n\
disclaimer listed in this license in the documentation and/or\n\
other materials provided with the distribution.\n\
* Neither the name of the copyright holders nor the names of its\n\
contributors may be used to endorse or promote products derived\n\
from this software without specific prior written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n\
\n\
10. Some of the cuBLAS library routines were written by or\n\
derived from code written by Jonathan Hogg and are subject\n\
to the Modified Berkeley Software Distribution License as\n\
follows:\n\
\n\
Copyright (c) 2012, The Science and Technology Facilities Council (STFC).\n\
\n\
All rights reserved.\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following\n\
disclaimer in the documentation and/or other materials provided\n\
with the distribution.\n\
* Neither the name of the STFC nor the names of its contributors\n\
may be used to endorse or promote products derived from this\n\
software without specific prior written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE STFC BE\n\
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n\
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n\
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n\
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n\
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n\
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n\
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n\
\n\
11. Some of the cuBLAS library routines were written by or\n\
derived from code written by Ahmad M. Abdelfattah, David\n\
Keyes, and Hatem Ltaief, and are subject to the Apache\n\
License, Version 2.0, as follows:\n\
\n\
-- (C) Copyright 2013 King Abdullah University of Science and Technology\n\
Authors:\n\
Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa)\n\
David Keyes (david.keyes@kaust.edu.sa)\n\
Hatem Ltaief (hatem.ltaief@kaust.edu.sa)\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions\n\
are met:\n\
\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above copyright\n\
notice, this list of conditions and the following disclaimer in the\n\
documentation and/or other materials provided with the distribution.\n\
* Neither the name of the King Abdullah University of Science and\n\
Technology nor the names of its contributors may be used to endorse \n\
or promote products derived from this software without specific prior \n\
written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\
HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE \n\
\n\
12. Some of the cuSPARSE library routines were written by or\n\
derived from code written by Li-Wen Chang and are subject\n\
to the NCSA Open Source License as follows:\n\
\n\
Copyright (c) 2012, University of Illinois.\n\
\n\
All rights reserved.\n\
\n\
Developed by: IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu\n\
\n\
Permission is hereby granted, free of charge, to any person obtaining\n\
a copy of this software and associated documentation files (the\n\
"Software"), to deal with the Software without restriction, including\n\
without limitation the rights to use, copy, modify, merge, publish,\n\
distribute, sublicense, and/or sell copies of the Software, and to\n\
permit persons to whom the Software is furnished to do so, subject to\n\
the following conditions:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following\n\
disclaimers in the documentation and/or other materials provided\n\
with the distribution.\n\
* Neither the names of IMPACT Group, University of Illinois, nor\n\
the names of its contributors may be used to endorse or promote\n\
products derived from this Software without specific prior\n\
written permission.\n\
\n\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\n\
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n\
NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT\n\
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n\
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR\n\
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\n\
SOFTWARE. \n\
\n\
13. Some of the cuRAND library routines were written by or\n\
derived from code written by Mutsuo Saito and Makoto\n\
Matsumoto and are subject to the following license:\n\
\n\
Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima\n\
University. All rights reserved.\n\
\n\
Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima\n\
University and University of Tokyo. All rights reserved.\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following\n\
disclaimer in the documentation and/or other materials provided\n\
with the distribution.\n\
* Neither the name of the Hiroshima University nor the names of\n\
its contributors may be used to endorse or promote products\n\
derived from this software without specific prior written\n\
permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n\
\n\
14. Some of the cuRAND library routines were derived from\n\
code developed by D. E. Shaw Research and are subject to\n\
the following license:\n\
\n\
Copyright 2010-2011, D. E. Shaw Research.\n\
\n\
All rights reserved.\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions, and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions, and the following\n\
disclaimer in the documentation and/or other materials provided\n\
with the distribution.\n\
* Neither the name of D. E. Shaw Research nor the names of its\n\
contributors may be used to endorse or promote products derived\n\
from this software without specific prior written permission.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n\
\n\
15. Licensee's use of the lz4 third party component is\n\
subject to the following terms and conditions:\n\
\n\
Copyright (C) 2011-2013, Yann Collet.\n\
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)\n\
\n\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions are\n\
met:\n\
\n\
* Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
* Redistributions in binary form must reproduce the above\n\
copyright notice, this list of conditions and the following disclaimer\n\
in the documentation and/or other materials provided with the\n\
distribution.\n\
\n\
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n\
\n\
16. The NPP library uses code from the Boost Math Toolkit,\n\
and is subject to the following license:\n\
\n\
Boost Software License - Version 1.0 - August 17th, 2003\n\
. . . .\n\
\n\
Permission is hereby granted, free of charge, to any person or \n\
organization obtaining a copy of the software and accompanying \n\
documentation covered by this license (the "Software") to use, \n\
reproduce, display, distribute, execute, and transmit the Software, \n\
and to prepare derivative works of the Software, and to permit \n\
third-parties to whom the Software is furnished to do so, all \n\
subject to the following:\n\
\n\
The copyright notices in the Software and this entire statement, \n\
including the above license grant, this restriction and the following \n\
disclaimer, must be included in all copies of the Software, in whole \n\
or in part, and all derivative works of the Software, unless such \n\
copies or derivative works are solely in the form of machine-executable \n\
object code generated by a source language processor.\n\
\n\
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, \n\
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \n\
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND \n\
NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR \n\
ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR \n\
OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING \n\
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR \n\
OTHER DEALINGS IN THE SOFTWARE. \n\
\n\
\n\
2. NVIDIA Corporation CUDA Samples End User License Agreement\n\
-------------------------------------------------------------\n\
\n\
BY DOWNLOADING THE SOFTWARE AND OTHER AVAILABLE MATERIALS, YOU\n\
("DEVELOPER" or "LICENSEE") AGREE TO BE BOUND BY THE FOLLOWING\n\
TERMS AND CONDITIONS OF THIS AGREEMENT. IF DEVELOPER DOES NOT\n\
AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, THEN DO\n\
NOT DOWNLOAD THE SOFTWARE AND MATERIALS.\n\
\n\
The materials available for download to Developers may include\n\
software in both sample source ("Source Code") and object code\n\
("Object Code") versions, documentation ("Documentation"),\n\
certain art work ("Art Assets") and other materials\n\
(collectively, these materials referred to herein as\n\
"Materials"). Except as expressly indicated herein, all terms\n\
and conditions of this Agreement apply to all of the\n\
Materials.\n\
\n\
Except as expressly set forth herein, NVIDIA owns all of the\n\
Materials and makes them available to Developer only under the\n\
terms and conditions set forth in this Agreement.\n\
\n\
\n\
2.1. License\n\
\n\
Subject to the terms of this Agreement, NVIDIA hereby grants\n\
to Developer a royalty-free, non-exclusive license to possess\n\
and to use the Materials. Developer may install and use\n\
multiple copies of the Materials on a shared computer or\n\
concurrently on different computers, and make multiple back-up\n\
copies of the Materials, solely for Licensee's use within\n\
Licensee's Enterprise. "Enterprise" shall mean individual use\n\
by Licensee or any legal entity (such as a corporation or\n\
university) and the subsidiaries it owns by more than 50\n\
percent.\n\
\n\
The following terms apply to the specified type of Material.\n\
\n\
\n\
2.1.1. Source Code\n\
\n\
Developer shall have the right to modify and create derivative\n\
works with the Source Code. Developer shall own any derivative\n\
works ("Derivatives") it creates to the Source Code, provided\n\
that Developer uses the Materials in accordance with the terms\n\
and conditions of this Agreement. Developer may distribute the\n\
Derivatives, provided that all NVIDIA copyright notices and\n\
trademarks are propagated and used properly and the\n\
Derivatives include the following statement: "This software\n\
contains source code provided by NVIDIA Corporation."\n\
\n\
\n\
2.1.2. Object Code\n\
\n\
Developer agrees not to disassemble, decompile or reverse\n\
engineer the Object Code versions of any of the Materials.\n\
Developer acknowledges that certain of the Materials provided\n\
in Object Code version may contain third party components that\n\
may be subject to restrictions, and expressly agrees not to\n\
attempt to modify or distribute such Materials without first\n\
receiving consent from NVIDIA.\n\
\n\
\n\
2.1.3. Art Assets\n\
\n\
Developer shall have the right to modify and create\n\
Derivatives of the Art Assets, but may not distribute any of\n\
the Art Assets or Derivatives created therefrom without\n\
NVIDIA's prior written consent.\n\
\n\
\n\
2.1.4. No Other License\n\
\n\
No rights or licenses with respect to any proprietary\n\
information or patent, copyright, trade secret or other\n\
intellectual property right owned or controlled by NVIDIA are\n\
granted by NVIDIA to Developer under this Agreement, expressly\n\
or by implication, except as expressly provided in this\n\
Agreement. Licensee represents and warrants that any and all\n\
third party licensing and/or royalty payment obligations in\n\
connection with Licensee's use of the H.264 video codecs are\n\
solely the responsibility of Licensee.\n\
\n\
\n\
2.1.5. Intellectual Property Ownership\n\
\n\
All rights, title, interest and copyrights in and to the\n\
Materials (including but not limited to all images,\n\
photographs, animations, video, audio, music, text, and other\n\
information incorporated into the Materials), are owned by\n\
NVIDIA, or its suppliers. The Materials are protected by\n\
copyright laws and international treaty provisions.\n\
Accordingly, Developer is required to treat the Materials like\n\
any other copyrighted material, except as otherwise allowed\n\
pursuant to this Agreement.\n\
\n\
\n\
2.2. Term of Agreement\n\
\n\
This Agreement is effective until (i) automatically terminated\n\
if Developer fails to comply with any of the terms and\n\
conditions of this Agreement; or (ii) terminated by NVIDIA.\n\
NVIDIA may terminate this Agreement (and with it, all of\n\
Developer's right to the Materials) immediately upon written\n\
notice (which may include email) to Developer, with or without\n\
cause. For the sake of clarity, Licensee may continue to use\n\
the Derivatives created pursuant to this Agreement, after the\n\
termination or expiration of this Agreement.\n\
\n\
\n\
2.3. Defensive Suspension\n\
\n\
If Developer commences or participates in any legal proceeding\n\
against NVIDIA, then NVIDIA may, in its sole discretion,\n\
suspend or terminate all license grants and any other rights\n\
provided under this Agreement during the pendency of such\n\
legal proceedings.\n\
\n\
\n\
2.4. No Support\n\
\n\
NVIDIA has no obligation to support or to continue providing\n\
or updating any of the Materials.\n\
\n\
\n\
2.5. No Warranty\n\
\n\
THE SOFTWARE AND ANY OTHER MATERIALS PROVIDED BY NVIDIA TO\n\
DEVELOPER HEREUNDER ARE PROVIDED "AS IS." NVIDIA DISCLAIMS ALL\n\
WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT\n\
LIMITATION, THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY,\n\
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\
\n\
\n\
2.6. Limitation of Liability\n\
\n\
NVIDIA SHALL NOT BE LIABLE TO DEVELOPER, DEVELOPER'S\n\
CUSTOMERS, OR ANY OTHER PERSON OR ENTITY CLAIMING THROUGH OR\n\
UNDER DEVELOPER FOR ANY LOSS OF PROFITS, INCOME, SAVINGS, OR\n\
ANY OTHER CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE, DIRECT\n\
OR INDIRECT DAMAGES (WHETHER IN AN ACTION IN CONTRACT, TORT OR\n\
BASED ON A WARRANTY), EVEN IF NVIDIA HAS BEEN ADVISED OF THE\n\
POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY\n\
NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY\n\
LIMITED REMEDY. IN NO EVENT SHALL NVIDIA'S AGGREGATE LIABILITY\n\
TO DEVELOPER OR ANY OTHER PERSON OR ENTITY CLAIMING THROUGH OR\n\
UNDER DEVELOPER EXCEED THE AMOUNT OF MONEY ACTUALLY PAID BY\n\
DEVELOPER TO NVIDIA FOR THE SOFTWARE OR ANY OTHER MATERIALS.\n\
\n\
\n\
2.7. Applicable Law\n\
\n\
This Agreement shall be deemed to have been made in, and shall\n\
be construed pursuant to, the laws of the State of Delaware.\n\
The United Nations Convention on Contracts for the\n\
International Sale of Goods is specifically disclaimed.\n\
\n\
\n\
2.8. Feedback\n\
\n\
Notwithstanding any Non-Disclosure Agreement executed by and\n\
between the parties, the parties agree that in the event\n\
Licensee or NVIDIA provides Feedback (as defined below) to the\n\
other party on how to design, implement, or improve the\n\
SOFTWARE or Licensee's product(s) for use with the SOFTWARE,\n\
the following terms and conditions apply the Feedback:\n\
\n\
\n\
2.8.1. Exchange of Feedback\n\
\n\
Both parties agree that neither party has an obligation to\n\
give the other party any suggestions, comments or other\n\
feedback, whether verbally or in written or source code form,\n\
relating to (i) the SOFTWARE; (ii) Licensee's products; (iii)\n\
Licensee's use of the SOFTWARE; or (iv)\n\
optimization/interoperability of Licensee's product with the\n\
SOFTWARE (collectively defined as "Feedback"). In the event\n\
either party provides Feedback to the other party, the party\n\
receiving the Feedback may use any Feedback that the other\n\
party voluntarily provides to improve the (i) SOFTWARE or\n\
other related NVIDIA technologies, respectively for the\n\
benefit of NVIDIA; or (ii) Licensee's product or other related\n\
Licensee technologies, respectively for the benefit of\n\
Licensee. Accordingly, if either party provides Feedback to\n\
the other party, both parties agree that the other party and\n\
its respective licensees may freely use, reproduce, license,\n\
distribute, and otherwise commercialize the Feedback in the\n\
(i) SOFTWARE or other related technologies; or (ii) Licensee's\n\
products or other related technologies, respectively, without\n\
the payment of any royalties or fees.\n\
\n\
\n\
2.8.2. Residual Rights\n\
\n\
Licensee agrees that NVIDIA shall be free to use any general\n\
knowledge, skills and experience, (including, but not limited\n\
to, ideas, concepts, know-how, or techniques) ("Residuals"),\n\
contained in the (i) Feedback provided by Licensee to NVIDIA;\n\
(ii) Licensee's products shared or disclosed to NVIDIA in\n\
connection with the Feedback; or (c) Licensee's confidential\n\
information voluntarily provided to NVIDIA in connection with\n\
the Feedback, which are retained in the memories of NVIDIA's\n\
employees, agents, or contractors who have had access to such\n\
Residuals. Subject to the terms and conditions of this\n\
Agreement, NVIDIA's employees, agents, or contractors shall\n\
not be prevented from using Residuals as part of such\n\
employee's, agent's or contractor's general knowledge, skills,\n\
experience, talent, and/or expertise. NVIDIA shall not have\n\
any obligation to limit or restrict the assignment of such\n\
employees, agents or contractors or to pay royalties for any\n\
work resulting from the use of Residuals.\n\
\n\
\n\
2.8.3. Disclaimer of Warranty\n\
\n\
FEEDBACK FROM EITHER PARTY IS PROVIDED FOR THE OTHER PARTY'S\n\
USE "AS IS" AND BOTH PARTIES DISCLAIM ALL WARRANTIES, EXPRESS,\n\
IMPLIED AND STATUTORY INCLUDING, WITHOUT LIMITATION, THE\n\
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n\
PARTICULAR PURPOSE, OR NONINFRINGEMENT. BOTH PARTIES DO NOT\n\
REPRESENT OR WARRANT THAT THE FEEDBACK WILL MEET THE OTHER\n\
PARTY'S REQUIREMENTS OR THAT THE OPERATION OR IMPLEMENTATION\n\
OF THE FEEDBACK WILL BE UNINTERRUPTED OR ERROR-FREE.\n\
\n\
\n\
2.8.4. No Liability for Consequential Damages\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT\n\
SHALL EITHER PARTY OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,\n\
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER\n\
(INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS\n\
PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,\n\
OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR\n\
INABILITY TO USE THE FEEDBACK, EVEN IF THE OTHER PARTY HAS\n\
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\
\n\
\n\
2.9. Freedom of Action\n\
\n\
Developer agrees that this Agreement is nonexclusive and\n\
NVIDIA may currently or in the future be developing software,\n\
other technology or confidential information internally, or\n\
receiving confidential information from other parties that\n\
maybe similar to the Feedback and Developer's confidential\n\
information (as provided in subsection 2 above), which may be\n\
provided to NVIDIA in connection with Feedback by Developer.\n\
Accordingly, Developer agrees that nothing in this Agreement\n\
will be construed as a representation or inference that NVIDIA\n\
will not develop, design, manufacture, acquire, market\n\
products, or have products developed, designed, manufactured,\n\
acquired, or marketed for NVIDIA, that compete with the\n\
Developer's products or confidential information.\n\
\n\
\n\
2.10. Restricted Rights Notice\n\
\n\
Materials have been developed entirely at private expense and\n\
is commercial computer software provided with RESTRICTED\n\
RIGHTS. Use, duplication or disclosure by the U.S. Government\n\
or a U.S. Government subcontractor is subject to the\n\
restrictions set forth in the license agreement under which\n\
Materials was obtained pursuant to DFARS 227.7202-3(a) or as\n\
set forth in subparagraphs (c)(1) and (2) of the Commercial\n\
Computer Software - Restricted Rights clause at FAR 52.227-19,\n\
as applicable. Contractor/manufacturer is NVIDIA, 2701 San\n\
Tomas Expressway, Santa Clara, CA 95050.\n\
\n\
\n\
2.11. Miscellaneous\n\
\n\
If any provision of this Agreement is inconsistent with, or\n\
cannot be fully enforced under, the law, such provision will\n\
be construed as limited to the extent necessary to be\n\
consistent with and fully enforceable under the law. This\n\
Agreement is the final, complete and exclusive agreement\n\
between the parties relating to the subject matter hereof, and\n\
supersedes all prior or contemporaneous understandings and\n\
agreements relating to such subject matter, whether oral or\n\
written. This Agreement may only be modified in writing signed\n\
by an authorized officer of NVIDIA. Developer agrees that it\n\
will not ship, transfer or export the Materials into any\n\
country, or use the Materials in any manner, prohibited by the\n\
United States Bureau of Industry and Security or any export\n\
laws, restrictions or regulations.\n\
\n\
\n\
3. NVIDIA Driver License for Customer Use of NVIDIA Software\n\
on Windows\n\
------------------------------------------------------------\n\
\n\
\n\
IMPORTANT NOTICE -- READ CAREFULLY:\n\
-----------------------------------\n\
\n\
This License For Customer Use of NVIDIA Software ("LICENSE")\n\
is the agreement which governs use of the software of NVIDIA\n\
Corporation and its subsidiaries ("NVIDIA") downloadable\n\
herefrom, including GeForce Experience, computer software\n\
(including drivers downloaded in connection with GeForce\n\
Experience) and associated printed materials ("SOFTWARE"). By\n\
downloading, installing, copying, or otherwise using the\n\
SOFTWARE, you agree to be bound by the terms of this LICENSE.\n\
If you do not agree to the terms of this LICENSE, do not\n\
download the SOFTWARE.\n\
\n\
\n\
RECITALS:\n\
---------\n\
\n\
Use of NVIDIA's products requires three elements: the\n\
SOFTWARE, the hardware on a graphics controller board, and a\n\
personal computer (collectively, such hardware and personal\n\
computer is defined herein as "CUSTOMER SYSTEM"). The SOFTWARE\n\
is protected by copyright laws and international copyright\n\
treaties, as well as other intellectual property laws and\n\
treaties. The SOFTWARE is not sold, and instead is only\n\
licensed for use, strictly in accordance with this document.\n\
The hardware is protected by various patents, and is sold, but\n\
this LICENSE does not cover that sale, since it may not\n\
necessarily be sold as a package with the SOFTWARE. This\n\
LICENSE sets forth the terms and conditions of the SOFTWARE\n\
LICENSE only.\n\
\n\
\n\
3.1. Definitions\n\
\n\
\n\
3.1.1. Customer\n\
\n\
Customer means the entity or individual that downloads and/or\n\
installs the SOFTWARE.\n\
\n\
\n\
3.2. Grant of License\n\
\n\
\n\
3.2.1. Rights and Limitations of Grant\n\
\n\
Provided Customer complies with the terms in this LICENSE,\n\
NVIDIA hereby grants Customer the following non-exclusive,\n\
non-transferable right to use the SOFTWARE in the manner and\n\
for the purposes described in the associated printed\n\
materials, with the following limitations:\n\
\n\
\n\
3.2.1.1. Rights\n\
\n\
Customer may install and use multiple copies of the SOFTWARE\n\
on a shared computer or concurrently on different computers,\n\
and make multiple back-up copies of the SOFTWARE, solely for\n\
Customer's use within Customer's Enterprise. "Enterprise"\n\
shall mean individual use by Customer or any legal entity\n\
(such as a corporation or university) and the subsidiaries it\n\
owns by more than fifty percent (50%).\n\
\n\
\n\
3.2.1.2. Limitations\n\
\n\
No Reverse Engineering\n\
\n\
Customer may not reverse engineer, decompile, or disassemble\n\
the SOFTWARE, nor attempt in any other manner to obtain the\n\
source code. You may not remove any copyright notices from the\n\
SOFTWARE. The SOFTWARE is licensed as a single product. Its\n\
component parts may not be separated for use on more than one\n\
computer, nor otherwise used separately from the other parts.\n\
\n\
No Rental\n\
\n\
Customer may not rent or lease the SOFTWARE to someone else.\n\
\n\
\n\
3.2.2. Additional Information\n\
\n\
7-Zip. The SOFTWARE includes the 7-Zip software program\n\
("7-Zip"). Use of the source code for 7-Zip is subject to the\n\
terms and conditions at www.7-zip.org.\n\
\n\
\n\
3.3. Consent to Collection and Use of Information\n\
\n\
Customer hereby acknowledges that the SOFTWARE accesses and\n\
collects non-personally identifiable information about\n\
Customer and CUSTOMER SYSTEM as well as configures CUSTOMER\n\
SYSTEM in order to (a) properly optimize such system for use\n\
with the SOFTWARE, (b) deliver content through the SOFTWARE,\n\
and (c) improve NVIDIA products and services. Information\n\
collected by the SOFTWARE includes, but is not limited to,\n\
CUSTOMER SYSTEM'S (a) hardware configuration and ID, (b)\n\
operating system and driver configuration, (c) installed games\n\
and applications, (d) games and applications settings,\n\
performance, and usage data, and (e) usage metrics of the\n\
SOFTWARE. To the extent that Customer uses the SOFTWARE,\n\
Customer hereby consents to all of the foregoing, and\n\
represents and warrants that Customer has the right to grant\n\
such consent. In addition, Customer agrees that Customer is\n\
solely responsible for maintaining appropriate data backups\n\
and system restore points for CUSTOMER SYSTEM, and that NVIDIA\n\
will have no responsibility for any damage or loss to CUSTOMER\n\
SYSTEM (including loss of data or access) arising from or\n\
relating to (a) any changes to the configuration, application\n\
settings, environment variables, registry, drivers, BIOS, or\n\
other attributes of CUSTOMER SYSTEM (or any part of CUSTOMER\n\
SYSTEM) initiated through the SOFTWARE; or (b) installation of\n\
any SOFTWARE or third party software patches initiated through\n\
the SOFTWARE. The SOFTWARE may contain links to websites and\n\
services. We encourage you to review the privacy statements on\n\
those sites and services that you choose to visit so that you\n\
can understand how they may collect, use and share your\n\
personal information. NVIDIA is not responsible for the\n\
privacy statements or practices of sites and services\n\
controlled by other companies or organizations.\n\
\n\
Customer and CUSTOMER SYSTEM information collection rules can\n\
be configured on the "Preferences" tab of GeForce Experience.\n\
For more information on NVIDIA's collection and use of\n\
information policies for this SOFTWARE, visit\n\
http://www.geforce.com/drivers/geforce-experience/faq.\n\
\n\
Customer represents and warrants that the non-personally\n\
identifiable information that Customer has furnished in\n\
connection with its registration for the SOFTWARE is complete\n\
and accurate. Customer also acknowledges that from time to\n\
time, NVIDIA may collect, use, and disclose such information\n\
about Customer and/or Customer's system in connection with the\n\
SOFTWARE in accordance with NVIDIA's privacy policy, available\n\
at URL http://www.nvidia.com/object/privacy_policy.html.\n\
\n\
\n\
3.4. Termination\n\
\n\
This LICENSE will automatically terminate if Customer fails to\n\
comply with any of the terms and conditions hereof. In such\n\
event, Customer must destroy all copies of the SOFTWARE and\n\
all of its component parts.\n\
\n\
Defensive Suspension. If Customer commences or participates in\n\
any legal proceeding against NVIDIA, then NVIDIA may, in its\n\
sole discretion, suspend or terminate all license grants and\n\
any other rights provided under this LICENSE during the\n\
pendency of such legal proceedings.\n\
\n\
\n\
3.5. Copyright\n\
\n\
All title and copyrights in and to the SOFTWARE (including but\n\
not limited to all images, photographs, animations, video,\n\
audio, music, text, and other information incorporated into\n\
the SOFTWARE), the accompanying printed materials, and any\n\
copies of the SOFTWARE, are owned by NVIDIA, or its licensors\n\
or suppliers. The SOFTWARE is protected by copyright laws and\n\
international treaty provisions. Accordingly, Customer is\n\
required to treat the SOFTWARE like any other copyrighted\n\
material, except as otherwise allowed pursuant to this LICENSE\n\
and that it may make one copy of the SOFTWARE solely for\n\
backup or archive purposes. The algorithms, structure,\n\
organization and source code of the Software are the valuable\n\
trade secrets and confidential information of NVIDIA. Except\n\
as otherwise expressly provided herein, neither this LICENSE\n\
nor NVIDIA grants Customer any express or implied right under\n\
any NVIDIA patents, copyrights, trademarks, or other\n\
intellectual property rights in the SOFTWARE, and all rights,\n\
title and interest in and to the SOFTWARE not expressly\n\
granted are reserved by NVIDIA or its licensors or suppliers.\n\
\n\
\n\
3.6. Applicable Law\n\
\n\
This LICENSE shall be deemed to have been made in, and shall\n\
be construed pursuant to, the laws of the State of Delaware.\n\
The United Nations Convention on Contracts for the\n\
International Sale of Goods is specifically disclaimed. The\n\
state and/or federal courts residing in Santa Clara County,\n\
California shall have exclusive jurisdiction over any dispute\n\
or claim arising out of this Agreement. Customer may not\n\
export the SOFTWARE in violation of applicable export laws and\n\
regulations.\n\
\n\
\n\
3.7. Disclaimer of Warranties and Limitations on Liability\n\
\n\
\n\
3.7.1. No Warranties\n\
\n\
THE SOFTWARE IS PROVIDED "AS IS" AND TO THE MAXIMUM EXTENT\n\
PERMITTED BY APPLICABLE LAW, NVIDIA AND ITS SUPPLIERS DISCLAIM\n\
ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT\n\
LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY,\n\
NONINFRINGEMENT, TITLE AND FITNESS FOR A PARTICULAR PURPOSE.\n\
Without limiting the foregoing, you are solely responsible for\n\
determining and verifying that the SOFTWARE that you obtain\n\
and install is the appropriate version for your model of\n\
graphics controller board, operating system, and computer\n\
hardware.\n\
\n\
\n\
3.7.2. No Liability for Consequential Damages\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT\n\
SHALL NVIDIA OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT,\n\
SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES\n\
WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF\n\
BUSINESS PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION, LOSS OF\n\
BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT\n\
OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF NVIDIA\n\
HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME\n\
JURISDICTIONS PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY\n\
FOR IMPLIED WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES,\n\
SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO\n\
HAVE OTHER LEGAL RIGHTS THAT VARY FROM JURISDICTION TO\n\
JURISDICTION. NOTWITHSTANDING THE FOREGOING, NVIDIA'S\n\
AGGREGATE LIABILITY ARISING OUT OF THIS LICENSE AGREEMENT\n\
SHALL NOT EXCEED ONE THOUSAND UNITED STATES DOLLARS\n\
(USD$1000).\n\
\n\
\n\
3.8. Miscellaneous\n\
\n\
If any provision of this LICENSE is inconsistent with, or\n\
cannot be fully enforced under, the law, such provision will\n\
be construed as limited to the extent necessary to be\n\
consistent with and fully enforceable under the law. This\n\
LICENSE is the final, complete and exclusive agreement between\n\
the parties relating to the subject matter hereof, and\n\
supersedes all prior or contemporaneous understandings and\n\
agreements relating to such subject matter, whether oral or\n\
written. This LICENSE may only be modified in writing signed\n\
by an authorized officer of NVIDIA. Customer agrees that it\n\
will not ship, transfer or export the SOFTWARE into any\n\
country, or use the SOFTWARE in any manner, prohibited by the\n\
United States Bureau of Industry and Security or any export\n\
laws, restrictions or regulations.\n\
\n\
\n\
4. NVIDIA Driver License for Customer Use of NVIDIA Software\n\
on Linux and Mac OSX\n\
------------------------------------------------------------\n\
\n\
\n\
IMPORTANT NOTICE -- READ CAREFULLY:\n\
-----------------------------------\n\
\n\
This License For Customer Use of NVIDIA Software ("LICENSE")\n\
is the agreement which governs use of the software of NVIDIA\n\
Corporation and its subsidiaries ("NVIDIA") downloadable\n\
herefrom, including computer software and associated printed\n\
materials ("SOFTWARE"). By downloading, installing, copying,\n\
or otherwise using the SOFTWARE, you agree to be bound by the\n\
terms of this LICENSE. If you do not agree to the terms of\n\
this LICENSE, do not download the SOFTWARE.\n\
\n\
\n\
RECITALS:\n\
---------\n\
\n\
Use of NVIDIA's products requires three elements: the\n\
SOFTWARE, the hardware on a graphics controller board, and a\n\
personal computer. The SOFTWARE is protected by copyright laws\n\
and international copyright treaties, as well as other\n\
intellectual property laws and treaties. The SOFTWARE is not\n\
sold, and instead is only licensed for use, strictly in\n\
accordance with this document. The hardware is protected by\n\
various patents, and is sold, but this agreement does not\n\
cover that sale, since it may not necessarily be sold as a\n\
package with the SOFTWARE. This agreement sets forth the terms\n\
and conditions of the SOFTWARE LICENSE only.\n\
\n\
\n\
4.1. DEFINITIONS\n\
\n\
\n\
4.1.1. Customer\n\
\n\
Customer means the entity or individual that downloads the\n\
SOFTWARE.\n\
\n\
\n\
4.2. GRANT OF LICENSE\n\
\n\
\n\
4.2.1. Rights and Limitations of Grant\n\
\n\
NVIDIA hereby grants Customer the following non-exclusive,\n\
non-transferable right to use the SOFTWARE, with the following\n\
limitations:\n\
\n\
\n\
4.2.1.1. Rights\n\
\n\
Customer may install and use multiple copies of the SOFTWARE\n\
on a shared computer or concurrently on different computers,\n\
and make multiple back-up copies of the SOFTWARE, solely for\n\
Customer's use within Customer's Enterprise. "Enterprise"\n\
shall mean individual use by Customer or any legal entity\n\
(such as a corporation or university) and the subsidiaries it\n\
owns by more than fifty percent (50%).\n\
\n\
\n\
4.2.1.2. Linux/FreeBSD Exception\n\
\n\
Notwithstanding the foregoing terms of Section 4.2.1.1,\n\
SOFTWARE designed exclusively for use on the Linux or FreeBSD\n\
operating systems, or other operating systems derived from the\n\
source code to these operating systems, may be copied and\n\
redistributed, provided that the binary files thereof are not\n\
modified in any way (except for unzipping of compressed\n\
files).\n\
\n\
\n\
4.2.1.3. Limitations\n\
\n\
No Reverse Engineering\n\
\n\
Customer may not reverse engineer, decompile, or disassemble\n\
the SOFTWARE, nor attempt in any other manner to obtain the\n\
source code.\n\
\n\
No Separation of Components\n\
\n\
The SOFTWARE is licensed as a single product. Its component\n\
parts may not be separated for use on more than one computer,\n\
nor otherwise used separately from the other parts.\n\
\n\
No Rental\n\
\n\
Customer may not rent or lease the SOFTWARE to someone else.\n\
\n\
\n\
4.3. TERMINATION\n\
\n\
This LICENSE will automatically terminate if Customer fails to\n\
comply with any of the terms and conditions hereof. In such\n\
event, Customer must destroy all copies of the SOFTWARE and\n\
all of its component parts.\n\
\n\
Defensive Suspension. If Customer commences or participates in\n\
any legal proceeding against NVIDIA, then NVIDIA may, in its\n\
sole discretion, suspend or terminate all license grants and\n\
any other rights provided under this LICENSE during the\n\
pendency of such legal proceedings.\n\
\n\
\n\
4.4. COPYRIGHT\n\
\n\
All title and copyrights in and to the SOFTWARE (including but\n\
not limited to all images, photographs, animations, video,\n\
audio, music, text, and other information incorporated into\n\
the SOFTWARE), the accompanying printed materials, and any\n\
copies of the SOFTWARE, are owned by NVIDIA, or its suppliers.\n\
The SOFTWARE is protected by copyright laws and international\n\
treaty provisions. Accordingly, Customer is required to treat\n\
the SOFTWARE like any other copyrighted material, except as\n\
otherwise allowed pursuant to this LICENSE and that it may\n\
make one copy of the SOFTWARE solely for backup or archive\n\
purposes.\n\
\n\
\n\
4.5. APPLICABLE LAW\n\
\n\
This agreement shall be deemed to have been made in, and shall\n\
be construed pursuant to, the laws of the State of California.\n\
\n\
\n\
4.6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY\n\
\n\
\n\
4.6.1. No Warranties\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE\n\
SOFTWARE IS PROVIDED "AS IS" AND NVIDIA AND ITS SUPPLIERS\n\
DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING,\n\
BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND\n\
FITNESS FOR A PARTICULAR PURPOSE.\n\
\n\
\n\
4.6.2. No Liability for Consequential Damages\n\
\n\
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT\n\
SHALL NVIDIA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,\n\
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER\n\
(INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS\n\
PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,\n\
OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR\n\
INABILITY TO USE THE SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED\n\
OF THE POSSIBILITY OF SUCH DAMAGES.\n\
\n\
\n\
4.7. MISCELLANEOUS\n\
\n\
The United Nations Convention on Contracts for the\n\
International Sale of Goods is specifically disclaimed. If any\n\
provision of this LICENSE is inconsistent with, or cannot be\n\
fully enforced under, the law, such provision will be\n\
construed as limited to the extent necessary to be consistent\n\
with and fully enforceable under the law. This agreement is\n\
the final, complete and exclusive agreement between the\n\
parties relating to the subject matter hereof, and supersedes\n\
all prior or contemporaneous understandings and agreements\n\
relating to such subject matter, whether oral or written.\n\
Customer agrees that it will not ship, transfer or export the\n\
SOFTWARE into any country, or use the SOFTWARE in any manner,\n\
prohibited by the United States Bureau of Export\n\
Administration or any export laws, restrictions or\n\
regulations. This LICENSE may only be modified in writing\n\
signed by an authorized officer of NVIDIA.\n\
\n\
\n\
5. NVIDIA Nsight Development Platform, Visual Studio Edition\n\
Software License Agreement (Windows only)\n\
------------------------------------------------------------\n\
\n\
\n\
IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING\n\
----------------------------------------------------\n\
\n\
Do not use or load this software and any associated materials\n\
provided by NVIDIA on its extranet (collectively the\n\
"Software") until You have carefully read the following terms\n\
and conditions. By loading or using the Software, You agree to\n\
fully comply with the terms and conditions of this Software\n\
License Agreement ("Agreement") by and between NVIDIA\n\
Corporation, a Delaware corporation with its principal place\n\
of business at 2701 San Tomas Expressway, Santa Clara,\n\
California 95050 U.S.A. ("NVIDIA"), and You. If You do not\n\
wish to so agree, do not install or use the Software.\n\
\n\
For the purposes of this Agreement:\n\
\n\
"Licensee," "You" and/or "Your" shall mean, collectively and\n\
individually, Original Equipment Manufacturers, Independent\n\
Hardware Vendors, Independent Software Vendors, and End-Users\n\
of the Software pursuant to the terms and conditions of this\n\
Agreement.\n\
\n\
"Intellectual Property Rights" shall mean all proprietary\n\
rights, including all patents, trademarks, copyrights,\n\
know-how, trade secrets, mask works, including all\n\
applications and registrations thereto, and any other similar\n\
protected rights in any country.\n\
\n\
\n\
5.1. Grant of License\n\
\n\
NVIDIA agrees to provide the Software and any associated\n\
materials pursuant to this Agreement. Subject to the terms of\n\
this Agreement, NVIDIA grants to You a nonexclusive,\n\
transferable, worldwide, revocable, limited, royalty-free,\n\
fully paid-up license under NVIDIA's copyrights to install,\n\
deploy, use, have used execute, reproduce, display, perform,\n\
run, the object code of the Software, to create Your products\n\
to interoperate with NVIDIA hardware and software.\n\
\n\
Unless otherwise authorized in the Agreement, You shall not\n\
otherwise assign, sublicense, lease, or in any other way\n\
transfer or disclose Software to any third party. Unless\n\
otherwise authorized in the Agreement, You shall not reverse-\n\
compile, disassemble, reverse-engineer, or in any manner\n\
attempt to derive the source code of the Software from the\n\
object code portions of the Software.\n\
\n\
Except as expressly stated in this Agreement, no license or\n\
right is granted to You directly or by implication,\n\
inducement, estoppels or otherwise. NVIDIA shall have the\n\
right to inspect or have an independent auditor inspect Your\n\
relevant records to verify Your compliance with the terms and\n\
conditions of this Agreement.\n\
\n\
\n\
5.2. Confidentiality\n\
\n\
If applicable, any exchange of Confidential Information (as\n\
defined in the NDA) shall be made pursuant to the terms and\n\
conditions of a separately signed Non-Disclosure Agreement\n\
("NDA") by and between NVIDIA and You. For the sake of\n\
clarity, You agree that (a) the Software; and (b) Your use of\n\
the Software/participation in the Software's pre-production\n\
release is considered Confidential Information of NVIDIA.\n\
\n\
If You wish to have a third party consultant or subcontractor\n\
("Contractor") perform work on Your behalf which involves\n\
access to or use of Software, You shall obtain a written\n\
confidentiality agreement from the Contractor which contains\n\
terms and obligations with respect to access to or use of\n\
Software no less restrictive than those set forth in this\n\
Agreement and excluding any distribution or sublicense rights,\n\
and use for any other purpose than permitted in this\n\
Agreement. Otherwise, You shall not disclose the terms or\n\
existence of this Agreement or use NVIDIA's name in any\n\
publications, advertisements, or other announcements without\n\
NVIDIA's prior written consent. Unless otherwise provided in\n\
this Agreement, You do not have any rights to use any NVIDIA\n\
trademarks or logos.\n\
\n\
\n\
5.3. Ownership of Software and Intellectual Property Rights\n\
\n\
All rights, title and interest to all copies of the Software\n\
remain with NVIDIA, subsidiaries, licensors, or its suppliers.\n\
The Software is copyrighted and protected by the laws of the\n\
United States and other countries, and international treaty\n\
provisions. You may not remove any copyright notices from the\n\
Software. NVIDIA may make changes to the Software, or to items\n\
referenced therein, at any time and without notice, but is not\n\
obligated to support or update the Software. Except as\n\
otherwise expressly provided, NVIDIA grants no express or\n\
implied right under any NVIDIA patents, copyrights,\n\
trademarks, or other intellectual property rights.\n\
\n\
You have no obligation to give NVIDIA any suggestions,\n\
comments or other feedback ("Feedback") relating to the\n\
Software. However, NVIDIA may use and include any Feedback\n\
that You voluntarily provide to improve the Software or other\n\
related NVIDIA technologies. Accordingly, if You provide\n\
Feedback, You agree NVIDIA and its licensees may freely use,\n\
reproduce, license, distribute, and otherwise commercialize\n\
the Feedback in the Software or other related technologies\n\
without the payment of any royalties or fees. You also agree\n\
that the Software may collect application specific session\n\
data and target device information that shall be sent to\n\
NVIDIA, solely for use by NVIDIA in improving the Software.\n\
\n\
\n\
5.4. No Warranties\n\
\n\
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR\n\
IMPLIED WARRANTY OF ANY KIND, INCLUDING WARRANTIES OF\n\
MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR\n\
PURPOSE. NVIDIA does not warrant or assume responsibility for\n\
the accuracy or completeness of any information, text,\n\
graphics, links or other items contained within the Software.\n\
NVIDIA does not represent that errors or other defects will be\n\
identified or corrected.\n\
\n\
\n\
5.5. Limitation of Liability\n\
\n\
EXCEPT WITH RESPECT TO THE MISUSE OF THE OTHER PARTY'S\n\
INTELLECTUAL PROPERTY OR DISCLOSURE OF THE OTHER PARTY'S\n\
CONFIDENTIAL INFORMATION IN BREACH OF THIS AGREEMENT, IN NO\n\
EVENT SHALL NVIDIA, SUBSIDIARIES, LICENSORS, OR ITS SUPPLIERS\n\
BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING, WITHOUT\n\
LIMITATION, INDIRECT, LOST PROFITS, CONSEQUENTIAL, BUSINESS\n\
INTERRUPTION OR LOST INFORMATION) ARISING OUT OF THE USE OF OR\n\
INABILITY TO USE THE SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED\n\
OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS\n\
PROHIBIT EXCLUSION OR LIMITATION OF LIABILITY FOR IMPLIED\n\
WARRANTIES OR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE\n\
ABOVE LIMITATION MAY NOT APPLY TO YOU. YOU MAY ALSO HAVE OTHER\n\
LEGAL RIGHTS THAT VARY FROM JURISDICTION TO JURISDICTION.\n\
NOTWITHSTANDING THE FOREGOING, NVIDIA'S AGGREGATE LIABILITY\n\
ARISING OUT OF THIS AGREEMENT SHALL NOT EXCEED ONE HUNDRED\n\
UNITED STATES DOLLARS (USD$100).\n\
\n\
\n\
5.6. Term\n\
\n\
This Agreement and the licenses granted hereunder shall be\n\
effective as of the date You install/download the Software\n\
("Effective Date") and continue perpetually, unless terminated\n\
earlier in accordance with the "Termination" provision of this\n\
Agreement.\n\
\n\
\n\
5.7. Termination\n\
\n\
NVIDIA may terminate this Agreement at any time if You violate\n\
its terms. Upon termination, You will immediately destroy the\n\
Software or return all copies of the Software to NVIDIA, and\n\
certify to NVIDIA in writing that such actions have been\n\
completed.\n\
\n\
\n\
5.8. Miscellaneous\n\
\n\
\n\
5.8.1. Survival\n\
\n\
Those provisions in this Agreement, which by their nature need\n\
to survive the termination or expiration of this Agreement,\n\
shall survive termination or expiration of the Agreement,\n\
including but not limited to Section 5.2, Section 5.3,\n\
Section 5.4, Section 5.5, Section 5.7, and Section 5.8.\n\
\n\
\n\
5.8.2. Applicable Laws\n\
\n\
Claims arising under this Agreement shall be governed by the\n\
laws of Delaware, excluding its principles of conflict of laws\n\
and the United Nations Convention on Contracts for the Sale of\n\
Goods. The state and/or federal courts residing in Santa Clara\n\
County, California shall have exclusive jurisdiction over any\n\
dispute or claim arising out of this Agreement. You may not\n\
export the Software in violation of applicable export laws and\n\
regulations.\n\
\n\
\n\
5.8.3. Amendment\n\
\n\
The Agreement shall not be modified except by a written\n\
agreement that names this Agreement and any provision to be\n\
modified, is dated subsequent to the Effective Date, and is\n\
signed by duly authorized representatives of both parties.\n\
\n\
\n\
5.8.4. No Waiver\n\
\n\
No failure or delay on the part of either party in the\n\
exercise of any right, power or remedy under this Agreement or\n\
under law, or to insist upon or enforce performance by the\n\
other party of any of the provisions of this Agreement or\n\
under law, shall operate as a waiver thereof, nor shall any\n\
single or partial exercise of any right, power or remedy\n\
preclude other or further exercise thereof, or the exercise of\n\
any other right, power or remedy; rather the provision, right,\n\
or remedy shall be and remain in full force and effect.\n\
\n\
\n\
5.8.5. No Assignment\n\
\n\
This Agreement and Licensee's rights and obligations herein,\n\
may not be assigned, subcontracted, delegated, or otherwise\n\
transferred by Licensee without NVIDIA's prior written\n\
consent, and any attempted assignment, subcontract,\n\
delegation, or transfer in violation of the foregoing will be\n\
null and void. The terms of this Agreement shall be binding\n\
upon Licensee's assignees.\n\
\n\
\n\
5.8.6. Government Restricted Rights\n\
\n\
The parties acknowledge that the Software is subject to U.S.\n\
export control laws and regulations. The parties agree to\n\
comply with all applicable international and national laws\n\
that apply to the Software, including the U.S. Export\n\
Administration Regulations, as well as end-user, end-use and\n\
destination restrictions issued by U.S. and other governments.\n\
\n\
The Software has been developed entirely at private expense\n\
and is commercial computer software provided with RESTRICTED\n\
RIGHTS. Use, duplication or disclosure of the Software by the\n\
U.S. Government or a U.S. Government subcontractor is subject\n\
to the restrictions set forth in the Agreement under which the\n\
Software was obtained pursuant to DFARS 227.7202-3(a) or as\n\
set forth in subparagraphs (c)(1) and (2) of the Commercial\n\
Computer Software - Restricted Rights clause at FAR 52.227-19,\n\
as applicable. Contractor/manufacturer is NVIDIA, 2701 San\n\
Tomas Expressway, Santa Clara, CA 95050. Use of the Software\n\
by the Government constitutes acknowledgment of NVIDIA's\n\
proprietary rights therein.\n\
\n\
\n\
5.8.7. Independent Contractors\n\
\n\
Licensee's relationship to NVIDIA is that of an independent\n\
contractor, and neither party is an agent or partner of the\n\
other. Licensee will not have, and will not represent to any\n\
third party that it has, any authority to act on behalf of\n\
NVIDIA.\n\
\n\
\n\
5.8.8. Severability\n\
\n\
If for any reason a court of competent jurisdiction finds any\n\
provision of this Agreement, or portion thereof, to be\n\
unenforceable, that provision of the Agreement will be\n\
enforced to the maximum extent permissible so as to affect the\n\
intent of the parties, and the remainder of this Agreement\n\
will continue in full force and effect. This Agreement has\n\
been negotiated by the parties and their respective counsel\n\
and will be interpreted fairly in accordance with its terms\n\
and without any strict construction in favor of or against\n\
either party.\n\
\n\
\n\
5.8.9. Entire Agreement\n\
\n\
This Agreement and NDA constitute the entire agreement between\n\
the parties with respect to the subject matter contemplated\n\
herein, and merges all prior and contemporaneous\n\
communications.\n\
\n\
MICROSOFT SOFTWARE LICENSE TERMS\n\
MICROSOFT DIRECTX END USER RUNTIME\n\
\n\
These license terms are an agreement between Microsoft Corporation (or based on\n\
where you live, one of its affiliates) and you. Please read them. They apply\n\
to the software named above, which includes the media on which you received it,\n\
if any. The terms also apply to any Microsoft\n\
\n\
* updates,\n\
* supplements,\n\
* Internet-based services, and \n\
* support services\n\
\n\
for this software, unless other terms accompany those items. If so, those\n\
terms apply.\n\
\n\
BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO\n\
NOT USE THE SOFTWARE.\n\
\n\
If you comply with these license terms, you have the rights below.\n\
\n\
1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies\n\
of the software on your devices.\n\
\n\
2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only\n\
gives you some rights to use the software. Microsoft reserves all other\n\
rights. Unless applicable law gives you more rights despite this limitation,\n\
you may use the software only as expressly permitted in this agreement. In\n\
doing so, you must comply with any technical limitations in the software that\n\
only allow you to use it in certain ways. You may not\n\
\n\
* work around any technical limitations in the software;\n\
* reverse engineer, decompile or disassemble the software, except and only to\n\
the extent that applicable law expressly permits, despite this limitation;\n\
* make more copies of the software than specified in this agreement or allowed\n\
by applicable law, despite this limitation;\n\
* publish the software for others to copy;\n\
* rent, lease or lend the software;\n\
* transfer the software or this agreement to any third party; or\n\
* use the software for commercial software hosting services.\n\
\n\
3. BACKUP COPY. You may make one backup copy of the software. You may use it\n\
only to reinstall the software.\n\
\n\
4. DOCUMENTATION. Any person that has valid access to your computer or\n\
internal network may copy and use the documentation for your internal,\n\
reference purposes.\n\
\n\
5. EXPORT RESTRICTIONS. The software is subject to United States export laws\n\
and regulations. You must comply with all domestic and international export\n\
laws and regulations that apply to the software. These laws include\n\
restrictions on destinations, end users and end use. For additional\n\
information, see www.microsoft.com/exporting.\n\
\n\
6. SUPPORT SERVICES. Because this software is "as is," we may not provide\n\
support services for it.\n\
\n\
7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates,\n\
Internet-based services and support services that you use, are the entire\n\
agreement for the software and support services.\n\
\n\
8. APPLICABLE LAW.\n\
\n\
a. United States. If you acquired the software in the United States,\n\
Washington state law governs the interpretation of this agreement and applies\n\
to claims for breach of it, regardless of conflict of laws principles. The\n\
laws of the state where you live govern all other claims, including claims\n\
under state consumer protection laws, unfair competition laws, and in tort.\n\
\n\
b. Outside the United States. If you acquired the software in any other\n\
country, the laws of that country apply.\n\
\n\
9. LEGAL EFFECT. This agreement describes certain legal rights. You may have\n\
other rights under the laws of your country. You may also have rights with\n\
respect to the party from whom you acquired the software. This agreement does\n\
not change your rights under the laws of your country if the laws of your\n\
country do not permit it to do so.\n\
\n\
10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED "AS-IS." YOU BEAR THE\n\
RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR\n\
CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS\n\
WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL\n\
LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR\n\
A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\
\n\
11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM\n\
MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT\n\
RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL,\n\
INDIRECT OR INCIDENTAL DAMAGES.\n\
\n\
This limitation applies to\n\
\n\
* anything related to the software, services, content (including code) on third\n\
party Internet sites, or third party programs; and\n\
* claims for breach of contract, breach of warranty, guarantee or condition,\n\
strict liability, negligence, or other tort to the extent permitted by\n\
applicable law.\n\
\n\
It also applies even if Microsoft knew or should have known about the\n\
possibility of the damages. The above limitation or exclusion may not apply to\n\
you because your country may not allow the exclusion or limitation of\n\
incidental, consequential or other damages.\n\
\n\
The Software contains components, as listed below that are\n\
licensed to Licensee pursuant to the terms and conditions of\n\
their respective End User License Agreements:\n\
\n\
* NVIDIA CUDA Samples\n\
\n\
* NVIDIA CUDA Toolkit\n\
\n\
* NVIDIA DirectX SDK\n\
\n\
More information, including licensing information, about the\n\
NVIDIA CUDA Toolkit and the NVIDIA CUDA Samples can be found\n\
at: http://www.nvidia.com/getcuda\n\
\n\
More information, including licensing information, about the\n\
NVIDIA DirectX SDK can be found at:\n\
http://developer.nvidia.com/object/sdk_home.html\n\
\n\
\n\
6. NVIDIA CUDA General Terms\n\
----------------------------\n\
\n\
The Software, on the Windows platform, may collect\n\
non-personally identifiable information for the purposes of\n\
customizing information delivered to you and improving future\n\
versions of the Software. Such information, including IP\n\
address and system configuration, will only be collected on an\n\
anonymous basis and cannot be linked to any personally\n\
identifiable information. Personally identifiable information\n\
such as your username or hostname is not collected.\n\
\n\
-------------------------------------------------------------
########### end of license property ##########################################
|