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