warp-lang 1.9.0__py3-none-win_amd64.whl → 1.10.0rc2__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of warp-lang might be problematic. Click here for more details.

Files changed (350) hide show
  1. warp/__init__.py +301 -287
  2. warp/__init__.pyi +2220 -313
  3. warp/_src/__init__.py +14 -0
  4. warp/_src/autograd.py +1075 -0
  5. warp/_src/build.py +618 -0
  6. warp/_src/build_dll.py +640 -0
  7. warp/{builtins.py → _src/builtins.py} +1497 -226
  8. warp/_src/codegen.py +4359 -0
  9. warp/{config.py → _src/config.py} +178 -169
  10. warp/_src/constants.py +57 -0
  11. warp/_src/context.py +8294 -0
  12. warp/_src/dlpack.py +462 -0
  13. warp/_src/fabric.py +355 -0
  14. warp/_src/fem/__init__.py +14 -0
  15. warp/_src/fem/adaptivity.py +508 -0
  16. warp/_src/fem/cache.py +687 -0
  17. warp/_src/fem/dirichlet.py +188 -0
  18. warp/{fem → _src/fem}/domain.py +40 -30
  19. warp/_src/fem/field/__init__.py +131 -0
  20. warp/_src/fem/field/field.py +701 -0
  21. warp/{fem → _src/fem}/field/nodal_field.py +30 -15
  22. warp/{fem → _src/fem}/field/restriction.py +1 -1
  23. warp/{fem → _src/fem}/field/virtual.py +53 -27
  24. warp/_src/fem/geometry/__init__.py +32 -0
  25. warp/{fem → _src/fem}/geometry/adaptive_nanogrid.py +77 -163
  26. warp/_src/fem/geometry/closest_point.py +97 -0
  27. warp/{fem → _src/fem}/geometry/deformed_geometry.py +14 -22
  28. warp/{fem → _src/fem}/geometry/element.py +32 -10
  29. warp/{fem → _src/fem}/geometry/geometry.py +48 -20
  30. warp/{fem → _src/fem}/geometry/grid_2d.py +12 -23
  31. warp/{fem → _src/fem}/geometry/grid_3d.py +12 -23
  32. warp/{fem → _src/fem}/geometry/hexmesh.py +40 -63
  33. warp/{fem → _src/fem}/geometry/nanogrid.py +255 -248
  34. warp/{fem → _src/fem}/geometry/partition.py +121 -63
  35. warp/{fem → _src/fem}/geometry/quadmesh.py +26 -45
  36. warp/{fem → _src/fem}/geometry/tetmesh.py +40 -63
  37. warp/{fem → _src/fem}/geometry/trimesh.py +26 -45
  38. warp/{fem → _src/fem}/integrate.py +164 -158
  39. warp/_src/fem/linalg.py +383 -0
  40. warp/_src/fem/operator.py +396 -0
  41. warp/_src/fem/polynomial.py +229 -0
  42. warp/{fem → _src/fem}/quadrature/pic_quadrature.py +15 -20
  43. warp/{fem → _src/fem}/quadrature/quadrature.py +95 -47
  44. warp/_src/fem/space/__init__.py +248 -0
  45. warp/{fem → _src/fem}/space/basis_function_space.py +20 -11
  46. warp/_src/fem/space/basis_space.py +679 -0
  47. warp/{fem → _src/fem}/space/dof_mapper.py +3 -3
  48. warp/{fem → _src/fem}/space/function_space.py +14 -13
  49. warp/{fem → _src/fem}/space/grid_2d_function_space.py +4 -7
  50. warp/{fem → _src/fem}/space/grid_3d_function_space.py +4 -4
  51. warp/{fem → _src/fem}/space/hexmesh_function_space.py +4 -10
  52. warp/{fem → _src/fem}/space/nanogrid_function_space.py +3 -9
  53. warp/{fem → _src/fem}/space/partition.py +117 -60
  54. warp/{fem → _src/fem}/space/quadmesh_function_space.py +4 -10
  55. warp/{fem → _src/fem}/space/restriction.py +66 -33
  56. warp/_src/fem/space/shape/__init__.py +152 -0
  57. warp/{fem → _src/fem}/space/shape/cube_shape_function.py +9 -9
  58. warp/{fem → _src/fem}/space/shape/shape_function.py +8 -9
  59. warp/{fem → _src/fem}/space/shape/square_shape_function.py +6 -6
  60. warp/{fem → _src/fem}/space/shape/tet_shape_function.py +3 -3
  61. warp/{fem → _src/fem}/space/shape/triangle_shape_function.py +3 -3
  62. warp/{fem → _src/fem}/space/tetmesh_function_space.py +3 -9
  63. warp/_src/fem/space/topology.py +459 -0
  64. warp/{fem → _src/fem}/space/trimesh_function_space.py +3 -9
  65. warp/_src/fem/types.py +112 -0
  66. warp/_src/fem/utils.py +486 -0
  67. warp/_src/jax.py +186 -0
  68. warp/_src/jax_experimental/__init__.py +14 -0
  69. warp/_src/jax_experimental/custom_call.py +387 -0
  70. warp/_src/jax_experimental/ffi.py +1284 -0
  71. warp/_src/jax_experimental/xla_ffi.py +656 -0
  72. warp/_src/marching_cubes.py +708 -0
  73. warp/_src/math.py +414 -0
  74. warp/_src/optim/__init__.py +14 -0
  75. warp/_src/optim/adam.py +163 -0
  76. warp/_src/optim/linear.py +1606 -0
  77. warp/_src/optim/sgd.py +112 -0
  78. warp/_src/paddle.py +406 -0
  79. warp/_src/render/__init__.py +14 -0
  80. warp/_src/render/imgui_manager.py +289 -0
  81. warp/_src/render/render_opengl.py +3636 -0
  82. warp/_src/render/render_usd.py +937 -0
  83. warp/_src/render/utils.py +160 -0
  84. warp/_src/sparse.py +2716 -0
  85. warp/_src/tape.py +1206 -0
  86. warp/{thirdparty → _src/thirdparty}/unittest_parallel.py +9 -2
  87. warp/_src/torch.py +391 -0
  88. warp/_src/types.py +5870 -0
  89. warp/_src/utils.py +1693 -0
  90. warp/autograd.py +12 -1054
  91. warp/bin/warp-clang.dll +0 -0
  92. warp/bin/warp.dll +0 -0
  93. warp/build.py +8 -588
  94. warp/build_dll.py +6 -471
  95. warp/codegen.py +6 -4246
  96. warp/constants.py +6 -39
  97. warp/context.py +12 -7851
  98. warp/dlpack.py +6 -444
  99. warp/examples/distributed/example_jacobi_mpi.py +4 -5
  100. warp/examples/fem/example_adaptive_grid.py +1 -1
  101. warp/examples/fem/example_apic_fluid.py +1 -1
  102. warp/examples/fem/example_burgers.py +8 -8
  103. warp/examples/fem/example_diffusion.py +1 -1
  104. warp/examples/fem/example_distortion_energy.py +1 -1
  105. warp/examples/fem/example_mixed_elasticity.py +2 -2
  106. warp/examples/fem/example_navier_stokes.py +1 -1
  107. warp/examples/fem/example_nonconforming_contact.py +7 -7
  108. warp/examples/fem/example_stokes.py +1 -1
  109. warp/examples/fem/example_stokes_transfer.py +1 -1
  110. warp/examples/fem/utils.py +2 -2
  111. warp/examples/interop/example_jax_callable.py +1 -1
  112. warp/examples/interop/example_jax_ffi_callback.py +1 -1
  113. warp/examples/interop/example_jax_kernel.py +3 -2
  114. warp/examples/tile/example_tile_mcgp.py +191 -0
  115. warp/fabric.py +6 -337
  116. warp/fem/__init__.py +159 -97
  117. warp/fem/adaptivity.py +7 -489
  118. warp/fem/cache.py +9 -648
  119. warp/fem/dirichlet.py +6 -184
  120. warp/fem/field/__init__.py +8 -109
  121. warp/fem/field/field.py +7 -652
  122. warp/fem/geometry/__init__.py +7 -18
  123. warp/fem/geometry/closest_point.py +11 -77
  124. warp/fem/linalg.py +18 -366
  125. warp/fem/operator.py +11 -369
  126. warp/fem/polynomial.py +9 -209
  127. warp/fem/space/__init__.py +5 -211
  128. warp/fem/space/basis_space.py +6 -662
  129. warp/fem/space/shape/__init__.py +41 -118
  130. warp/fem/space/topology.py +6 -437
  131. warp/fem/types.py +6 -81
  132. warp/fem/utils.py +11 -444
  133. warp/jax.py +8 -165
  134. warp/jax_experimental/__init__.py +14 -1
  135. warp/jax_experimental/custom_call.py +8 -342
  136. warp/jax_experimental/ffi.py +17 -853
  137. warp/jax_experimental/xla_ffi.py +5 -596
  138. warp/marching_cubes.py +5 -689
  139. warp/math.py +16 -393
  140. warp/native/array.h +385 -37
  141. warp/native/builtin.h +316 -39
  142. warp/native/bvh.cpp +43 -9
  143. warp/native/bvh.cu +62 -27
  144. warp/native/bvh.h +310 -309
  145. warp/native/clang/clang.cpp +102 -97
  146. warp/native/coloring.cpp +0 -1
  147. warp/native/crt.h +208 -0
  148. warp/native/exports.h +156 -0
  149. warp/native/hashgrid.cu +2 -0
  150. warp/native/intersect.h +24 -1
  151. warp/native/intersect_tri.h +44 -35
  152. warp/native/mat.h +1456 -276
  153. warp/native/mesh.cpp +4 -4
  154. warp/native/mesh.cu +4 -2
  155. warp/native/mesh.h +176 -61
  156. warp/native/quat.h +0 -52
  157. warp/native/scan.cu +2 -0
  158. warp/native/sort.cu +22 -13
  159. warp/native/sort.h +2 -0
  160. warp/native/sparse.cu +7 -3
  161. warp/native/spatial.h +12 -0
  162. warp/native/tile.h +837 -70
  163. warp/native/tile_radix_sort.h +1 -1
  164. warp/native/tile_reduce.h +394 -46
  165. warp/native/tile_scan.h +4 -4
  166. warp/native/vec.h +469 -53
  167. warp/native/version.h +23 -0
  168. warp/native/volume.cpp +1 -1
  169. warp/native/volume.cu +1 -0
  170. warp/native/volume.h +1 -1
  171. warp/native/volume_builder.cu +2 -0
  172. warp/native/warp.cpp +60 -32
  173. warp/native/warp.cu +313 -201
  174. warp/native/warp.h +14 -11
  175. warp/optim/__init__.py +6 -3
  176. warp/optim/adam.py +6 -145
  177. warp/optim/linear.py +14 -1585
  178. warp/optim/sgd.py +6 -94
  179. warp/paddle.py +6 -388
  180. warp/render/__init__.py +8 -4
  181. warp/render/imgui_manager.py +7 -267
  182. warp/render/render_opengl.py +6 -3616
  183. warp/render/render_usd.py +6 -918
  184. warp/render/utils.py +6 -142
  185. warp/sparse.py +37 -2563
  186. warp/tape.py +6 -1188
  187. warp/tests/__main__.py +1 -1
  188. warp/tests/cuda/test_async.py +4 -4
  189. warp/tests/cuda/test_conditional_captures.py +1 -1
  190. warp/tests/cuda/test_multigpu.py +1 -1
  191. warp/tests/cuda/test_streams.py +58 -1
  192. warp/tests/geometry/test_bvh.py +157 -22
  193. warp/tests/geometry/test_hash_grid.py +38 -0
  194. warp/tests/geometry/test_marching_cubes.py +0 -1
  195. warp/tests/geometry/test_mesh.py +5 -3
  196. warp/tests/geometry/test_mesh_query_aabb.py +5 -12
  197. warp/tests/geometry/test_mesh_query_point.py +5 -2
  198. warp/tests/geometry/test_mesh_query_ray.py +15 -3
  199. warp/tests/geometry/test_volume_write.py +5 -5
  200. warp/tests/interop/test_dlpack.py +14 -14
  201. warp/tests/interop/test_jax.py +1382 -79
  202. warp/tests/interop/test_paddle.py +1 -1
  203. warp/tests/test_adam.py +0 -1
  204. warp/tests/test_arithmetic.py +9 -9
  205. warp/tests/test_array.py +529 -100
  206. warp/tests/test_array_reduce.py +3 -3
  207. warp/tests/test_atomic.py +12 -8
  208. warp/tests/test_atomic_bitwise.py +209 -0
  209. warp/tests/test_atomic_cas.py +4 -4
  210. warp/tests/test_bool.py +2 -2
  211. warp/tests/test_builtins_resolution.py +5 -571
  212. warp/tests/test_codegen.py +34 -15
  213. warp/tests/test_conditional.py +1 -1
  214. warp/tests/test_context.py +6 -6
  215. warp/tests/test_copy.py +242 -161
  216. warp/tests/test_ctypes.py +3 -3
  217. warp/tests/test_devices.py +24 -2
  218. warp/tests/test_examples.py +16 -84
  219. warp/tests/test_fabricarray.py +35 -35
  220. warp/tests/test_fast_math.py +0 -2
  221. warp/tests/test_fem.py +60 -14
  222. warp/tests/test_fixedarray.py +3 -3
  223. warp/tests/test_func.py +8 -5
  224. warp/tests/test_generics.py +1 -1
  225. warp/tests/test_indexedarray.py +24 -24
  226. warp/tests/test_intersect.py +39 -9
  227. warp/tests/test_large.py +1 -1
  228. warp/tests/test_lerp.py +3 -1
  229. warp/tests/test_linear_solvers.py +1 -1
  230. warp/tests/test_map.py +49 -4
  231. warp/tests/test_mat.py +52 -62
  232. warp/tests/test_mat_constructors.py +4 -5
  233. warp/tests/test_mat_lite.py +1 -1
  234. warp/tests/test_mat_scalar_ops.py +121 -121
  235. warp/tests/test_math.py +34 -0
  236. warp/tests/test_module_aot.py +4 -4
  237. warp/tests/test_modules_lite.py +28 -2
  238. warp/tests/test_print.py +11 -11
  239. warp/tests/test_quat.py +93 -58
  240. warp/tests/test_runlength_encode.py +1 -1
  241. warp/tests/test_scalar_ops.py +38 -10
  242. warp/tests/test_smoothstep.py +1 -1
  243. warp/tests/test_sparse.py +126 -15
  244. warp/tests/test_spatial.py +105 -87
  245. warp/tests/test_special_values.py +6 -6
  246. warp/tests/test_static.py +7 -7
  247. warp/tests/test_struct.py +13 -2
  248. warp/tests/test_triangle_closest_point.py +48 -1
  249. warp/tests/test_tuple.py +96 -0
  250. warp/tests/test_types.py +82 -9
  251. warp/tests/test_utils.py +52 -52
  252. warp/tests/test_vec.py +29 -29
  253. warp/tests/test_vec_constructors.py +5 -5
  254. warp/tests/test_vec_scalar_ops.py +97 -97
  255. warp/tests/test_version.py +75 -0
  256. warp/tests/tile/test_tile.py +239 -0
  257. warp/tests/tile/test_tile_atomic_bitwise.py +403 -0
  258. warp/tests/tile/test_tile_cholesky.py +7 -4
  259. warp/tests/tile/test_tile_load.py +26 -2
  260. warp/tests/tile/test_tile_mathdx.py +3 -3
  261. warp/tests/tile/test_tile_matmul.py +1 -1
  262. warp/tests/tile/test_tile_mlp.py +2 -4
  263. warp/tests/tile/test_tile_reduce.py +214 -13
  264. warp/tests/unittest_suites.py +6 -14
  265. warp/tests/unittest_utils.py +10 -9
  266. warp/tests/walkthrough_debug.py +3 -1
  267. warp/torch.py +6 -373
  268. warp/types.py +29 -5750
  269. warp/utils.py +10 -1659
  270. {warp_lang-1.9.0.dist-info → warp_lang-1.10.0rc2.dist-info}/METADATA +47 -103
  271. warp_lang-1.10.0rc2.dist-info/RECORD +468 -0
  272. warp_lang-1.10.0rc2.dist-info/licenses/licenses/Gaia-LICENSE.txt +6 -0
  273. warp_lang-1.10.0rc2.dist-info/licenses/licenses/appdirs-LICENSE.txt +22 -0
  274. warp_lang-1.10.0rc2.dist-info/licenses/licenses/asset_pixel_jpg-LICENSE.txt +3 -0
  275. warp_lang-1.10.0rc2.dist-info/licenses/licenses/cuda-LICENSE.txt +1582 -0
  276. warp_lang-1.10.0rc2.dist-info/licenses/licenses/dlpack-LICENSE.txt +201 -0
  277. warp_lang-1.10.0rc2.dist-info/licenses/licenses/fp16-LICENSE.txt +28 -0
  278. warp_lang-1.10.0rc2.dist-info/licenses/licenses/libmathdx-LICENSE.txt +220 -0
  279. warp_lang-1.10.0rc2.dist-info/licenses/licenses/llvm-LICENSE.txt +279 -0
  280. warp_lang-1.10.0rc2.dist-info/licenses/licenses/moller-LICENSE.txt +16 -0
  281. warp_lang-1.10.0rc2.dist-info/licenses/licenses/nanovdb-LICENSE.txt +2 -0
  282. warp_lang-1.10.0rc2.dist-info/licenses/licenses/nvrtc-LICENSE.txt +1592 -0
  283. warp_lang-1.10.0rc2.dist-info/licenses/licenses/svd-LICENSE.txt +23 -0
  284. warp_lang-1.10.0rc2.dist-info/licenses/licenses/unittest_parallel-LICENSE.txt +21 -0
  285. warp_lang-1.10.0rc2.dist-info/licenses/licenses/usd-LICENSE.txt +213 -0
  286. warp_lang-1.10.0rc2.dist-info/licenses/licenses/windingnumber-LICENSE.txt +21 -0
  287. warp/examples/assets/cartpole.urdf +0 -110
  288. warp/examples/assets/crazyflie.usd +0 -0
  289. warp/examples/assets/nv_ant.xml +0 -92
  290. warp/examples/assets/nv_humanoid.xml +0 -183
  291. warp/examples/assets/quadruped.urdf +0 -268
  292. warp/examples/optim/example_bounce.py +0 -266
  293. warp/examples/optim/example_cloth_throw.py +0 -228
  294. warp/examples/optim/example_drone.py +0 -870
  295. warp/examples/optim/example_inverse_kinematics.py +0 -182
  296. warp/examples/optim/example_inverse_kinematics_torch.py +0 -191
  297. warp/examples/optim/example_softbody_properties.py +0 -400
  298. warp/examples/optim/example_spring_cage.py +0 -245
  299. warp/examples/optim/example_trajectory.py +0 -227
  300. warp/examples/sim/example_cartpole.py +0 -143
  301. warp/examples/sim/example_cloth.py +0 -225
  302. warp/examples/sim/example_cloth_self_contact.py +0 -316
  303. warp/examples/sim/example_granular.py +0 -130
  304. warp/examples/sim/example_granular_collision_sdf.py +0 -202
  305. warp/examples/sim/example_jacobian_ik.py +0 -244
  306. warp/examples/sim/example_particle_chain.py +0 -124
  307. warp/examples/sim/example_quadruped.py +0 -203
  308. warp/examples/sim/example_rigid_chain.py +0 -203
  309. warp/examples/sim/example_rigid_contact.py +0 -195
  310. warp/examples/sim/example_rigid_force.py +0 -133
  311. warp/examples/sim/example_rigid_gyroscopic.py +0 -115
  312. warp/examples/sim/example_rigid_soft_contact.py +0 -140
  313. warp/examples/sim/example_soft_body.py +0 -196
  314. warp/examples/tile/example_tile_walker.py +0 -327
  315. warp/sim/__init__.py +0 -74
  316. warp/sim/articulation.py +0 -793
  317. warp/sim/collide.py +0 -2570
  318. warp/sim/graph_coloring.py +0 -307
  319. warp/sim/import_mjcf.py +0 -791
  320. warp/sim/import_snu.py +0 -227
  321. warp/sim/import_urdf.py +0 -579
  322. warp/sim/import_usd.py +0 -898
  323. warp/sim/inertia.py +0 -357
  324. warp/sim/integrator.py +0 -245
  325. warp/sim/integrator_euler.py +0 -2000
  326. warp/sim/integrator_featherstone.py +0 -2101
  327. warp/sim/integrator_vbd.py +0 -2487
  328. warp/sim/integrator_xpbd.py +0 -3295
  329. warp/sim/model.py +0 -4821
  330. warp/sim/particles.py +0 -121
  331. warp/sim/render.py +0 -431
  332. warp/sim/utils.py +0 -431
  333. warp/tests/sim/disabled_kinematics.py +0 -244
  334. warp/tests/sim/test_cloth.py +0 -863
  335. warp/tests/sim/test_collision.py +0 -743
  336. warp/tests/sim/test_coloring.py +0 -347
  337. warp/tests/sim/test_inertia.py +0 -161
  338. warp/tests/sim/test_model.py +0 -226
  339. warp/tests/sim/test_sim_grad.py +0 -287
  340. warp/tests/sim/test_sim_grad_bounce_linear.py +0 -212
  341. warp/tests/sim/test_sim_kinematics.py +0 -98
  342. warp/thirdparty/__init__.py +0 -0
  343. warp_lang-1.9.0.dist-info/RECORD +0 -456
  344. /warp/{fem → _src/fem}/quadrature/__init__.py +0 -0
  345. /warp/{tests/sim → _src/thirdparty}/__init__.py +0 -0
  346. /warp/{thirdparty → _src/thirdparty}/appdirs.py +0 -0
  347. /warp/{thirdparty → _src/thirdparty}/dlpack.py +0 -0
  348. {warp_lang-1.9.0.dist-info → warp_lang-1.10.0rc2.dist-info}/WHEEL +0 -0
  349. {warp_lang-1.9.0.dist-info → warp_lang-1.10.0rc2.dist-info}/licenses/LICENSE.md +0 -0
  350. {warp_lang-1.9.0.dist-info → warp_lang-1.10.0rc2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1592 @@
1
+ NVIDIA NVRTC CUDA compiler distributable (https://docs.nvidia.com/cuda/nvrtc/index.html) is licensed under:
2
+
3
+ End User License Agreement
4
+ --------------------------
5
+
6
+
7
+ Preface
8
+ -------
9
+
10
+ The Software License Agreement in Chapter 1 and the Supplement
11
+ in Chapter 2 contain license terms and conditions that govern
12
+ the use of NVIDIA software. By accepting this agreement, you
13
+ agree to comply with all the terms and conditions applicable
14
+ to the product(s) included herein.
15
+
16
+
17
+ NVIDIA Driver
18
+
19
+
20
+ Description
21
+
22
+ This package contains the operating system driver and
23
+ fundamental system software components for NVIDIA GPUs.
24
+
25
+
26
+ NVIDIA CUDA Toolkit
27
+
28
+
29
+ Description
30
+
31
+ The NVIDIA CUDA Toolkit provides command-line and graphical
32
+ tools for building, debugging and optimizing the performance
33
+ of applications accelerated by NVIDIA GPUs, runtime and math
34
+ libraries, and documentation including programming guides,
35
+ user manuals, and API references.
36
+
37
+
38
+ Default Install Location of CUDA Toolkit
39
+
40
+ Windows platform:
41
+
42
+ %ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v#.#
43
+
44
+ Linux platform:
45
+
46
+ /usr/local/cuda-#.#
47
+
48
+ Mac platform:
49
+
50
+ /Developer/NVIDIA/CUDA-#.#
51
+
52
+
53
+ NVIDIA CUDA Samples
54
+
55
+
56
+ Description
57
+
58
+ This package includes over 100+ CUDA examples that demonstrate
59
+ various CUDA programming principles, and efficient CUDA
60
+ implementation of algorithms in specific application domains.
61
+
62
+
63
+ Default Install Location of CUDA Samples
64
+
65
+ Windows platform:
66
+
67
+ %ProgramData%\NVIDIA Corporation\CUDA Samples\v#.#
68
+
69
+ Linux platform:
70
+
71
+ /usr/local/cuda-#.#/samples
72
+
73
+ and
74
+
75
+ $HOME/NVIDIA_CUDA-#.#_Samples
76
+
77
+ Mac platform:
78
+
79
+ /Developer/NVIDIA/CUDA-#.#/samples
80
+
81
+
82
+ NVIDIA Nsight Visual Studio Edition (Windows only)
83
+
84
+
85
+ Description
86
+
87
+ NVIDIA Nsight Development Platform, Visual Studio Edition is a
88
+ development environment integrated into Microsoft Visual
89
+ Studio that provides tools for debugging, profiling, analyzing
90
+ and optimizing your GPU computing and graphics applications.
91
+
92
+
93
+ Default Install Location of Nsight Visual Studio Edition
94
+
95
+ Windows platform:
96
+
97
+ %ProgramFiles(x86)%\NVIDIA Corporation\Nsight Visual Studio Edition #.#
98
+
99
+
100
+ 1. License Agreement for NVIDIA Software Development Kits
101
+ ---------------------------------------------------------
102
+
103
+
104
+ Release Date: May 21, 2019
105
+ --------------------------
106
+
107
+
108
+ Important Notice—Read before downloading, installing,
109
+ copying or using the licensed software:
110
+ -------------------------------------------------------
111
+
112
+ This license agreement, including exhibits attached
113
+ ("Agreement”) is a legal agreement between you and NVIDIA
114
+ Corporation ("NVIDIA") and governs your use of a NVIDIA
115
+ software development kit (“SDK”).
116
+
117
+ Each SDK has its own set of software and materials, but here
118
+ is a description of the types of items that may be included in
119
+ a SDK: source code, header files, APIs, data sets and assets
120
+ (examples include images, textures, models, scenes, videos,
121
+ native API input/output files), binary software, sample code,
122
+ libraries, utility programs, programming code and
123
+ documentation.
124
+
125
+ This Agreement can be accepted only by an adult of legal age
126
+ of majority in the country in which the SDK is used.
127
+
128
+ If you are entering into this Agreement on behalf of a company
129
+ or other legal entity, you represent that you have the legal
130
+ authority to bind the entity to this Agreement, in which case
131
+ “you” will mean the entity you represent.
132
+
133
+ If you don’t have the required age or authority to accept
134
+ this Agreement, or if you don’t accept all the terms and
135
+ conditions of this Agreement, do not download, install or use
136
+ the SDK.
137
+
138
+ You agree to use the SDK only for purposes that are permitted
139
+ by (a) this Agreement, and (b) any applicable law, regulation
140
+ or generally accepted practices or guidelines in the relevant
141
+ jurisdictions.
142
+
143
+
144
+ 1.1. License
145
+
146
+
147
+ 1.1.1. License Grant
148
+
149
+ Subject to the terms of this Agreement, NVIDIA hereby grants
150
+ you a non-exclusive, non-transferable license, without the
151
+ right to sublicense (except as expressly provided in this
152
+ Agreement) to:
153
+
154
+ 1. Install and use the SDK,
155
+
156
+ 2. Modify and create derivative works of sample source code
157
+ delivered in the SDK, and
158
+
159
+ 3. Distribute those portions of the SDK that are identified
160
+ in this Agreement as distributable, as incorporated in
161
+ object code format into a software application that meets
162
+ the distribution requirements indicated in this Agreement.
163
+
164
+
165
+ 1.1.2. Distribution Requirements
166
+
167
+ These are the distribution requirements for you to exercise
168
+ the distribution grant:
169
+
170
+ 1. Your application must have material additional
171
+ functionality, beyond the included portions of the SDK.
172
+
173
+ 2. The distributable portions of the SDK shall only be
174
+ accessed by your application.
175
+
176
+ 3. The following notice shall be included in modifications
177
+ and derivative works of sample source code distributed:
178
+ “This software contains source code provided by NVIDIA
179
+ Corporation.”
180
+
181
+ 4. Unless a developer tool is identified in this Agreement
182
+ as distributable, it is delivered for your internal use
183
+ only.
184
+
185
+ 5. The terms under which you distribute your application
186
+ must be consistent with the terms of this Agreement,
187
+ including (without limitation) terms relating to the
188
+ license grant and license restrictions and protection of
189
+ NVIDIA’s intellectual property rights. Additionally, you
190
+ agree that you will protect the privacy, security and
191
+ legal rights of your application users.
192
+
193
+ 6. You agree to notify NVIDIA in writing of any known or
194
+ suspected distribution or use of the SDK not in compliance
195
+ with the requirements of this Agreement, and to enforce
196
+ the terms of your agreements with respect to distributed
197
+ SDK.
198
+
199
+
200
+ 1.1.3. Authorized Users
201
+
202
+ You may allow employees and contractors of your entity or of
203
+ your subsidiary(ies) to access and use the SDK from your
204
+ secure network to perform work on your behalf.
205
+
206
+ If you are an academic institution you may allow users
207
+ enrolled or employed by the academic institution to access and
208
+ use the SDK from your secure network.
209
+
210
+ You are responsible for the compliance with the terms of this
211
+ Agreement by your authorized users. If you become aware that
212
+ your authorized users didn’t follow the terms of this
213
+ Agreement, you agree to take reasonable steps to resolve the
214
+ non-compliance and prevent new occurrences.
215
+
216
+
217
+ 1.1.4. Pre-Release SDK
218
+
219
+ The SDK versions identified as alpha, beta, preview or
220
+ otherwise as pre-release, may not be fully functional, may
221
+ contain errors or design flaws, and may have reduced or
222
+ different security, privacy, accessibility, availability, and
223
+ reliability standards relative to commercial versions of
224
+ NVIDIA software and materials. Use of a pre-release SDK may
225
+ result in unexpected results, loss of data, project delays or
226
+ other unpredictable damage or loss.
227
+
228
+ You may use a pre-release SDK at your own risk, understanding
229
+ that pre-release SDKs are not intended for use in production
230
+ or business-critical systems.
231
+
232
+ NVIDIA may choose not to make available a commercial version
233
+ of any pre-release SDK. NVIDIA may also choose to abandon
234
+ development and terminate the availability of a pre-release
235
+ SDK at any time without liability.
236
+
237
+
238
+ 1.1.5. Updates
239
+
240
+ NVIDIA may, at its option, make available patches, workarounds
241
+ or other updates to this SDK. Unless the updates are provided
242
+ with their separate governing terms, they are deemed part of
243
+ the SDK licensed to you as provided in this Agreement. You
244
+ agree that the form and content of the SDK that NVIDIA
245
+ provides may change without prior notice to you. While NVIDIA
246
+ generally maintains compatibility between versions, NVIDIA may
247
+ in some cases make changes that introduce incompatibilities in
248
+ future versions of the SDK.
249
+
250
+
251
+ 1.1.6. Third Party Licenses
252
+
253
+ The SDK may come bundled with, or otherwise include or be
254
+ distributed with, third party software licensed by a NVIDIA
255
+ supplier and/or open source software provided under an open
256
+ source license. Use of third party software is subject to the
257
+ third-party license terms, or in the absence of third party
258
+ terms, the terms of this Agreement. Copyright to third party
259
+ software is held by the copyright holders indicated in the
260
+ third-party software or license.
261
+
262
+
263
+ 1.1.7. Reservation of Rights
264
+
265
+ NVIDIA reserves all rights, title, and interest in and to the
266
+ SDK, not expressly granted to you under this Agreement.
267
+
268
+
269
+ 1.2. Limitations
270
+
271
+ The following license limitations apply to your use of the
272
+ SDK:
273
+
274
+ 1. You may not reverse engineer, decompile or disassemble,
275
+ or remove copyright or other proprietary notices from any
276
+ portion of the SDK or copies of the SDK.
277
+
278
+ 2. Except as expressly provided in this Agreement, you may
279
+ not copy, sell, rent, sublicense, transfer, distribute,
280
+ modify, or create derivative works of any portion of the
281
+ SDK. For clarity, you may not distribute or sublicense the
282
+ SDK as a stand-alone product.
283
+
284
+ 3. Unless you have an agreement with NVIDIA for this
285
+ purpose, you may not indicate that an application created
286
+ with the SDK is sponsored or endorsed by NVIDIA.
287
+
288
+ 4. You may not bypass, disable, or circumvent any
289
+ encryption, security, digital rights management or
290
+ authentication mechanism in the SDK.
291
+
292
+ 5. You may not use the SDK in any manner that would cause it
293
+ to become subject to an open source software license. As
294
+ examples, licenses that require as a condition of use,
295
+ modification, and/or distribution that the SDK be:
296
+
297
+ a. Disclosed or distributed in source code form;
298
+
299
+ b. Licensed for the purpose of making derivative works;
300
+ or
301
+
302
+ c. Redistributable at no charge.
303
+
304
+ 6. Unless you have an agreement with NVIDIA for this
305
+ purpose, you may not use the SDK with any system or
306
+ application where the use or failure of the system or
307
+ application can reasonably be expected to threaten or
308
+ result in personal injury, death, or catastrophic loss.
309
+ Examples include use in nuclear, avionics, navigation,
310
+ military, medical, life support or other life critical
311
+ applications. NVIDIA does not design, test or manufacture
312
+ the SDK for these critical uses and NVIDIA shall not be
313
+ liable to you or any third party, in whole or in part, for
314
+ any claims or damages arising from such uses.
315
+
316
+ 7. You agree to defend, indemnify and hold harmless NVIDIA
317
+ and its affiliates, and their respective employees,
318
+ contractors, agents, officers and directors, from and
319
+ against any and all claims, damages, obligations, losses,
320
+ liabilities, costs or debt, fines, restitutions and
321
+ expenses (including but not limited to attorney’s fees
322
+ and costs incident to establishing the right of
323
+ indemnification) arising out of or related to your use of
324
+ the SDK outside of the scope of this Agreement, or not in
325
+ compliance with its terms.
326
+
327
+
328
+ 1.3. Ownership
329
+
330
+ 1. NVIDIA or its licensors hold all rights, title and
331
+ interest in and to the SDK and its modifications and
332
+ derivative works, including their respective intellectual
333
+ property rights, subject to your rights described here .
334
+ This SDK may include software and materials from
335
+ NVIDIA’s licensors, and these licensors are intended
336
+ third party beneficiaries that may enforce this Agreement
337
+ with respect to their intellectual property rights.
338
+
339
+ 2. You hold all rights, title and interest in and to your
340
+ applications and your derivative works of the sample
341
+ source code delivered in the SDK, including their
342
+ respective intellectual property rights, subject to
343
+ NVIDIA’s rights described here .
344
+
345
+ 3. You may, but don’t have to, provide to NVIDIA
346
+ suggestions, feature requests or other feedback regarding
347
+ the SDK, including possible enhancements or modifications
348
+ to the SDK. For any feedback that you voluntarily provide,
349
+ you hereby grant NVIDIA and its affiliates a perpetual,
350
+ non-exclusive, worldwide, irrevocable license to use,
351
+ reproduce, modify, license, sublicense (through multiple
352
+ tiers of sublicensees), and distribute (through multiple
353
+ tiers of distributors) it without the payment of any
354
+ royalties or fees to you. NVIDIA will use feedback at its
355
+ choice. NVIDIA is constantly looking for ways to improve
356
+ its products, so you may send feedback to NVIDIA through
357
+ the developer portal at https://developer.nvidia.com.
358
+
359
+
360
+ 1.4. No Warranties
361
+
362
+ THE SDK IS PROVIDED BY NVIDIA “AS IS” AND “WITH ALL
363
+ FAULTS.” TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND
364
+ ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND
365
+ OR NATURE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING,
366
+ BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
367
+ FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, OR THE
368
+ ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT. NO
369
+ WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF
370
+ DEALING OR COURSE OF TRADE.
371
+
372
+
373
+ 1.5. Limitation of Liability
374
+
375
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS
376
+ AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
377
+ PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY LOST PROFITS, LOSS
378
+ OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF
379
+ PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION
380
+ WITH THIS AGREEMENT OR THE USE OR PERFORMANCE OF THE SDK,
381
+ WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON BREACH
382
+ OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE),
383
+ PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY OF
384
+ LIABILITY. IN NO EVENT WILL NVIDIA’S AND ITS AFFILIATES
385
+ TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS
386
+ AGREEMENT EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE
387
+ NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS
388
+ LIMIT.
389
+
390
+ These exclusions and limitations of liability shall apply
391
+ regardless if NVIDIA or its affiliates have been advised of
392
+ the possibility of such damages, and regardless of whether a
393
+ remedy fails its essential purpose. These exclusions and
394
+ limitations of liability form an essential basis of the
395
+ bargain between the parties, and, absent any of these
396
+ exclusions or limitations of liability, the provisions of this
397
+ Agreement, including, without limitation, the economic terms,
398
+ would be substantially different.
399
+
400
+
401
+ 1.6. Termination
402
+
403
+ 1. This Agreement will continue to apply until terminated by
404
+ either you or NVIDIA as described below.
405
+
406
+ 2. If you want to terminate this Agreement, you may do so by
407
+ stopping to use the SDK.
408
+
409
+ 3. NVIDIA may, at any time, terminate this Agreement if:
410
+
411
+ a. (i) you fail to comply with any term of this
412
+ Agreement and the non-compliance is not fixed within
413
+ thirty (30) days following notice from NVIDIA (or
414
+ immediately if you violate NVIDIA’s intellectual
415
+ property rights);
416
+
417
+ b. (ii) you commence or participate in any legal
418
+ proceeding against NVIDIA with respect to the SDK; or
419
+
420
+ c. (iii) NVIDIA decides to no longer provide the SDK in
421
+ a country or, in NVIDIA’s sole discretion, the
422
+ continued use of it is no longer commercially viable.
423
+
424
+ 4. Upon any termination of this Agreement, you agree to
425
+ promptly discontinue use of the SDK and destroy all copies
426
+ in your possession or control. Your prior distributions in
427
+ accordance with this Agreement are not affected by the
428
+ termination of this Agreement. Upon written request, you
429
+ will certify in writing that you have complied with your
430
+ commitments under this section. Upon any termination of
431
+ this Agreement all provisions survive except for the
432
+ license grant provisions.
433
+
434
+
435
+ 1.7. General
436
+
437
+ If you wish to assign this Agreement or your rights and
438
+ obligations, including by merger, consolidation, dissolution
439
+ or operation of law, contact NVIDIA to ask for permission. Any
440
+ attempted assignment not approved by NVIDIA in writing shall
441
+ be void and of no effect. NVIDIA may assign, delegate or
442
+ transfer this Agreement and its rights and obligations, and if
443
+ to a non-affiliate you will be notified.
444
+
445
+ You agree to cooperate with NVIDIA and provide reasonably
446
+ requested information to verify your compliance with this
447
+ Agreement.
448
+
449
+ This Agreement will be governed in all respects by the laws of
450
+ the United States and of the State of Delaware as those laws
451
+ are applied to contracts entered into and performed entirely
452
+ within Delaware by Delaware residents, without regard to the
453
+ conflicts of laws principles. The United Nations Convention on
454
+ Contracts for the International Sale of Goods is specifically
455
+ disclaimed. You agree to all terms of this Agreement in the
456
+ English language.
457
+
458
+ The state or federal courts residing in Santa Clara County,
459
+ California shall have exclusive jurisdiction over any dispute
460
+ or claim arising out of this Agreement. Notwithstanding this,
461
+ you agree that NVIDIA shall still be allowed to apply for
462
+ injunctive remedies or an equivalent type of urgent legal
463
+ relief in any jurisdiction.
464
+
465
+ If any court of competent jurisdiction determines that any
466
+ provision of this Agreement is illegal, invalid or
467
+ unenforceable, such provision will be construed as limited to
468
+ the extent necessary to be consistent with and fully
469
+ enforceable under the law and the remaining provisions will
470
+ remain in full force and effect. Unless otherwise specified,
471
+ remedies are cumulative.
472
+
473
+ Each party acknowledges and agrees that the other is an
474
+ independent contractor in the performance of this Agreement.
475
+
476
+ The SDK has been developed entirely at private expense and is
477
+ “commercial items” consisting of “commercial computer
478
+ software” and “commercial computer software
479
+ documentation” provided with RESTRICTED RIGHTS. Use,
480
+ duplication or disclosure by the U.S. Government or a U.S.
481
+ Government subcontractor is subject to the restrictions in
482
+ this Agreement pursuant to DFARS 227.7202-3(a) or as set forth
483
+ in subparagraphs (c)(1) and (2) of the Commercial Computer
484
+ Software - Restricted Rights clause at FAR 52.227-19, as
485
+ applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas
486
+ Expressway, Santa Clara, CA 95051.
487
+
488
+ The SDK is subject to United States export laws and
489
+ regulations. You agree that you will not ship, transfer or
490
+ export the SDK into any country, or use the SDK in any manner,
491
+ prohibited by the United States Bureau of Industry and
492
+ Security or economic sanctions regulations administered by the
493
+ U.S. Department of Treasury’s Office of Foreign Assets
494
+ Control (OFAC), or any applicable export laws, restrictions or
495
+ regulations. These laws include restrictions on destinations,
496
+ end users and end use. By accepting this Agreement, you
497
+ confirm that you are not a resident or citizen of any country
498
+ currently embargoed by the U.S. and that you are not otherwise
499
+ prohibited from receiving the SDK.
500
+
501
+ Any notice delivered by NVIDIA to you under this Agreement
502
+ will be delivered via mail, email or fax. You agree that any
503
+ notices that NVIDIA sends you electronically will satisfy any
504
+ legal communication requirements. Please direct your legal
505
+ notices or other correspondence to NVIDIA Corporation, 2788
506
+ San Tomas Expressway, Santa Clara, California 95051, United
507
+ States of America, Attention: Legal Department.
508
+
509
+ This Agreement and any exhibits incorporated into this
510
+ Agreement constitute the entire agreement of the parties with
511
+ respect to the subject matter of this Agreement and supersede
512
+ all prior negotiations or documentation exchanged between the
513
+ parties relating to this SDK license. Any additional and/or
514
+ conflicting terms on documents issued by you are null, void,
515
+ and invalid. Any amendment or waiver under this Agreement
516
+ shall be in writing and signed by representatives of both
517
+ parties.
518
+
519
+
520
+ 2. CUDA Toolkit Supplement to Software License Agreement for
521
+ NVIDIA Software Development Kits
522
+ ------------------------------------------------------------
523
+
524
+
525
+ Release date: August 16, 2018
526
+ -----------------------------
527
+
528
+ The terms in this supplement govern your use of the NVIDIA
529
+ CUDA Toolkit SDK under the terms of your license agreement
530
+ (“Agreement”) as modified by this supplement. Capitalized
531
+ terms used but not defined below have the meaning assigned to
532
+ them in the Agreement.
533
+
534
+ This supplement is an exhibit to the Agreement and is
535
+ incorporated as an integral part of the Agreement. In the
536
+ event of conflict between the terms in this supplement and the
537
+ terms in the Agreement, the terms in this supplement govern.
538
+
539
+
540
+ 2.1. License Scope
541
+
542
+ The SDK is licensed for you to develop applications only for
543
+ use in systems with NVIDIA GPUs.
544
+
545
+
546
+ 2.2. Distribution
547
+
548
+ The portions of the SDK that are distributable under the
549
+ Agreement are listed in Attachment A.
550
+
551
+
552
+ 2.3. Operating Systems
553
+
554
+ Those portions of the SDK designed exclusively for use on the
555
+ Linux or FreeBSD operating systems, or other operating systems
556
+ derived from the source code to these operating systems, may
557
+ be copied and redistributed for use in accordance with this
558
+ Agreement, provided that the object code files are not
559
+ modified in any way (except for unzipping of compressed
560
+ files).
561
+
562
+
563
+ 2.4. Audio and Video Encoders and Decoders
564
+
565
+ You acknowledge and agree that it is your sole responsibility
566
+ to obtain any additional third-party licenses required to
567
+ make, have made, use, have used, sell, import, and offer for
568
+ sale your products or services that include or incorporate any
569
+ third-party software and content relating to audio and/or
570
+ video encoders and decoders from, including but not limited
571
+ to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A.,
572
+ MPEG-LA, and Coding Technologies. NVIDIA does not grant to you
573
+ under this Agreement any necessary patent or other rights with
574
+ respect to any audio and/or video encoders and decoders.
575
+
576
+
577
+ 2.5. Licensing
578
+
579
+ If the distribution terms in this Agreement are not suitable
580
+ for your organization, or for any questions regarding this
581
+ Agreement, please contact NVIDIA at
582
+ nvidia-compute-license-questions@nvidia.com.
583
+
584
+
585
+ 2.6. Attachment A
586
+
587
+ The following portions of the SDK are distributable under the
588
+ Agreement:
589
+
590
+ Component
591
+
592
+ CUDA Runtime
593
+
594
+ Windows
595
+
596
+ cudart.dll, cudart_static.lib, cudadevrt.lib
597
+
598
+ Mac OSX
599
+
600
+ libcudart.dylib, libcudart_static.a, libcudadevrt.a
601
+
602
+ Linux
603
+
604
+ libcudart.so, libcudart_static.a, libcudadevrt.a
605
+
606
+ Android
607
+
608
+ libcudart.so, libcudart_static.a, libcudadevrt.a
609
+
610
+ Component
611
+
612
+ CUDA FFT Library
613
+
614
+ Windows
615
+
616
+ cufft.dll, cufftw.dll, cufft.lib, cufftw.lib
617
+
618
+ Mac OSX
619
+
620
+ libcufft.dylib, libcufft_static.a, libcufftw.dylib,
621
+ libcufftw_static.a
622
+
623
+ Linux
624
+
625
+ libcufft.so, libcufft_static.a, libcufftw.so,
626
+ libcufftw_static.a
627
+
628
+ Android
629
+
630
+ libcufft.so, libcufft_static.a, libcufftw.so,
631
+ libcufftw_static.a
632
+
633
+ Component
634
+
635
+ CUDA BLAS Library
636
+
637
+ Windows
638
+
639
+ cublas.dll, cublasLt.dll
640
+
641
+ Mac OSX
642
+
643
+ libcublas.dylib, libcublasLt.dylib, libcublas_static.a,
644
+ libcublasLt_static.a
645
+
646
+ Linux
647
+
648
+ libcublas.so, libcublasLt.so, libcublas_static.a,
649
+ libcublasLt_static.a
650
+
651
+ Android
652
+
653
+ libcublas.so, libcublasLt.so, libcublas_static.a,
654
+ libcublasLt_static.a
655
+
656
+ Component
657
+
658
+ NVIDIA "Drop-in" BLAS Library
659
+
660
+ Windows
661
+
662
+ nvblas.dll
663
+
664
+ Mac OSX
665
+
666
+ libnvblas.dylib
667
+
668
+ Linux
669
+
670
+ libnvblas.so
671
+
672
+ Component
673
+
674
+ CUDA Sparse Matrix Library
675
+
676
+ Windows
677
+
678
+ cusparse.dll, cusparse.lib
679
+
680
+ Mac OSX
681
+
682
+ libcusparse.dylib, libcusparse_static.a
683
+
684
+ Linux
685
+
686
+ libcusparse.so, libcusparse_static.a
687
+
688
+ Android
689
+
690
+ libcusparse.so, libcusparse_static.a
691
+
692
+ Component
693
+
694
+ CUDA Linear Solver Library
695
+
696
+ Windows
697
+
698
+ cusolver.dll, cusolver.lib
699
+
700
+ Mac OSX
701
+
702
+ libcusolver.dylib, libcusolver_static.a
703
+
704
+ Linux
705
+
706
+ libcusolver.so, libcusolver_static.a
707
+
708
+ Android
709
+
710
+ libcusolver.so, libcusolver_static.a
711
+
712
+ Component
713
+
714
+ CUDA Random Number Generation Library
715
+
716
+ Windows
717
+
718
+ curand.dll, curand.lib
719
+
720
+ Mac OSX
721
+
722
+ libcurand.dylib, libcurand_static.a
723
+
724
+ Linux
725
+
726
+ libcurand.so, libcurand_static.a
727
+
728
+ Android
729
+
730
+ libcurand.so, libcurand_static.a
731
+
732
+ Component
733
+
734
+ CUDA Accelerated Graph Library
735
+
736
+ Windows
737
+
738
+ nvgraph.dll, nvgraph.lib
739
+
740
+ Mac OSX
741
+
742
+ libnvgraph.dylib, libnvgraph_static.a
743
+
744
+ Linux
745
+
746
+ libnvgraph.so, libnvgraph_static.a
747
+
748
+ Android
749
+
750
+ libnvgraph.so, libnvgraph_static.a
751
+
752
+ Component
753
+
754
+ NVIDIA Performance Primitives Library
755
+
756
+ Windows
757
+
758
+ nppc.dll, nppc.lib, nppial.dll, nppial.lib, nppicc.dll,
759
+ nppicc.lib, nppicom.dll, nppicom.lib, nppidei.dll,
760
+ nppidei.lib, nppif.dll, nppif.lib, nppig.dll, nppig.lib,
761
+ nppim.dll, nppim.lib, nppist.dll, nppist.lib, nppisu.dll,
762
+ nppisu.lib, nppitc.dll, nppitc.lib, npps.dll, npps.lib
763
+
764
+ Mac OSX
765
+
766
+ libnppc.dylib, libnppc_static.a, libnppial.dylib,
767
+ libnppial_static.a, libnppicc.dylib, libnppicc_static.a,
768
+ libnppicom.dylib, libnppicom_static.a, libnppidei.dylib,
769
+ libnppidei_static.a, libnppif.dylib, libnppif_static.a,
770
+ libnppig.dylib, libnppig_static.a, libnppim.dylib,
771
+ libnppisu_static.a, libnppitc.dylib, libnppitc_static.a,
772
+ libnpps.dylib, libnpps_static.a
773
+
774
+ Linux
775
+
776
+ libnppc.so, libnppc_static.a, libnppial.so,
777
+ libnppial_static.a, libnppicc.so, libnppicc_static.a,
778
+ libnppicom.so, libnppicom_static.a, libnppidei.so,
779
+ libnppidei_static.a, libnppif.so, libnppif_static.a
780
+ libnppig.so, libnppig_static.a, libnppim.so,
781
+ libnppim_static.a, libnppist.so, libnppist_static.a,
782
+ libnppisu.so, libnppisu_static.a, libnppitc.so
783
+ libnppitc_static.a, libnpps.so, libnpps_static.a
784
+
785
+ Android
786
+
787
+ libnppc.so, libnppc_static.a, libnppial.so,
788
+ libnppial_static.a, libnppicc.so, libnppicc_static.a,
789
+ libnppicom.so, libnppicom_static.a, libnppidei.so,
790
+ libnppidei_static.a, libnppif.so, libnppif_static.a
791
+ libnppig.so, libnppig_static.a, libnppim.so,
792
+ libnppim_static.a, libnppist.so, libnppist_static.a,
793
+ libnppisu.so, libnppisu_static.a, libnppitc.so
794
+ libnppitc_static.a, libnpps.so, libnpps_static.a
795
+
796
+ Component
797
+
798
+ NVIDIA JPEG Library
799
+
800
+ Linux
801
+
802
+ libnvjpeg.so, libnvjpeg_static.a
803
+
804
+ Component
805
+
806
+ Internal common library required for statically linking to
807
+ cuBLAS, cuSPARSE, cuFFT, cuRAND, nvJPEG and NPP
808
+
809
+ Mac OSX
810
+
811
+ libculibos.a
812
+
813
+ Linux
814
+
815
+ libculibos.a
816
+
817
+ Component
818
+
819
+ NVIDIA Runtime Compilation Library
820
+
821
+ Windows
822
+
823
+ nvrtc.dll, nvrtc-builtins.dll
824
+
825
+ Mac OSX
826
+
827
+ libnvrtc.dylib, libnvrtc-builtins.dylib
828
+
829
+ Linux
830
+
831
+ libnvrtc.so, libnvrtc-builtins.so
832
+
833
+ Component
834
+
835
+ NVIDIA Optimizing Compiler Library
836
+
837
+ Windows
838
+
839
+ nvvm.dll
840
+
841
+ Mac OSX
842
+
843
+ libnvvm.dylib
844
+
845
+ Linux
846
+
847
+ libnvvm.so
848
+
849
+ Component
850
+
851
+ NVIDIA Common Device Math Functions Library
852
+
853
+ Windows
854
+
855
+ libdevice.10.bc
856
+
857
+ Mac OSX
858
+
859
+ libdevice.10.bc
860
+
861
+ Linux
862
+
863
+ libdevice.10.bc
864
+
865
+ Component
866
+
867
+ CUDA Occupancy Calculation Header Library
868
+
869
+ All
870
+
871
+ cuda_occupancy.h
872
+
873
+ Component
874
+
875
+ CUDA Half Precision Headers
876
+
877
+ All
878
+
879
+ cuda_fp16.h, cuda_fp16.hpp
880
+
881
+ Component
882
+
883
+ CUDA Profiling Tools Interface (CUPTI) Library
884
+
885
+ Windows
886
+
887
+ cupti.dll
888
+
889
+ Mac OSX
890
+
891
+ libcupti.dylib
892
+
893
+ Linux
894
+
895
+ libcupti.so
896
+
897
+ Component
898
+
899
+ NVIDIA Tools Extension Library
900
+
901
+ Windows
902
+
903
+ nvToolsExt.dll, nvToolsExt.lib
904
+
905
+ Mac OSX
906
+
907
+ libnvToolsExt.dylib
908
+
909
+ Linux
910
+
911
+ libnvToolsExt.so
912
+
913
+ Component
914
+
915
+ NVIDIA CUDA Driver Libraries
916
+
917
+ Linux
918
+
919
+ libcuda.so, libnvidia-fatbinaryloader.so,
920
+ libnvidia-ptxjitcompiler.so
921
+
922
+ The NVIDIA CUDA Driver Libraries are only distributable in
923
+ applications that meet this criteria:
924
+
925
+ 1. The application was developed starting from a NVIDIA CUDA
926
+ container obtained from Docker Hub or the NVIDIA GPU
927
+ Cloud, and
928
+
929
+ 2. The resulting application is packaged as a Docker
930
+ container and distributed to users on Docker Hub or the
931
+ NVIDIA GPU Cloud only.
932
+
933
+ In addition to the rights above, for parties that are
934
+ developing software intended solely for use on Jetson
935
+ development kits or Jetson modules, and running Linux for
936
+ Tegra software, the following shall apply:
937
+
938
+ * The SDK may be distributed in its entirety, as provided by
939
+ NVIDIA, and without separation of its components, for you
940
+ and/or your licensees to create software development kits
941
+ for use only on the Jetson platform and running Linux for
942
+ Tegra software.
943
+
944
+
945
+ 2.7. Attachment B
946
+
947
+
948
+ Additional Licensing Obligations
949
+
950
+ The following third party components included in the SOFTWARE
951
+ are licensed to Licensee pursuant to the following terms and
952
+ conditions:
953
+
954
+ 1. Licensee's use of the GDB third party component is
955
+ subject to the terms and conditions of GNU GPL v3:
956
+
957
+ This product includes copyrighted third-party software licensed
958
+ under the terms of the GNU General Public License v3 ("GPL v3").
959
+ All third-party software packages are copyright by their respective
960
+ authors. GPL v3 terms and conditions are hereby incorporated into
961
+ the Agreement by this reference: http://www.gnu.org/licenses/gpl.txt
962
+
963
+ Consistent with these licensing requirements, the software
964
+ listed below is provided under the terms of the specified
965
+ open source software licenses. To obtain source code for
966
+ software provided under licenses that require
967
+ redistribution of source code, including the GNU General
968
+ Public License (GPL) and GNU Lesser General Public License
969
+ (LGPL), contact oss-requests@nvidia.com. This offer is
970
+ valid for a period of three (3) years from the date of the
971
+ distribution of this product by NVIDIA CORPORATION.
972
+
973
+ Component License
974
+ CUDA-GDB GPL v3
975
+
976
+ 2. Licensee represents and warrants that any and all third
977
+ party licensing and/or royalty payment obligations in
978
+ connection with Licensee's use of the H.264 video codecs
979
+ are solely the responsibility of Licensee.
980
+
981
+ 3. Licensee's use of the Thrust library is subject to the
982
+ terms and conditions of the Apache License Version 2.0.
983
+ All third-party software packages are copyright by their
984
+ respective authors. Apache License Version 2.0 terms and
985
+ conditions are hereby incorporated into the Agreement by
986
+ this reference.
987
+ http://www.apache.org/licenses/LICENSE-2.0.html
988
+
989
+ In addition, Licensee acknowledges the following notice:
990
+ Thrust includes source code from the Boost Iterator,
991
+ Tuple, System, and Random Number libraries.
992
+
993
+ Boost Software License - Version 1.0 - August 17th, 2003
994
+ . . . .
995
+
996
+ Permission is hereby granted, free of charge, to any person or
997
+ organization obtaining a copy of the software and accompanying
998
+ documentation covered by this license (the "Software") to use,
999
+ reproduce, display, distribute, execute, and transmit the Software,
1000
+ and to prepare derivative works of the Software, and to permit
1001
+ third-parties to whom the Software is furnished to do so, all
1002
+ subject to the following:
1003
+
1004
+ The copyright notices in the Software and this entire statement,
1005
+ including the above license grant, this restriction and the following
1006
+ disclaimer, must be included in all copies of the Software, in whole
1007
+ or in part, and all derivative works of the Software, unless such
1008
+ copies or derivative works are solely in the form of machine-executable
1009
+ object code generated by a source language processor.
1010
+
1011
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1012
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1013
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
1014
+ NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
1015
+ ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
1016
+ OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
1017
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1018
+ OTHER DEALINGS IN THE SOFTWARE.
1019
+
1020
+ 4. Licensee's use of the LLVM third party component is
1021
+ subject to the following terms and conditions:
1022
+
1023
+ ======================================================
1024
+ LLVM Release License
1025
+ ======================================================
1026
+ University of Illinois/NCSA
1027
+ Open Source License
1028
+
1029
+ Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
1030
+ All rights reserved.
1031
+
1032
+ Developed by:
1033
+
1034
+ LLVM Team
1035
+
1036
+ University of Illinois at Urbana-Champaign
1037
+
1038
+ http://llvm.org
1039
+
1040
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1041
+ of this software and associated documentation files (the "Software"), to
1042
+ deal with the Software without restriction, including without limitation the
1043
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1044
+ sell copies of the Software, and to permit persons to whom the Software is
1045
+ furnished to do so, subject to the following conditions:
1046
+
1047
+ * Redistributions of source code must retain the above copyright notice,
1048
+ this list of conditions and the following disclaimers.
1049
+
1050
+ * Redistributions in binary form must reproduce the above copyright
1051
+ notice, this list of conditions and the following disclaimers in the
1052
+ documentation and/or other materials provided with the distribution.
1053
+
1054
+ * Neither the names of the LLVM Team, University of Illinois at Urbana-
1055
+ Champaign, nor the names of its contributors may be used to endorse or
1056
+ promote products derived from this Software without specific prior
1057
+ written permission.
1058
+
1059
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1060
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1061
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1062
+ THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1063
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
1064
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1065
+ DEALINGS WITH THE SOFTWARE.
1066
+
1067
+ 5. Licensee's use of the PCRE third party component is
1068
+ subject to the following terms and conditions:
1069
+
1070
+ ------------
1071
+ PCRE LICENCE
1072
+ ------------
1073
+ PCRE is a library of functions to support regular expressions whose syntax
1074
+ and semantics are as close as possible to those of the Perl 5 language.
1075
+ Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
1076
+ specified below. The documentation for PCRE, supplied in the "doc"
1077
+ directory, is distributed under the same terms as the software itself. The
1078
+ basic library functions are written in C and are freestanding. Also
1079
+ included in the distribution is a set of C++ wrapper functions, and a just-
1080
+ in-time compiler that can be used to optimize pattern matching. These are
1081
+ both optional features that can be omitted when the library is built.
1082
+
1083
+ THE BASIC LIBRARY FUNCTIONS
1084
+ ---------------------------
1085
+ Written by: Philip Hazel
1086
+ Email local part: ph10
1087
+ Email domain: cam.ac.uk
1088
+ University of Cambridge Computing Service,
1089
+ Cambridge, England.
1090
+ Copyright (c) 1997-2012 University of Cambridge
1091
+ All rights reserved.
1092
+
1093
+ PCRE JUST-IN-TIME COMPILATION SUPPORT
1094
+ -------------------------------------
1095
+ Written by: Zoltan Herczeg
1096
+ Email local part: hzmester
1097
+ Emain domain: freemail.hu
1098
+ Copyright(c) 2010-2012 Zoltan Herczeg
1099
+ All rights reserved.
1100
+
1101
+ STACK-LESS JUST-IN-TIME COMPILER
1102
+ --------------------------------
1103
+ Written by: Zoltan Herczeg
1104
+ Email local part: hzmester
1105
+ Emain domain: freemail.hu
1106
+ Copyright(c) 2009-2012 Zoltan Herczeg
1107
+ All rights reserved.
1108
+
1109
+ THE C++ WRAPPER FUNCTIONS
1110
+ -------------------------
1111
+ Contributed by: Google Inc.
1112
+ Copyright (c) 2007-2012, Google Inc.
1113
+ All rights reserved.
1114
+
1115
+ THE "BSD" LICENCE
1116
+ -----------------
1117
+ Redistribution and use in source and binary forms, with or without
1118
+ modification, are permitted provided that the following conditions are met:
1119
+
1120
+ * Redistributions of source code must retain the above copyright notice,
1121
+ this list of conditions and the following disclaimer.
1122
+
1123
+ * Redistributions in binary form must reproduce the above copyright
1124
+ notice, this list of conditions and the following disclaimer in the
1125
+ documentation and/or other materials provided with the distribution.
1126
+
1127
+ * Neither the name of the University of Cambridge nor the name of Google
1128
+ Inc. nor the names of their contributors may be used to endorse or
1129
+ promote products derived from this software without specific prior
1130
+ written permission.
1131
+
1132
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1133
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1134
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1135
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
1136
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1137
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1138
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1139
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1140
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1141
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1142
+ POSSIBILITY OF SUCH DAMAGE.
1143
+
1144
+ 6. Some of the cuBLAS library routines were written by or
1145
+ derived from code written by Vasily Volkov and are subject
1146
+ to the Modified Berkeley Software Distribution License as
1147
+ follows:
1148
+
1149
+ Copyright (c) 2007-2009, Regents of the University of California
1150
+
1151
+ All rights reserved.
1152
+
1153
+ Redistribution and use in source and binary forms, with or without
1154
+ modification, are permitted provided that the following conditions are
1155
+ met:
1156
+ * Redistributions of source code must retain the above copyright
1157
+ notice, this list of conditions and the following disclaimer.
1158
+ * Redistributions in binary form must reproduce the above
1159
+ copyright notice, this list of conditions and the following
1160
+ disclaimer in the documentation and/or other materials provided
1161
+ with the distribution.
1162
+ * Neither the name of the University of California, Berkeley nor
1163
+ the names of its contributors may be used to endorse or promote
1164
+ products derived from this software without specific prior
1165
+ written permission.
1166
+
1167
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
1168
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1169
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1170
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
1171
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1172
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1173
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1174
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1175
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1176
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1177
+ POSSIBILITY OF SUCH DAMAGE.
1178
+
1179
+ 7. Some of the cuBLAS library routines were written by or
1180
+ derived from code written by Davide Barbieri and are
1181
+ subject to the Modified Berkeley Software Distribution
1182
+ License as follows:
1183
+
1184
+ Copyright (c) 2008-2009 Davide Barbieri @ University of Rome Tor Vergata.
1185
+
1186
+ All rights reserved.
1187
+
1188
+ Redistribution and use in source and binary forms, with or without
1189
+ modification, are permitted provided that the following conditions are
1190
+ met:
1191
+ * Redistributions of source code must retain the above copyright
1192
+ notice, this list of conditions and the following disclaimer.
1193
+ * Redistributions in binary form must reproduce the above
1194
+ copyright notice, this list of conditions and the following
1195
+ disclaimer in the documentation and/or other materials provided
1196
+ with the distribution.
1197
+ * The name of the author may not be used to endorse or promote
1198
+ products derived from this software without specific prior
1199
+ written permission.
1200
+
1201
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
1202
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1203
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1204
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
1205
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1206
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1207
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1208
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1209
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1210
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1211
+ POSSIBILITY OF SUCH DAMAGE.
1212
+
1213
+ 8. Some of the cuBLAS library routines were derived from
1214
+ code developed by the University of Tennessee and are
1215
+ subject to the Modified Berkeley Software Distribution
1216
+ License as follows:
1217
+
1218
+ Copyright (c) 2010 The University of Tennessee.
1219
+
1220
+ All rights reserved.
1221
+
1222
+ Redistribution and use in source and binary forms, with or without
1223
+ modification, are permitted provided that the following conditions are
1224
+ met:
1225
+ * Redistributions of source code must retain the above copyright
1226
+ notice, this list of conditions and the following disclaimer.
1227
+ * Redistributions in binary form must reproduce the above
1228
+ copyright notice, this list of conditions and the following
1229
+ disclaimer listed in this license in the documentation and/or
1230
+ other materials provided with the distribution.
1231
+ * Neither the name of the copyright holders nor the names of its
1232
+ contributors may be used to endorse or promote products derived
1233
+ from this software without specific prior written permission.
1234
+
1235
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1236
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1237
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1238
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1239
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1240
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1241
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1242
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1243
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1244
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1245
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1246
+
1247
+ 9. Some of the cuBLAS library routines were written by or
1248
+ derived from code written by Jonathan Hogg and are subject
1249
+ to the Modified Berkeley Software Distribution License as
1250
+ follows:
1251
+
1252
+ Copyright (c) 2012, The Science and Technology Facilities Council (STFC).
1253
+
1254
+ All rights reserved.
1255
+
1256
+ Redistribution and use in source and binary forms, with or without
1257
+ modification, are permitted provided that the following conditions are
1258
+ met:
1259
+ * Redistributions of source code must retain the above copyright
1260
+ notice, this list of conditions and the following disclaimer.
1261
+ * Redistributions in binary form must reproduce the above
1262
+ copyright notice, this list of conditions and the following
1263
+ disclaimer in the documentation and/or other materials provided
1264
+ with the distribution.
1265
+ * Neither the name of the STFC nor the names of its contributors
1266
+ may be used to endorse or promote products derived from this
1267
+ software without specific prior written permission.
1268
+
1269
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1270
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1271
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1272
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE STFC BE
1273
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1274
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1275
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
1276
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
1277
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
1278
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
1279
+ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1280
+
1281
+ 10. Some of the cuBLAS library routines were written by or
1282
+ derived from code written by Ahmad M. Abdelfattah, David
1283
+ Keyes, and Hatem Ltaief, and are subject to the Apache
1284
+ License, Version 2.0, as follows:
1285
+
1286
+ -- (C) Copyright 2013 King Abdullah University of Science and Technology
1287
+ Authors:
1288
+ Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa)
1289
+ David Keyes (david.keyes@kaust.edu.sa)
1290
+ Hatem Ltaief (hatem.ltaief@kaust.edu.sa)
1291
+
1292
+ Redistribution and use in source and binary forms, with or without
1293
+ modification, are permitted provided that the following conditions
1294
+ are met:
1295
+
1296
+ * Redistributions of source code must retain the above copyright
1297
+ notice, this list of conditions and the following disclaimer.
1298
+ * Redistributions in binary form must reproduce the above copyright
1299
+ notice, this list of conditions and the following disclaimer in the
1300
+ documentation and/or other materials provided with the distribution.
1301
+ * Neither the name of the King Abdullah University of Science and
1302
+ Technology nor the names of its contributors may be used to endorse
1303
+ or promote products derived from this software without specific prior
1304
+ written permission.
1305
+
1306
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1307
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1308
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1309
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1310
+ HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1311
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1312
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1313
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1314
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1315
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1316
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
1317
+
1318
+ 11. Some of the cuSPARSE library routines were written by or
1319
+ derived from code written by Li-Wen Chang and are subject
1320
+ to the NCSA Open Source License as follows:
1321
+
1322
+ Copyright (c) 2012, University of Illinois.
1323
+
1324
+ All rights reserved.
1325
+
1326
+ Developed by: IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu
1327
+
1328
+ Permission is hereby granted, free of charge, to any person obtaining
1329
+ a copy of this software and associated documentation files (the
1330
+ "Software"), to deal with the Software without restriction, including
1331
+ without limitation the rights to use, copy, modify, merge, publish,
1332
+ distribute, sublicense, and/or sell copies of the Software, and to
1333
+ permit persons to whom the Software is furnished to do so, subject to
1334
+ the following conditions:
1335
+ * Redistributions of source code must retain the above copyright
1336
+ notice, this list of conditions and the following disclaimer.
1337
+ * Redistributions in binary form must reproduce the above
1338
+ copyright notice, this list of conditions and the following
1339
+ disclaimers in the documentation and/or other materials provided
1340
+ with the distribution.
1341
+ * Neither the names of IMPACT Group, University of Illinois, nor
1342
+ the names of its contributors may be used to endorse or promote
1343
+ products derived from this Software without specific prior
1344
+ written permission.
1345
+
1346
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1347
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1348
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1349
+ NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
1350
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1351
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
1352
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
1353
+ SOFTWARE.
1354
+
1355
+ 12. Some of the cuRAND library routines were written by or
1356
+ derived from code written by Mutsuo Saito and Makoto
1357
+ Matsumoto and are subject to the following license:
1358
+
1359
+ Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima
1360
+ University. All rights reserved.
1361
+
1362
+ Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima
1363
+ University and University of Tokyo. All rights reserved.
1364
+
1365
+ Redistribution and use in source and binary forms, with or without
1366
+ modification, are permitted provided that the following conditions are
1367
+ met:
1368
+ * Redistributions of source code must retain the above copyright
1369
+ notice, this list of conditions and the following disclaimer.
1370
+ * Redistributions in binary form must reproduce the above
1371
+ copyright notice, this list of conditions and the following
1372
+ disclaimer in the documentation and/or other materials provided
1373
+ with the distribution.
1374
+ * Neither the name of the Hiroshima University nor the names of
1375
+ its contributors may be used to endorse or promote products
1376
+ derived from this software without specific prior written
1377
+ permission.
1378
+
1379
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1380
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1381
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1382
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1383
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1384
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1385
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1386
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1387
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1388
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1389
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1390
+
1391
+ 13. Some of the cuRAND library routines were derived from
1392
+ code developed by D. E. Shaw Research and are subject to
1393
+ the following license:
1394
+
1395
+ Copyright 2010-2011, D. E. Shaw Research.
1396
+
1397
+ All rights reserved.
1398
+
1399
+ Redistribution and use in source and binary forms, with or without
1400
+ modification, are permitted provided that the following conditions are
1401
+ met:
1402
+ * Redistributions of source code must retain the above copyright
1403
+ notice, this list of conditions, and the following disclaimer.
1404
+ * Redistributions in binary form must reproduce the above
1405
+ copyright notice, this list of conditions, and the following
1406
+ disclaimer in the documentation and/or other materials provided
1407
+ with the distribution.
1408
+ * Neither the name of D. E. Shaw Research nor the names of its
1409
+ contributors may be used to endorse or promote products derived
1410
+ from this software without specific prior written permission.
1411
+
1412
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1413
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1414
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1415
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1416
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1417
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1418
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1419
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1420
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1421
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1422
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1423
+
1424
+ 14. Some of the Math library routines were written by or
1425
+ derived from code developed by Norbert Juffa and are
1426
+ subject to the following license:
1427
+
1428
+ Copyright (c) 2015-2017, Norbert Juffa
1429
+ All rights reserved.
1430
+
1431
+ Redistribution and use in source and binary forms, with or without
1432
+ modification, are permitted provided that the following conditions
1433
+ are met:
1434
+
1435
+ 1. Redistributions of source code must retain the above copyright
1436
+ notice, this list of conditions and the following disclaimer.
1437
+
1438
+ 2. Redistributions in binary form must reproduce the above copyright
1439
+ notice, this list of conditions and the following disclaimer in the
1440
+ documentation and/or other materials provided with the distribution.
1441
+
1442
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1443
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1444
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1445
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1446
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1447
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1448
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1449
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1450
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1451
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1452
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1453
+
1454
+ 15. Licensee's use of the lz4 third party component is
1455
+ subject to the following terms and conditions:
1456
+
1457
+ Copyright (C) 2011-2013, Yann Collet.
1458
+ BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
1459
+
1460
+ Redistribution and use in source and binary forms, with or without
1461
+ modification, are permitted provided that the following conditions are
1462
+ met:
1463
+
1464
+ * Redistributions of source code must retain the above copyright
1465
+ notice, this list of conditions and the following disclaimer.
1466
+ * Redistributions in binary form must reproduce the above
1467
+ copyright notice, this list of conditions and the following disclaimer
1468
+ in the documentation and/or other materials provided with the
1469
+ distribution.
1470
+
1471
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1472
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1473
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1474
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1475
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1476
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1477
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1478
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1479
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1480
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1481
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1482
+
1483
+ 16. The NPP library uses code from the Boost Math Toolkit,
1484
+ and is subject to the following license:
1485
+
1486
+ Boost Software License - Version 1.0 - August 17th, 2003
1487
+ . . . .
1488
+
1489
+ Permission is hereby granted, free of charge, to any person or
1490
+ organization obtaining a copy of the software and accompanying
1491
+ documentation covered by this license (the "Software") to use,
1492
+ reproduce, display, distribute, execute, and transmit the Software,
1493
+ and to prepare derivative works of the Software, and to permit
1494
+ third-parties to whom the Software is furnished to do so, all
1495
+ subject to the following:
1496
+
1497
+ The copyright notices in the Software and this entire statement,
1498
+ including the above license grant, this restriction and the following
1499
+ disclaimer, must be included in all copies of the Software, in whole
1500
+ or in part, and all derivative works of the Software, unless such
1501
+ copies or derivative works are solely in the form of machine-executable
1502
+ object code generated by a source language processor.
1503
+
1504
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1505
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1506
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
1507
+ NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
1508
+ ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
1509
+ OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
1510
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1511
+ OTHER DEALINGS IN THE SOFTWARE.
1512
+
1513
+ 17. Portions of the Nsight Eclipse Edition is subject to the
1514
+ following license:
1515
+
1516
+ The Eclipse Foundation makes available all content in this plug-in
1517
+ ("Content"). Unless otherwise indicated below, the Content is provided
1518
+ to you under the terms and conditions of the Eclipse Public License
1519
+ Version 1.0 ("EPL"). A copy of the EPL is available at http://
1520
+ www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program"
1521
+ will mean the Content.
1522
+
1523
+ If you did not receive this Content directly from the Eclipse
1524
+ Foundation, the Content is being redistributed by another party
1525
+ ("Redistributor") and different terms and conditions may apply to your
1526
+ use of any object code in the Content. Check the Redistributor's
1527
+ license that was provided with the Content. If no such license exists,
1528
+ contact the Redistributor. Unless otherwise indicated below, the terms
1529
+ and conditions of the EPL still apply to any source code in the
1530
+ Content and such source code may be obtained at http://www.eclipse.org.
1531
+
1532
+ 18. Some of the cuBLAS library routines uses code from
1533
+ OpenAI, which is subject to the following license:
1534
+
1535
+ License URL
1536
+ https://github.com/openai/openai-gemm/blob/master/LICENSE
1537
+
1538
+ License Text
1539
+ The MIT License
1540
+
1541
+ Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc.
1542
+
1543
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1544
+ of this software and associated documentation files (the "Software"), to deal
1545
+ in the Software without restriction, including without limitation the rights
1546
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1547
+ copies of the Software, and to permit persons to whom the Software is
1548
+ furnished to do so, subject to the following conditions:
1549
+
1550
+ The above copyright notice and this permission notice shall be included in
1551
+ all copies or substantial portions of the Software.
1552
+
1553
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1554
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1555
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1556
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1557
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1558
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1559
+ THE SOFTWARE.
1560
+
1561
+ 19. Licensee's use of the Visual Studio Setup Configuration
1562
+ Samples is subject to the following license:
1563
+
1564
+ The MIT License (MIT)
1565
+ Copyright (C) Microsoft Corporation. All rights reserved.
1566
+
1567
+ Permission is hereby granted, free of charge, to any person
1568
+ obtaining a copy of this software and associated documentation
1569
+ files (the "Software"), to deal in the Software without restriction,
1570
+ including without limitation the rights to use, copy, modify, merge,
1571
+ publish, distribute, sublicense, and/or sell copies of the Software,
1572
+ and to permit persons to whom the Software is furnished to do so,
1573
+ subject to the following conditions:
1574
+
1575
+ The above copyright notice and this permission notice shall be included
1576
+ in all copies or substantial portions of the Software.
1577
+
1578
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1579
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1580
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1581
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1582
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1583
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1584
+
1585
+ 20. Licensee's use of linmath.h header for CPU functions for
1586
+ GL vector/matrix operations from lunarG is subject to the
1587
+ Apache License Version 2.0.
1588
+
1589
+ 21. The DX12-CUDA sample uses the d3dx12.h header, which is
1590
+ subject to the MIT license .
1591
+
1592
+ -----------------