-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
EULA.txt
2297 lines (1750 loc) · 94.1 KB
/
EULA.txt
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
End User License Agreement
--------------------------
Preface
-------
The following contains specific license terms and conditions
for four separate NVIDIA products. By accepting this
agreement, you agree to comply with all the terms and
conditions applicable to the specific product(s) included
herein.
NVIDIA CUDA Toolkit
Description
The NVIDIA CUDA Toolkit provides command-line and graphical
tools for building, debugging and optimizing the performance
of applications accelerated by NVIDIA GPUs, runtime and math
libraries, and documentation including programming guides,
user manuals, and API references. The NVIDIA CUDA Toolkit
License Agreement is available in Chapter 1.
Default Install Location of CUDA Toolkit
Windows platform:
%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v#.#
Linux platform:
/usr/local/cuda-#.#
Mac platform:
/Developer/NVIDIA/CUDA-#.#
NVIDIA CUDA Samples
Description
This package includes over 100+ CUDA examples that demonstrate
various CUDA programming principles, and efficient CUDA
implementation of algorithms in specific application domains.
The NVIDIA CUDA Samples License Agreement is available in
Chapter 2.
Default Install Location of CUDA Samples
Windows platform:
%ProgramData%\NVIDIA Corporation\CUDA Samples\v#.#
Linux platform:
/usr/local/cuda-#.#/samples
and
$HOME/NVIDIA_CUDA-#.#_Samples
Mac platform:
/Developer/NVIDIA/CUDA-#.#/samples
NVIDIA Driver
Description
This package contains the operating system driver and
fundamental system software components for NVIDIA GPUs. The
NVIDIA Driver License for the Windows platform is available in
Chapter 3, and the NVIDIA Driver License for the Linux and Mac
OSX platforms is available in Chapter 4.
NVIDIA Nsight Visual Studio Edition (Windows only)
Description
NVIDIA Nsight Development Platform, Visual Studio Edition is a
development environment integrated into Microsoft Visual
Studio that provides tools for debugging, profiling, analyzing
and optimizing your GPU computing and graphics applications.
The NVIDIA Nsight Visual Studio Edition License Agreement is
available in Chapter 5.
Default Install Location of Nsight Visual Studio Edition
Windows platform:
%ProgramFiles(x86)%\NVIDIA Corporation\Nsight Visual Studio Edition #.#
NVIDIA CUDA General Terms
Description
General terms that apply to all of the software components are
available in Chapter 6.
1. NVIDIA CUDA Toolkit License Agreement
----------------------------------------
Important Notice
----------------
READ CAREFULLY: This Software License Agreement ("Agreement")
for NVIDIA CUDA Toolkit, including computer software and
associated documentation ("Software"), is the Agreement which
governs use of the SOFTWARE of NVIDIA Corporation and its
subsidiaries ("NVIDIA") downloadable herefrom. By downloading,
installing, copying, or otherwise using the SOFTWARE, You (as
defined below) agree to be bound by the terms of this
Agreement. If You do not agree to the terms of this Agreement,
do not download the SOFTWARE.
Recitals
--------
Use of NVIDIA's SOFTWARE requires three elements: the
SOFTWARE, an NVIDIA GPU or application processor ("NVIDIA
Hardware"), and a computer system. The SOFTWARE is protected
by copyright laws and international copyright treaties, as
well as other intellectual property laws and treaties. The
SOFTWARE is not sold, and instead is only licensed for Your
use, strictly in accordance with this Agreement. The NVIDIA
Hardware is protected by various patents, and is sold, but
this Agreement does not cover the sale or use of such
hardware, since it may not necessarily be sold as a package
with the SOFTWARE. This Agreement sets forth the terms and
conditions of the SOFTWARE only.
1.1. Definitions
1.1.1. Licensee
"You", or "Your" shall mean the entity or individual that
downloads and uses the SOFTWARE.
1.1.2. Redistributable Software
"Redistributable Software" shall mean the redistributable
libraries referenced in Attachment A of this Agreement.
1.1.3. Software
"SOFTWARE" shall mean the deliverables provided pursuant to
this Agreement. SOFTWARE may be provided in either source or
binary form, at NVIDIA's discretion.
1.2. Grant of License
1.2.1. Rights and Limitations of Grant
Provided that Licensee complies with the terms of this
Agreement, NVIDIA hereby grants Licensee the following
limited, non-exclusive, non-transferable, non-sublicensable
(except as expressly permitted otherwise for Redistributable
Software in Section 1.2.1.1 and Section 1.2.1.3 of this
Agreement) right to use the SOFTWARE -- and, if the SOFTWARE
is provided in source form, to compile the SOFTWARE -- with
the following limitations:
1.2.1.1. Redistribution Rights
Licensee may transfer, redistribute, and sublicense certain
files of the Redistributable SOFTWARE, as defined in
Attachment A of this Agreement, provided, however, that (a)
the Redistributable SOFTWARE shall be distributed solely in
binary form to Licensee's licensees ("Customers") only as a
component of Licensee's own software products (each, a
"Licensee Application"); (b) Licensee shall design the
Licensee Application such that the Redistributable SOFTWARE
files are installed only in a private (non-shared) directory
location that is used only by the Licensee Application; (c)
Licensee shall obtain each Customer's written or clickwrap
agreement to the license terms under a written, legally
enforceable agreement that has the effect of protecting the
SOFTWARE and the rights of NVIDIA under terms no less
restrictive than this Agreement.
1.2.1.2. Usage Rights
Licensee may install and use multiple copies of the SOFTWARE
on a shared computer or concurrently on different computers,
and make multiple back-up copies of the SOFTWARE, solely for
Licensee's use within Licensee's Enterprise. "Enterprise"
shall mean individual use by Licensee or any legal entity
(such as a corporation or university) and the subsidiaries it
owns by more than 50 percent.
1.2.1.3. Further Redistribution Rights
Subject to the terms and conditions of the Agreement, Licensee
may authorize Customers to further redistribute the
Redistributable SOFTWARE that such Customers receive as part
of the Licensee Application, solely in binary form, provided,
however, that Licensee shall require in their standard
software license agreements with Customers that all such
redistributions must be made pursuant to a license agreement
that has the effect of protecting the SOFTWARE and the rights
of NVIDIA whose terms and conditions are at least as
restrictive as those in the applicable Licensee software
license agreement covering the Licensee Application. For
avoidance of doubt, termination of this Agreement shall not
affect rights previously granted by Licensee to its Customers
under this Agreement to the extent validly granted to
Customers under Section 1.2.1.1.
1.2.1.4. Linux/FreeBSD Exception
Notwithstanding the foregoing terms of Section 1.2.1.2,
Section 1.2.1.1 and Section 1.2.1.3, SOFTWARE designed
exclusively for use on the Linux or FreeBSD operating systems,
or other operating systems derived from the source code to
these operating systems, may be copied and redistributed,
provided that the binary files thereof are not modified in any
way (except for unzipping of compressed files).
1.2.1.5. Additional Licensing Obligations
Licensee acknowledges and agrees that its use of certain third
party components included with the SOFTWARE may be subject to
additional licensing terms and conditions as set forth or
referenced in Attachment B of this Agreement.
1.2.1.6. Limitations
No Reverse Engineering
If the SOFTWARE is provided in binary form, Licensee may not
reverse engineer, decompile, or disassemble the SOFTWARE, nor
attempt in any other manner to obtain the source code.
No Separation of Components
The SOFTWARE is licensed as a single product. Except as
authorized in this Agreement, Software component parts of the
Software may not be separated for use on more than one
computer, nor otherwise used separately from the other parts.
No Rental
Licensee may not rent or lease the SOFTWARE to someone else.
No Modifications
If the SOFTWARE is provided in source form, Licensee may not
modify or create derivative works of the SOFTWARE.
1.3. Term and Termination
This Agreement will continue in effect for two (2) years
("Initial Term") after Your initial download and use of the
SOFTWARE, subject to the exclusive right of NVIDIA to
terminate as provided herein. The term of this Agreement will
automatically renew for successive one (1) year renewal terms
after the Initial Term, unless either party provides to the
other party at least three (3) months prior written notice of
termination before the end of the applicable renewal term.
This Agreement will automatically terminate if Licensee fails
to comply with any of the terms and conditions hereof. In such
event, Licensee must destroy all copies of the SOFTWARE and
all of its component parts.
Defensive Suspension
If Licensee commences or participates in any legal proceeding
against NVIDIA, then NVIDIA may, in its sole discretion,
suspend or terminate all license grants and any other rights
provided under this Agreement during the pendency of such
legal proceedings.
1.4. Copyright
All rights, title, interest and copyrights in and to the
SOFTWARE (including but not limited to all images,
photographs, animations, video, audio, music, text, and other
information incorporated into the SOFTWARE), the accompanying
printed materials, and any copies of the SOFTWARE, are owned
by NVIDIA, or its suppliers. The SOFTWARE is protected by
copyright laws and international treaty provisions.
Accordingly, Licensee is required to treat the SOFTWARE like
any other copyrighted material, except as otherwise allowed
pursuant to this Agreement and that it may make one copy of
the SOFTWARE solely for backup or archive purposes.
RESTRICTED RIGHTS NOTICE. Software has been developed entirely
at private expense and is commercial computer software
provided with RESTRICTED RIGHTS. Use, duplication or
disclosure by the U.S. Government or a U.S. Government
subcontractor is subject to the restrictions set forth in the
Agreement under which Software was obtained pursuant to DFARS
227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2)
of the Commercial Computer Software - Restricted Rights clause
at FAR 52.227-19, as applicable. Contractor/manufacturer is
NVIDIA, 2701 San Tomas Expressway, Santa Clara, CA 95050.
1.5. Applicable Law
This Agreement shall be deemed to have been made in, and shall
be construed pursuant to, the laws of the State of Delaware.
The United Nations Convention on Contracts for the
International Sale of Goods is specifically disclaimed. The
courts of Santa Clara County, California shall have exclusive
jurisdiction and venue over any dispute arising out of or
relating to this Agreement.
1.6. Disclaimer of Warranties and Limitations on Liability
1.6.1. No Warranties
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE
SOFTWARE IS PROVIDED "AS IS" AND NVIDIA AND ITS SUPPLIERS
DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING,
BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.
1.6.2. No Liability for Consequential Damages
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT
SHALL NVIDIA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER
(INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,
OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
INABILITY TO USE THE SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED
OF THE POSSIBILITY OF SUCH DAMAGES.
1.6.3. No Support
NVIDIA has no obligation to support or to provide any updates
of the Software.
1.7. Miscellaneous
1.7.1. Feedback
Notwithstanding any Non-Disclosure Agreement executed by and
between the parties, the parties agree that in the event
Licensee or NVIDIA provides Feedback (as defined below) to the
other party on how to design, implement, or improve the
SOFTWARE or Licensee's product(s) for use with the SOFTWARE,
the following terms and conditions apply the Feedback:
1.7.1.1. Exchange of Feedback
Both parties agree that neither party has an obligation to
give the other party any suggestions, comments or other
feedback, whether verbally or in written or source code form,
relating to (i) the SOFTWARE; (ii) Licensee's products; (iii)
Licensee's use of the SOFTWARE; or (iv)
optimization/interoperability of Licensee's product with the
SOFTWARE (collectively defined as "Feedback"). In the event
either party provides Feedback to the other party, the party
receiving the Feedback may use any Feedback that the other
party voluntarily provides to improve the (i) SOFTWARE or
other related NVIDIA technologies, respectively for the
benefit of NVIDIA; or (ii) Licensee's product or other related
Licensee technologies, respectively for the benefit of
Licensee. Accordingly, if either party provides Feedback to
the other party, both parties agree that the other party and
its respective licensees may freely use, reproduce, license,
distribute, and otherwise commercialize the Feedback in the
(i) SOFTWARE or other related technologies; or (ii) Licensee's
products or other related technologies, respectively, without
the payment of any royalties or fees.
1.7.1.2. Residual Rights
Licensee agrees that NVIDIA shall be free to use any general
knowledge, skills and experience, (including, but not limited
to, ideas, concepts, know-how, or techniques) ("Residuals"),
contained in the (i) Feedback provided by Licensee to NVIDIA;
(ii) Licensee's products shared or disclosed to NVIDIA in
connection with the Feedback; or (c) Licensee's confidential
information voluntarily provided to NVIDIA in connection with
the Feedback, which are retained in the memories of NVIDIA's
employees, agents, or contractors who have had access to such
Residuals. Subject to the terms and conditions of this
Agreement, NVIDIA's employees, agents, or contractors shall
not be prevented from using Residuals as part of such
employee's, agent's or contractor's general knowledge, skills,
experience, talent, and/or expertise. NVIDIA shall not have
any obligation to limit or restrict the assignment of such
employees, agents or contractors or to pay royalties for any
work resulting from the use of Residuals.
1.7.1.3. Disclaimer of Warranty
FEEDBACK FROM EITHER PARTY IS PROVIDED FOR THE OTHER PARTY'S
USE "AS IS" AND BOTH PARTIES DISCLAIM ALL WARRANTIES, EXPRESS,
IMPLIED AND STATUTORY INCLUDING, WITHOUT LIMITATION, THE
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE, OR NONINFRINGEMENT. BOTH PARTIES DO NOT
REPRESENT OR WARRANT THAT THE FEEDBACK WILL MEET THE OTHER
PARTY'S REQUIREMENTS OR THAT THE OPERATION OR IMPLEMENTATION
OF THE FEEDBACK WILL BE UNINTERRUPTED OR ERROR-FREE.
1.7.1.4. No Liability for Consequential Damages
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT
SHALL EITHER PARTY OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL,
INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER
(INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION,
OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
INABILITY TO USE THE FEEDBACK, EVEN IF THE OTHER PARTY HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
1.7.2. Freedom of Action
Licensee agrees that this Agreement is nonexclusive and NVIDIA
may currently or in the future be developing software, other
technology or confidential information internally, or
receiving confidential information from other parties that
maybe similar to the Feedback and Licensee's confidential
information (as provided in Section 1.7.1.2 above), which may
be provided to NVIDIA in connection with Feedback by Licensee.
Accordingly, Licensee agrees that nothing in this Agreement
will be construed as a representation or inference that NVIDIA
will not develop, design, manufacture, acquire, market
products, or have products developed, designed, manufactured,
acquired, or marketed for NVIDIA, that compete with the
Licensee's products or confidential information.
1.7.3. No Implied Licenses
Under no circumstances should anything in this Agreement be
construed as NVIDIA granting by implication, estoppel or
otherwise, (i) a license to any NVIDIA product or technology
other than the SOFTWARE; or (ii) any additional license rights
for the SOFTWARE other than the licenses expressly granted in
this Agreement.
1.7.4.
If any provision of this Agreement is inconsistent with, or
cannot be fully enforced under, the law, such provision will
be construed as limited to the extent necessary to be
consistent with and fully enforceable under the law. This
Agreement is the final, complete and exclusive agreement
between the parties relating to the subject matter hereof, and
supersedes all prior or contemporaneous understandings and
agreements relating to such subject matter, whether oral or
written. This Agreement may only be modified in writing signed
by an authorized officer of NVIDIA. Licensee agrees that it
will not ship, transfer or export the SOFTWARE into any
country, or use the SOFTWARE in any manner, prohibited by the
United States Bureau of Industry and Security or any export
laws, restrictions or regulations.
1.7.5.
The parties agree that the following sections of the Agreement
will survive the termination of the License: Section 1.2.1.4,
Section 1.4, Section 1.5, Section 1.6, and Section 1.7.
1.8. Attachment A
Redistributable Software
In connection with Section 1.2.1.1 of this Agreement, the
following files may be redistributed with software
applications developed by Licensee, including certain
variations of these files that have version number or
architecture specific information embedded in the file name -
as an example only, for release version 6.0 of the 64-bit
Windows software, the file cudart64_60.dll is redistributable.
Component : CUDA Runtime
Windows : cudart.dll, cudart_static.lib, cudadevrt.lib
Mac OSX : libcudart.dylib, libcudart_static.a, libcudadevrt.a
Linux : libcudart.so, libcudart_static.a, libcudadevrt.a
Android : libcudart.so, libcudart_static.a, libcudadevrt.a
Component : CUDA FFT Library
Windows : cufft.dll, cufftw.dll
Mac OSX : libcufft.dylib, libcufft_static.a, libcufftw.dylib, libcufftw_static.a
Linux : libcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a
Android : libcufft.so, libcufft_static.a, libcufftw.so, libcufftw_static.a
Component : CUDA BLAS Library
Windows : cublas.dll, cublas_device.lib
Mac OSX : libcublas.dylib, libcublas_static.a, libcublas_device.a
Linux : libcublas.so, libcublas_static.a, libcublas_device.a
Android : libcublas.so, libcublas_static.a, libcublas_device.a
Component : NVIDIA "Drop-in" BLAS Library
Windows : nvblas.dll
Mac OSX : libnvblas.dylib
Linux : libnvblas.so
Component : CUDA Sparse Matrix Library
Windows : cusparse.dll
Mac OSX : libcusparse.dylib, libcusparse_static.a
Linux : libcusparse.so, libcusparse_static.a
Android : libcusparse.so, libcusparse_static.a
Component : CUDA Linear Solver Library
Windows : cusolver.dll
Mac OSX : libcusolver.dylib, libcusolver_static.a
Linux : libcusolver.so, libcusolver_static.a
Android : libcusolver.so, libcusolver_static.a
Component : CUDA Random Number Generation Library
Windows : curand.dll
Mac OSX : libcurand.dylib, libcurand_static.a
Linux : libcurand.so, libcurand_static.a
Android : libcurand.so, libcurand_static.a
Component : NVIDIA Performance Primitives Library
Windows : nppc.dll, nppi.dll, npps.dll
Mac OSX : libnppc.dylib, libnppi.dylib, libnpps.dylib, libnppc_static.a, libnpps_static.a, libnppi_static.a
Linux : libnppc.so, libnppi.so, libnpps.so, libnppc_static.a, libnpps_static.a, libnppi_static.a
Android : libnppc.so, libnppi.so, libnpps.so, libnppc_static.a, libnpps_static.a, libnppi_static.a
Component : Internal common library required for statically linking to cuBLAS, cuSPARSE, cuFFT, cuRAND and NPP
Mac OSX : libculibos.a
Linux : libculibos.a
Component : NVIDIA Runtime Compilation Library
Windows : nvrtc.dll, nvrtc-builtins.dll
Mac OSX : libnvrtc.dylib, libnvrtc-builtins.dylib
Linux : libnvrtc.so, libnvrtc-builtins.so
Component : NVIDIA Optimizing Compiler Library
Windows : nvvm.dll
Mac OSX : libnvvm.dylib
Linux : libnvvm.so
Component : NVIDIA Common Device Math Functions Library
Windows : libdevice.compute_20.bc, libdevice.compute_30.bc, libdevice.compute_35.bc
Mac OSX : libdevice.compute_20.bc, libdevice.compute_30.bc, libdevice.compute_35.bc
Linux : libdevice.compute_20.bc, libdevice.compute_30.bc, libdevice.compute_35.bc
Component : CUDA Occupancy Calculation Header Library
All : cuda_occupancy.h
Component : Profiling Tools Interface Library
Windows : cupti.dll
Mac OSX : libcupti.dylib
Linux : libcupti.so
1.9. Attachment B
Additional Licensing Obligations
The following third party components included in the SOFTWARE
are licensed to Licensee pursuant to the following terms and
conditions:
1. Licensee's use of the GDB third party component is
subject to the terms and conditions of GNU GPL v3:
This product includes copyrighted third-party software licensed
under the terms of the GNU General Public License v3 ("GPL v3").
All third-party software packages are copyright by their respective
authors. GPL v3 terms and conditions are hereby incorporated into
the Agreement by this reference: http://www.gnu.org/licenses/gpl.txt
Consistent with these licensing requirements, the software
listed below is provided under the terms of the specified
open source software licenses. To obtain source code for
software provided under licenses that require
redistribution of source code, including the GNU General
Public License (GPL) and GNU Lesser General Public License
(LGPL), contact [email protected]. This offer is
valid for a period of three (3) years from the date of the
distribution of this product by NVIDIA CORPORATION.
Component License
CUDA-GDB GPL v3
2. Licensee represents and warrants that any and all third
party licensing and/or royalty payment obligations in
connection with Licensee's use of the H.264 video codecs
are solely the responsibility of Licensee.
3. Licensee's use of the Thrust library is subject to the
terms and conditions of the Apache License Version 2.0.
All third-party software packages are copyright by their
respective authors. Apache License Version 2.0 terms and
conditions are hereby incorporated into the Agreement by
this reference.
http://www.apache.org/licenses/LICENSE-2.0.html
In addition, Licensee acknowledges the following notice:
Thrust includes source code from the Boost Iterator,
Tuple, System, and Random Number libraries.
Boost Software License - Version 1.0 - August 17th, 2003
. . . .
Permission is hereby granted, free of charge, to any person or
organization obtaining a copy of the software and accompanying
documentation covered by this license (the "Software") to use,
reproduce, display, distribute, execute, and transmit the Software,
and to prepare derivative works of the Software, and to permit
third-parties to whom the Software is furnished to do so, all
subject to the following:
The copyright notices in the Software and this entire statement,
including the above license grant, this restriction and the following
disclaimer, must be included in all copies of the Software, in whole
or in part, and all derivative works of the Software, unless such
copies or derivative works are solely in the form of machine-executable
object code generated by a source language processor.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
4. Licensee's use of the LLVM third party component is
subject to the following terms and conditions:
======================================================
LLVM Release License
======================================================
University of Illinois/NCSA
Open Source License
Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
All rights reserved.
Developed by:
LLVM Team
University of Illinois at Urbana-Champaign
http://llvm.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal with the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.
* Neither the names of the LLVM Team, University of Illinois at Urbana-
Champaign, nor the names of its contributors may be used to endorse or
promote products derived from this Software without specific prior
written permission.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS WITH THE SOFTWARE.
5. Licensee's use of the PCRE third party component is
subject to the following terms and conditions:
------------
PCRE LICENCE
------------
PCRE is a library of functions to support regular expressions whose syntax
and semantics are as close as possible to those of the Perl 5 language.
Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
specified below. The documentation for PCRE, supplied in the "doc"
directory, is distributed under the same terms as the software itself. The
basic library functions are written in C and are freestanding. Also
included in the distribution is a set of C++ wrapper functions, and a just-
in-time compiler that can be used to optimize pattern matching. These are
both optional features that can be omitted when the library is built.
THE BASIC LIBRARY FUNCTIONS
---------------------------
Written by: Philip Hazel
Email local part: ph10
Email domain: cam.ac.uk
University of Cambridge Computing Service,
Cambridge, England.
Copyright (c) 1997-2012 University of Cambridge
All rights reserved.
PCRE JUST-IN-TIME COMPILATION SUPPORT
-------------------------------------
Written by: Zoltan Herczeg
Email local part: hzmester
Emain domain: freemail.hu
Copyright(c) 2010-2012 Zoltan Herczeg
All rights reserved.
STACK-LESS JUST-IN-TIME COMPILER
--------------------------------
Written by: Zoltan Herczeg
Email local part: hzmester
Emain domain: freemail.hu
Copyright(c) 2009-2012 Zoltan Herczeg
All rights reserved.
THE C++ WRAPPER FUNCTIONS
-------------------------
Contributed by: Google Inc.
Copyright (c) 2007-2012, Google Inc.
All rights reserved.
THE "BSD" LICENCE
-----------------
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the University of Cambridge nor the name of Google
Inc. nor the names of their contributors may be used to endorse or
promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
6. Some of the cuBLAS library routines were written by or
derived from code written by Vasily Volkov and are subject
to the Modified Berkeley Software Distribution License as
follows:
Copyright (c) 2007-2009, Regents of the University of California
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the University of California, Berkeley nor
the names of its contributors may be used to endorse or promote
products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
7. Some of the cuBLAS library routines were written by or
derived from code written by Davide Barbieri and are
subject to the Modified Berkeley Software Distribution
License as follows:
Copyright (c) 2008-2009 Davide Barbieri @ University of Rome Tor Vergata.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* The name of the author may not be used to endorse or promote
products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
8. Some of the cuBLAS library routines were derived from
code developed by the University of Tennessee and are
subject to the Modified Berkeley Software Distribution
License as follows:
Copyright (c) 2010 The University of Tennessee.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer listed in this license in the documentation and/or
other materials provided with the distribution.
* Neither the name of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9. Some of the cuBLAS library routines were written by or
derived from code written by Jonathan Hogg and are subject
to the Modified Berkeley Software Distribution License as
follows:
Copyright (c) 2012, The Science and Technology Facilities Council (STFC).
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the STFC nor the names of its contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE STFC BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
10. Some of the cuBLAS library routines were written by or
derived from code written by Ahmad M. Abdelfattah, David
Keyes, and Hatem Ltaief, and are subject to the Apache
License, Version 2.0, as follows:
-- (C) Copyright 2013 King Abdullah University of Science and Technology
Authors:
Ahmad Abdelfattah ([email protected])
David Keyes ([email protected])
Hatem Ltaief ([email protected])
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the King Abdullah University of Science and
Technology nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
11. Some of the cuSPARSE library routines were written by or
derived from code written by Li-Wen Chang and are subject
to the NCSA Open Source License as follows:
Copyright (c) 2012, University of Illinois.
All rights reserved.
Developed by: IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal with the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimers in the documentation and/or other materials provided
with the distribution.
* Neither the names of IMPACT Group, University of Illinois, nor
the names of its contributors may be used to endorse or promote
products derived from this Software without specific prior
written permission.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT