warp-lang 1.6.1__py3-none-win_amd64.whl → 1.6.2__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 (385) hide show
  1. warp/__init__.py +14 -6
  2. warp/autograd.py +14 -6
  3. warp/bin/warp-clang.dll +0 -0
  4. warp/bin/warp.dll +0 -0
  5. warp/build.py +14 -6
  6. warp/build_dll.py +14 -6
  7. warp/builtins.py +15 -6
  8. warp/codegen.py +14 -6
  9. warp/config.py +15 -7
  10. warp/constants.py +14 -6
  11. warp/context.py +34 -6
  12. warp/dlpack.py +14 -6
  13. warp/examples/__init__.py +14 -6
  14. warp/examples/benchmarks/benchmark_api.py +14 -6
  15. warp/examples/benchmarks/benchmark_cloth.py +14 -6
  16. warp/examples/benchmarks/benchmark_cloth_cupy.py +14 -6
  17. warp/examples/benchmarks/benchmark_cloth_jax.py +14 -6
  18. warp/examples/benchmarks/benchmark_cloth_numba.py +15 -0
  19. warp/examples/benchmarks/benchmark_cloth_numpy.py +14 -6
  20. warp/examples/benchmarks/benchmark_cloth_paddle.py +14 -6
  21. warp/examples/benchmarks/benchmark_cloth_pytorch.py +14 -6
  22. warp/examples/benchmarks/benchmark_cloth_taichi.py +14 -6
  23. warp/examples/benchmarks/benchmark_cloth_warp.py +14 -6
  24. warp/examples/benchmarks/benchmark_gemm.py +82 -48
  25. warp/examples/benchmarks/benchmark_interop_paddle.py +14 -6
  26. warp/examples/benchmarks/benchmark_interop_torch.py +14 -6
  27. warp/examples/benchmarks/benchmark_launches.py +14 -6
  28. warp/examples/browse.py +14 -6
  29. warp/examples/core/example_cupy.py +14 -6
  30. warp/examples/core/example_dem.py +14 -6
  31. warp/examples/core/example_fluid.py +14 -6
  32. warp/examples/core/example_graph_capture.py +14 -6
  33. warp/examples/core/example_marching_cubes.py +14 -6
  34. warp/examples/core/example_mesh.py +14 -6
  35. warp/examples/core/example_mesh_intersect.py +14 -6
  36. warp/examples/core/example_nvdb.py +14 -6
  37. warp/examples/core/example_raycast.py +14 -6
  38. warp/examples/core/example_raymarch.py +14 -6
  39. warp/examples/core/example_render_opengl.py +14 -6
  40. warp/examples/core/example_sph.py +14 -6
  41. warp/examples/core/example_torch.py +14 -6
  42. warp/examples/core/example_wave.py +14 -6
  43. warp/examples/fem/example_adaptive_grid.py +14 -6
  44. warp/examples/fem/example_apic_fluid.py +14 -6
  45. warp/examples/fem/example_burgers.py +14 -6
  46. warp/examples/fem/example_convection_diffusion.py +14 -6
  47. warp/examples/fem/example_convection_diffusion_dg.py +14 -6
  48. warp/examples/fem/example_deformed_geometry.py +14 -6
  49. warp/examples/fem/example_diffusion.py +14 -6
  50. warp/examples/fem/example_diffusion_3d.py +14 -6
  51. warp/examples/fem/example_diffusion_mgpu.py +14 -6
  52. warp/examples/fem/example_distortion_energy.py +14 -6
  53. warp/examples/fem/example_magnetostatics.py +14 -6
  54. warp/examples/fem/example_mixed_elasticity.py +14 -6
  55. warp/examples/fem/example_navier_stokes.py +14 -6
  56. warp/examples/fem/example_nonconforming_contact.py +14 -6
  57. warp/examples/fem/example_stokes.py +14 -6
  58. warp/examples/fem/example_stokes_transfer.py +14 -6
  59. warp/examples/fem/example_streamlines.py +14 -6
  60. warp/examples/fem/utils.py +15 -0
  61. warp/examples/optim/example_bounce.py +14 -6
  62. warp/examples/optim/example_cloth_throw.py +14 -6
  63. warp/examples/optim/example_diffray.py +14 -6
  64. warp/examples/optim/example_drone.py +14 -6
  65. warp/examples/optim/example_inverse_kinematics.py +14 -6
  66. warp/examples/optim/example_inverse_kinematics_torch.py +14 -6
  67. warp/examples/optim/example_softbody_properties.py +14 -6
  68. warp/examples/optim/example_spring_cage.py +14 -6
  69. warp/examples/optim/example_trajectory.py +14 -6
  70. warp/examples/optim/example_walker.py +14 -6
  71. warp/examples/sim/example_cartpole.py +14 -6
  72. warp/examples/sim/example_cloth.py +14 -6
  73. warp/examples/sim/example_cloth_self_contact.py +14 -6
  74. warp/examples/sim/example_granular.py +14 -6
  75. warp/examples/sim/example_granular_collision_sdf.py +14 -6
  76. warp/examples/sim/example_jacobian_ik.py +14 -6
  77. warp/examples/sim/example_particle_chain.py +14 -6
  78. warp/examples/sim/example_quadruped.py +14 -6
  79. warp/examples/sim/example_rigid_chain.py +14 -6
  80. warp/examples/sim/example_rigid_contact.py +14 -6
  81. warp/examples/sim/example_rigid_force.py +14 -6
  82. warp/examples/sim/example_rigid_gyroscopic.py +14 -6
  83. warp/examples/sim/example_rigid_soft_contact.py +14 -6
  84. warp/examples/sim/example_soft_body.py +14 -6
  85. warp/examples/tile/example_tile_cholesky.py +14 -6
  86. warp/examples/tile/example_tile_convolution.py +14 -6
  87. warp/examples/tile/example_tile_fft.py +14 -6
  88. warp/examples/tile/example_tile_filtering.py +14 -6
  89. warp/examples/tile/example_tile_matmul.py +14 -6
  90. warp/examples/tile/example_tile_mlp.py +14 -6
  91. warp/examples/tile/example_tile_nbody.py +14 -6
  92. warp/examples/tile/example_tile_walker.py +14 -6
  93. warp/fabric.py +15 -0
  94. warp/fem/__init__.py +15 -0
  95. warp/fem/adaptivity.py +15 -0
  96. warp/fem/cache.py +15 -0
  97. warp/fem/dirichlet.py +15 -0
  98. warp/fem/domain.py +15 -0
  99. warp/fem/field/__init__.py +15 -0
  100. warp/fem/field/field.py +15 -0
  101. warp/fem/field/nodal_field.py +15 -0
  102. warp/fem/field/restriction.py +15 -0
  103. warp/fem/field/virtual.py +15 -0
  104. warp/fem/geometry/__init__.py +15 -0
  105. warp/fem/geometry/adaptive_nanogrid.py +15 -0
  106. warp/fem/geometry/closest_point.py +15 -0
  107. warp/fem/geometry/deformed_geometry.py +15 -0
  108. warp/fem/geometry/element.py +15 -0
  109. warp/fem/geometry/geometry.py +15 -0
  110. warp/fem/geometry/grid_2d.py +15 -0
  111. warp/fem/geometry/grid_3d.py +15 -0
  112. warp/fem/geometry/hexmesh.py +15 -0
  113. warp/fem/geometry/nanogrid.py +15 -0
  114. warp/fem/geometry/partition.py +15 -0
  115. warp/fem/geometry/quadmesh.py +15 -0
  116. warp/fem/geometry/tetmesh.py +15 -0
  117. warp/fem/geometry/trimesh.py +15 -0
  118. warp/fem/integrate.py +15 -0
  119. warp/fem/linalg.py +15 -0
  120. warp/fem/operator.py +15 -0
  121. warp/fem/polynomial.py +15 -0
  122. warp/fem/quadrature/__init__.py +15 -0
  123. warp/fem/quadrature/pic_quadrature.py +15 -0
  124. warp/fem/quadrature/quadrature.py +15 -0
  125. warp/fem/space/__init__.py +15 -0
  126. warp/fem/space/basis_function_space.py +15 -0
  127. warp/fem/space/basis_space.py +15 -0
  128. warp/fem/space/dof_mapper.py +15 -0
  129. warp/fem/space/function_space.py +15 -0
  130. warp/fem/space/grid_2d_function_space.py +15 -0
  131. warp/fem/space/grid_3d_function_space.py +15 -0
  132. warp/fem/space/hexmesh_function_space.py +15 -0
  133. warp/fem/space/nanogrid_function_space.py +15 -0
  134. warp/fem/space/partition.py +15 -0
  135. warp/fem/space/quadmesh_function_space.py +15 -0
  136. warp/fem/space/restriction.py +15 -0
  137. warp/fem/space/shape/__init__.py +15 -0
  138. warp/fem/space/shape/cube_shape_function.py +15 -0
  139. warp/fem/space/shape/shape_function.py +15 -0
  140. warp/fem/space/shape/square_shape_function.py +15 -0
  141. warp/fem/space/shape/tet_shape_function.py +15 -0
  142. warp/fem/space/shape/triangle_shape_function.py +15 -0
  143. warp/fem/space/tetmesh_function_space.py +15 -0
  144. warp/fem/space/topology.py +15 -0
  145. warp/fem/space/trimesh_function_space.py +15 -0
  146. warp/fem/types.py +15 -0
  147. warp/fem/utils.py +15 -0
  148. warp/jax.py +14 -6
  149. warp/jax_experimental.py +14 -6
  150. warp/math.py +14 -6
  151. warp/native/array.h +15 -6
  152. warp/native/builtin.h +15 -6
  153. warp/native/bvh.cpp +15 -6
  154. warp/native/bvh.cu +15 -6
  155. warp/native/bvh.h +15 -6
  156. warp/native/clang/clang.cpp +15 -6
  157. warp/native/coloring.cpp +15 -6
  158. warp/native/crt.cpp +15 -6
  159. warp/native/crt.h +15 -6
  160. warp/native/cuda_crt.h +15 -6
  161. warp/native/cuda_util.cpp +15 -6
  162. warp/native/cuda_util.h +15 -6
  163. warp/native/cutlass_gemm.cpp +15 -6
  164. warp/native/cutlass_gemm.cu +16 -7
  165. warp/native/error.cpp +15 -6
  166. warp/native/error.h +15 -6
  167. warp/native/exports.h +17 -0
  168. warp/native/fabric.h +15 -6
  169. warp/native/hashgrid.cpp +15 -6
  170. warp/native/hashgrid.cu +15 -6
  171. warp/native/hashgrid.h +15 -6
  172. warp/native/initializer_array.h +15 -6
  173. warp/native/intersect.h +15 -6
  174. warp/native/intersect_adj.h +15 -6
  175. warp/native/intersect_tri.h +17 -0
  176. warp/native/marching.cpp +16 -0
  177. warp/native/marching.cu +15 -6
  178. warp/native/marching.h +17 -0
  179. warp/native/mat.h +15 -6
  180. warp/native/mathdx.cpp +15 -6
  181. warp/native/matnn.h +15 -6
  182. warp/native/mesh.cpp +15 -6
  183. warp/native/mesh.cu +15 -6
  184. warp/native/mesh.h +15 -6
  185. warp/native/noise.h +15 -6
  186. warp/native/quat.h +15 -6
  187. warp/native/rand.h +15 -6
  188. warp/native/range.h +15 -6
  189. warp/native/reduce.cpp +15 -6
  190. warp/native/reduce.cu +15 -6
  191. warp/native/runlength_encode.cpp +15 -6
  192. warp/native/runlength_encode.cu +15 -6
  193. warp/native/scan.cpp +15 -6
  194. warp/native/scan.cu +15 -6
  195. warp/native/scan.h +15 -6
  196. warp/native/solid_angle.h +17 -0
  197. warp/native/sort.cpp +15 -6
  198. warp/native/sort.cu +15 -6
  199. warp/native/sort.h +15 -6
  200. warp/native/sparse.cpp +15 -6
  201. warp/native/sparse.cu +15 -6
  202. warp/native/spatial.h +15 -6
  203. warp/native/svd.h +15 -6
  204. warp/native/temp_buffer.h +15 -6
  205. warp/native/tile.h +15 -6
  206. warp/native/tile_reduce.h +15 -6
  207. warp/native/vec.h +15 -6
  208. warp/native/volume.cpp +15 -6
  209. warp/native/volume.cu +15 -6
  210. warp/native/volume.h +15 -6
  211. warp/native/volume_builder.cu +15 -6
  212. warp/native/volume_builder.h +15 -6
  213. warp/native/volume_impl.h +15 -6
  214. warp/native/warp.cpp +15 -6
  215. warp/native/warp.cu +15 -6
  216. warp/native/warp.h +15 -6
  217. warp/optim/__init__.py +14 -6
  218. warp/optim/adam.py +14 -6
  219. warp/optim/linear.py +15 -0
  220. warp/optim/sgd.py +14 -6
  221. warp/paddle.py +14 -6
  222. warp/render/__init__.py +14 -6
  223. warp/render/render_opengl.py +14 -6
  224. warp/render/render_usd.py +14 -6
  225. warp/render/utils.py +14 -6
  226. warp/sim/__init__.py +14 -7
  227. warp/sim/articulation.py +14 -6
  228. warp/sim/collide.py +14 -6
  229. warp/sim/graph_coloring.py +14 -6
  230. warp/sim/import_mjcf.py +14 -7
  231. warp/sim/import_snu.py +14 -7
  232. warp/sim/import_urdf.py +14 -6
  233. warp/sim/import_usd.py +14 -7
  234. warp/sim/inertia.py +14 -6
  235. warp/sim/integrator.py +14 -6
  236. warp/sim/integrator_euler.py +14 -6
  237. warp/sim/integrator_featherstone.py +14 -6
  238. warp/sim/integrator_vbd.py +15 -6
  239. warp/sim/integrator_xpbd.py +14 -6
  240. warp/sim/model.py +14 -6
  241. warp/sim/particles.py +14 -6
  242. warp/sim/render.py +14 -6
  243. warp/sim/utils.py +15 -0
  244. warp/sparse.py +15 -0
  245. warp/stubs.py +15 -0
  246. warp/tape.py +14 -6
  247. warp/tests/__main__.py +15 -0
  248. warp/tests/aux_test_class_kernel.py +14 -6
  249. warp/tests/aux_test_compile_consts_dummy.py +14 -6
  250. warp/tests/aux_test_conditional_unequal_types_kernels.py +14 -6
  251. warp/tests/aux_test_dependent.py +14 -6
  252. warp/tests/aux_test_grad_customs.py +14 -6
  253. warp/tests/aux_test_instancing_gc.py +14 -6
  254. warp/tests/aux_test_module_unload.py +14 -6
  255. warp/tests/aux_test_name_clash1.py +14 -6
  256. warp/tests/aux_test_name_clash2.py +14 -6
  257. warp/tests/aux_test_unresolved_func.py +14 -6
  258. warp/tests/aux_test_unresolved_symbol.py +14 -6
  259. warp/tests/disabled_kinematics.py +14 -6
  260. warp/tests/flaky_test_sim_grad.py +14 -6
  261. warp/tests/run_coverage_serial.py +14 -6
  262. warp/tests/test_adam.py +14 -6
  263. warp/tests/test_arithmetic.py +14 -6
  264. warp/tests/test_array.py +14 -6
  265. warp/tests/test_array_reduce.py +14 -6
  266. warp/tests/test_assert.py +14 -6
  267. warp/tests/test_async.py +14 -6
  268. warp/tests/test_atomic.py +14 -6
  269. warp/tests/test_bool.py +14 -6
  270. warp/tests/test_builtins_resolution.py +14 -6
  271. warp/tests/test_bvh.py +14 -6
  272. warp/tests/test_closest_point_edge_edge.py +14 -6
  273. warp/tests/test_codegen.py +14 -6
  274. warp/tests/test_codegen_instancing.py +14 -6
  275. warp/tests/test_collision.py +14 -6
  276. warp/tests/test_coloring.py +14 -7
  277. warp/tests/test_compile_consts.py +14 -6
  278. warp/tests/test_conditional.py +14 -6
  279. warp/tests/test_context.py +14 -6
  280. warp/tests/test_copy.py +14 -6
  281. warp/tests/test_ctypes.py +14 -6
  282. warp/tests/test_dense.py +14 -6
  283. warp/tests/test_devices.py +14 -6
  284. warp/tests/test_dlpack.py +14 -6
  285. warp/tests/test_examples.py +14 -6
  286. warp/tests/test_fabricarray.py +14 -6
  287. warp/tests/test_fast_math.py +14 -6
  288. warp/tests/test_fem.py +14 -6
  289. warp/tests/test_fp16.py +14 -6
  290. warp/tests/test_func.py +14 -6
  291. warp/tests/test_future_annotations.py +14 -6
  292. warp/tests/test_generics.py +14 -6
  293. warp/tests/test_grad.py +14 -6
  294. warp/tests/test_grad_customs.py +14 -6
  295. warp/tests/test_grad_debug.py +14 -6
  296. warp/tests/test_hash_grid.py +14 -6
  297. warp/tests/test_implicit_init.py +14 -6
  298. warp/tests/test_import.py +14 -6
  299. warp/tests/test_indexedarray.py +14 -6
  300. warp/tests/test_intersect.py +14 -6
  301. warp/tests/test_ipc.py +14 -6
  302. warp/tests/test_iter.py +14 -6
  303. warp/tests/test_jax.py +14 -6
  304. warp/tests/test_large.py +14 -6
  305. warp/tests/test_launch.py +14 -6
  306. warp/tests/test_lerp.py +14 -6
  307. warp/tests/test_linear_solvers.py +15 -0
  308. warp/tests/test_lvalue.py +14 -6
  309. warp/tests/test_marching_cubes.py +14 -6
  310. warp/tests/test_mat.py +14 -6
  311. warp/tests/test_mat_lite.py +14 -6
  312. warp/tests/test_mat_scalar_ops.py +14 -6
  313. warp/tests/test_math.py +14 -6
  314. warp/tests/test_matmul.py +14 -6
  315. warp/tests/test_matmul_lite.py +14 -6
  316. warp/tests/test_mempool.py +14 -6
  317. warp/tests/test_mesh.py +14 -6
  318. warp/tests/test_mesh_query_aabb.py +14 -6
  319. warp/tests/test_mesh_query_point.py +14 -6
  320. warp/tests/test_mesh_query_ray.py +14 -6
  321. warp/tests/test_mlp.py +14 -6
  322. warp/tests/test_model.py +14 -6
  323. warp/tests/test_module_hashing.py +14 -6
  324. warp/tests/test_modules_lite.py +14 -6
  325. warp/tests/test_multigpu.py +14 -6
  326. warp/tests/test_noise.py +14 -6
  327. warp/tests/test_operators.py +14 -6
  328. warp/tests/test_options.py +14 -6
  329. warp/tests/test_overwrite.py +15 -0
  330. warp/tests/test_paddle.py +14 -6
  331. warp/tests/test_peer.py +14 -6
  332. warp/tests/test_pinned.py +14 -6
  333. warp/tests/test_print.py +14 -6
  334. warp/tests/test_quat.py +14 -6
  335. warp/tests/test_rand.py +14 -6
  336. warp/tests/test_reload.py +14 -6
  337. warp/tests/test_rounding.py +14 -6
  338. warp/tests/test_runlength_encode.py +14 -6
  339. warp/tests/test_scalar_ops.py +14 -6
  340. warp/tests/test_sim_grad_bounce_linear.py +14 -6
  341. warp/tests/test_sim_kinematics.py +14 -6
  342. warp/tests/test_smoothstep.py +14 -6
  343. warp/tests/test_snippet.py +15 -0
  344. warp/tests/test_sparse.py +14 -6
  345. warp/tests/test_spatial.py +14 -6
  346. warp/tests/test_special_values.py +14 -6
  347. warp/tests/test_static.py +14 -6
  348. warp/tests/test_streams.py +14 -6
  349. warp/tests/test_struct.py +14 -6
  350. warp/tests/test_tape.py +14 -6
  351. warp/tests/test_tile.py +14 -6
  352. warp/tests/test_tile_load.py +14 -6
  353. warp/tests/test_tile_mathdx.py +14 -6
  354. warp/tests/test_tile_mlp.py +14 -6
  355. warp/tests/test_tile_reduce.py +14 -6
  356. warp/tests/test_tile_shared_memory.py +14 -6
  357. warp/tests/test_tile_view.py +14 -6
  358. warp/tests/test_torch.py +14 -6
  359. warp/tests/test_transient_module.py +14 -6
  360. warp/tests/test_triangle_closest_point.py +14 -6
  361. warp/tests/test_types.py +14 -6
  362. warp/tests/test_utils.py +14 -6
  363. warp/tests/test_vbd.py +14 -6
  364. warp/tests/test_vec.py +14 -6
  365. warp/tests/test_vec_lite.py +14 -6
  366. warp/tests/test_vec_scalar_ops.py +14 -6
  367. warp/tests/test_verify_fp.py +14 -6
  368. warp/tests/test_volume.py +14 -6
  369. warp/tests/test_volume_write.py +14 -6
  370. warp/tests/unittest_serial.py +14 -6
  371. warp/tests/unittest_suites.py +14 -6
  372. warp/tests/unittest_utils.py +14 -6
  373. warp/tests/unused_test_misc.py +14 -6
  374. warp/tests/walkthrough_debug.py +14 -6
  375. warp/thirdparty/unittest_parallel.py +12 -7
  376. warp/torch.py +14 -6
  377. warp/types.py +14 -6
  378. warp/utils.py +14 -6
  379. warp_lang-1.6.2.dist-info/LICENSE.md +202 -0
  380. {warp_lang-1.6.1.dist-info → warp_lang-1.6.2.dist-info}/METADATA +14 -9
  381. warp_lang-1.6.2.dist-info/RECORD +419 -0
  382. warp_lang-1.6.1.dist-info/LICENSE.md +0 -126
  383. warp_lang-1.6.1.dist-info/RECORD +0 -419
  384. {warp_lang-1.6.1.dist-info → warp_lang-1.6.2.dist-info}/WHEEL +0 -0
  385. {warp_lang-1.6.1.dist-info → warp_lang-1.6.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,419 @@
1
+ warp/__init__.py,sha256=4fj9MbaoSMH0hwe5IV1RU2qzfiMqiQsPI4QfLOsJkmQ,5359
2
+ warp/__init__.pyi,sha256=Vxal9LM-q5ztScfRhrM4INpm5LJV6fN6B-H2NI5pkyU,21
3
+ warp/autograd.py,sha256=JHF_TYiIgB9O7BWfRa35co80wo0c4dtAUM5X_iF9frw,46732
4
+ warp/build.py,sha256=iTSrxmlCNo6LUDtZnvjhxam8avzsuyWqLleb7-IKiXQ,5492
5
+ warp/build_dll.py,sha256=OVQ1mPvCCtRjyFb1UMPsAZjf_w2--BkV0cP8AGH3ZFU,17494
6
+ warp/builtins.py,sha256=LXdseX_vruDMqUxOxlCvYNaa-DalyvfA8r21Y23V6-4,220343
7
+ warp/codegen.py,sha256=All3xrSJdz5OVZUfzX-W9ZXVWf3Sxzf3zeMO5WgEAOw,146366
8
+ warp/config.py,sha256=pK6swinyuy07TTN7LAG-Ui8IoQh48Ut2TSsy2bLRtKc,3518
9
+ warp/constants.py,sha256=V7AVrkjop1CcTLC1MiH-rsNOK_1-P_wjtxiluSPzoBI,1577
10
+ warp/context.py,sha256=YgUYF2fuZCZYcN7UJzbwjelB2izlNbdkx-u5WrLjBGs,265369
11
+ warp/dlpack.py,sha256=gBvVVwjy4TKzGXzJeznTkgohf-bWuEBK-wOu5DlRFx4,17109
12
+ warp/fabric.py,sha256=YsAf3e7icvj0it6sODFZNold76dt7JfU1JjxmhVf6Oo,12119
13
+ warp/jax.py,sha256=YPBSn91CriFpHCQkt_S4USY6O60A7dPU36h7C5oGnWo,5536
14
+ warp/jax_experimental.py,sha256=ZqRBllnnht-58zyJfn4L-by4AATFUEvvhr8sZCNuGvI,14231
15
+ warp/math.py,sha256=2HppF1zXl18FrzVzLK_Fkv1SllAcaAdgupdJ1qF7UbU,3690
16
+ warp/paddle.py,sha256=3ZW9fZ4CDmEC4vaVSROAOHkWf6ipRRTc2CP4CCt74bQ,16312
17
+ warp/sparse.py,sha256=bh0zNqPj2lTVc1ZUrYBWup-sOx0GuCE980nlt6kXznI,65517
18
+ warp/stubs.py,sha256=imJaOhE0LQl04DuIeXF0msd-7cuavu0yT0bn_EhnXE4,86279
19
+ warp/tape.py,sha256=z72kjvbhyv6VonF_X_gly9msgWmo6dgapVnhGbaMgMo,49355
20
+ warp/torch.py,sha256=E8Yib8qvJtIw5fE1dfqun-UDqOixadaYQjf3JE84eak,14761
21
+ warp/types.py,sha256=3L1HCkVVdJPlybGdoKE5WerLiQM-3tRgM-bEtKYuAak,206692
22
+ warp/utils.py,sha256=BVjzHNRAdOlpZzPByrdEWlyMBxE67UTut0SiNTeuIrY,37399
23
+ warp/bin/warp-clang.dll,sha256=6pSHrdRvoeOdAdK_JPWbgkFWMjR0T2FcHUJxCTCb_nk,47586816
24
+ warp/bin/warp.dll,sha256=ymMVASBhMnAUM93-9VmGchrBX_qarp1_O3F4mzFx6n0,230000128
25
+ warp/examples/__init__.py,sha256=9XbxzPxvdPnjCMHB30fptKx0lxY_8jD6vkNl6wm8YMA,862
26
+ warp/examples/browse.py,sha256=RjPx0fxpxmpPbEp_e7tzrUpo4XgLsDn_OnWxD0ggXeo,1104
27
+ warp/examples/assets/bear.usd,sha256=1SK7s-zpF3Ypzcc8Wt861o174Pe-xMuJpvosACXVNUk,226238
28
+ warp/examples/assets/bunny.usd,sha256=v4VXpUgfOIXmW3XWAKeMQ6j0DzUukXov8IOd0_4e2rk,579563
29
+ warp/examples/assets/cartpole.urdf,sha256=AsGEcAYbspGNEfW9nQmMic-Mf_wJRIAWfagWCTd4sk8,2594
30
+ warp/examples/assets/crazyflie.usd,sha256=yMU0NVCHuHDfgEYsAwhGRrlZe2vQ3gzIhcODrF4rm2Q,205332
31
+ warp/examples/assets/cube.usd,sha256=O7Ps6-QgYKus8z2XJc6y6K7C99_GWOvliKufPg5d7Ro,1774
32
+ warp/examples/assets/nv_ant.xml,sha256=pIT_bkEUb-3I7jCYuVXoT6P9fxIHn0YmyCMQ-tlDxjY,5235
33
+ warp/examples/assets/nv_humanoid.xml,sha256=y_uDdHLaQmmbA3jd3-L3ypHGbDJx-bW0vlcstCR6ek0,12018
34
+ warp/examples/assets/pixel.jpg,sha256=g6vWPue0whJ3ggEiBlWqLlS9e-nwYKjAULyoBQz4Xdc,33802
35
+ warp/examples/assets/quadruped.urdf,sha256=3LjQJhprPR2R-G1LJcnvuEetYnAgdOqTOfiVYtozIwQ,9746
36
+ warp/examples/assets/rocks.nvdb,sha256=6jIrR2jk5dTIfhanMB_FiNI_vJOs7YCfzLXcFPGmVuc,1202146
37
+ warp/examples/assets/rocks.usd,sha256=Q3QrGmTIo4GcPc4BOxBdkRU0WCErM5eWBFU2NjWFnFs,428189
38
+ warp/examples/assets/sphere.usd,sha256=9nIhnmLIj-cS-PMTieVzMxsUAbpN-tMTavm-leUOfjI,2619
39
+ warp/examples/assets/square_cloth.usd,sha256=7-A18cyAHkBV_U2ZRcWqRr13d7WNiXZWOu96lz_9-9c,324952
40
+ warp/examples/benchmarks/benchmark_api.py,sha256=GQdUNlzuiPIKroOdI4NV_upsa5NkO7sBah8AyFOh_XA,9833
41
+ warp/examples/benchmarks/benchmark_cloth.py,sha256=UOycYOm8KJsK2NSD4BgcmmnA974FJE3WT_K0-bERENM,9186
42
+ warp/examples/benchmarks/benchmark_cloth_cupy.py,sha256=XJRHFSMHa4EACcsen0JsM5htSxq-qQHFpsVT0VxPVyg,2743
43
+ warp/examples/benchmarks/benchmark_cloth_jax.py,sha256=9_oqFL8Ohcu9UVZGu2zlfkKbfDkQ3GLl7uqfvV_uCJk,2939
44
+ warp/examples/benchmarks/benchmark_cloth_numba.py,sha256=i8otaKSbktfQQ0DL2prMUyxnbtnn3jj1PCvJdIlFh8E,4846
45
+ warp/examples/benchmarks/benchmark_cloth_numpy.py,sha256=wVs3WOjP0Kr2ISdkgaUCU1D6W_CbDqC_3L_Qfu0B2j0,2286
46
+ warp/examples/benchmarks/benchmark_cloth_paddle.py,sha256=xETLN-ohsX3DhGlOCbbt5BFA5JobUeVlZ4r5Ma740nw,3021
47
+ warp/examples/benchmarks/benchmark_cloth_pytorch.py,sha256=E5uYV4N1UDtGf_EaLRB5HmZQY6b5d_Si4GRej0WmKAo,2970
48
+ warp/examples/benchmarks/benchmark_cloth_taichi.py,sha256=vxII8vtmrdTFUI_lj8gfdHvHjRnBDgZHaeUYrsjm-KI,3819
49
+ warp/examples/benchmarks/benchmark_cloth_warp.py,sha256=9Wr2ZAMo8gJ7kxo6xaobLN16gXBPo9rof0D_mPufT8Y,4282
50
+ warp/examples/benchmarks/benchmark_gemm.py,sha256=fN4fC9oSwyuhN_qzQQZLpL3ap-mm5Jpf-NRHEPad0gM,4823
51
+ warp/examples/benchmarks/benchmark_interop_paddle.py,sha256=sXwwCBjPROoNzf1UpUxf7tQ_ZAndjqJXYSvkPHv5Uqg,5990
52
+ warp/examples/benchmarks/benchmark_interop_torch.py,sha256=q9pubN0PfgA4QXnhpE8whvb7iwdZqrvBZlv1WicGX9U,5838
53
+ warp/examples/benchmarks/benchmark_launches.py,sha256=wfJAJe7nNIYhcwwJ-2BT0kYa8JZjcnCci66Xg0aQ3ts,6302
54
+ warp/examples/core/example_cupy.py,sha256=WLPjVe8E02X99Q7Y7RhfIuyXq3_BXqSqs6e7aOEQkOA,2899
55
+ warp/examples/core/example_dem.py,sha256=KAAzl4SxkGpmyt442-G8V8FBgFybYLr4wUQaDWidLXs,7018
56
+ warp/examples/core/example_fluid.py,sha256=TCMd_aFx82k9LaQ8nnNasZ75cGWPQTJjAubCYwPE9zI,8412
57
+ warp/examples/core/example_graph_capture.py,sha256=_OhcBs-qNxdfleyP08B6rZbdUalLzcfLoo23xPuKiU0,4584
58
+ warp/examples/core/example_marching_cubes.py,sha256=bmcKa-4lXE7meHbNnFYOn6FUvLeyzrrkwx2e--5h8w8,6438
59
+ warp/examples/core/example_mesh.py,sha256=w3KWtxQpjVhaiTemFJ0P-DkAfVKcg5EtnSsI4Ms9hAc,5434
60
+ warp/examples/core/example_mesh_intersect.py,sha256=vHnPwlsVTaSdkmuLHhiagtEg8zc_5r69b2GTdp6q-0s,6888
61
+ warp/examples/core/example_nvdb.py,sha256=357JQSGqDWCWVsB_A_SMzE9krgYt-HMRVEEzJpXeuE4,5938
62
+ warp/examples/core/example_raycast.py,sha256=nCCSrGnJ_5pLkWnuTOWn_1_eNWQ04g033A3wJSbbBhQ,3690
63
+ warp/examples/core/example_raymarch.py,sha256=VE4-wweBeMAf6iN1yF20a66xOVmc9uZeuWajAOmWF0I,5771
64
+ warp/examples/core/example_render_opengl.py,sha256=jeQR_y2yCQEQX8pjxzYQZs9Lbr2rBeGpeKf_vfKbr-s,7789
65
+ warp/examples/core/example_sph.py,sha256=ZZwYDRM72IbN6AkdUjLR0ObN6dSgYPm9ch7Tpxn12jY,12879
66
+ warp/examples/core/example_torch.py,sha256=IzqgTmJLsnZjNrv8qnuFmTKj9O3zzY44jO7UEVsUtpQ,7047
67
+ warp/examples/core/example_wave.py,sha256=8sjVhENeuwj7tymFag0f3EumtvUziRPnr9vlejA_Z5g,8431
68
+ warp/examples/fem/example_adaptive_grid.py,sha256=xOaBO1lIzx0U_c4Ir0-q1n9rb6ERemreSMj6l9Q37yI,10535
69
+ warp/examples/fem/example_apic_fluid.py,sha256=5qtntNBYpaGkgS_rkOPrBWag8ROfDanb6DIGJGKmV6M,14765
70
+ warp/examples/fem/example_burgers.py,sha256=Qrebb0ZX4bbqwydqoh7QHX5BB7NpbugxRyAmjOwL2WI,9765
71
+ warp/examples/fem/example_convection_diffusion.py,sha256=_xq_CEK1LwlAk__2XZUM5iZXOijmKoUM06je5owJ_yw,6212
72
+ warp/examples/fem/example_convection_diffusion_dg.py,sha256=mqxQpRzZv4YB7381MY85a9bTxKaeiUAZuaulxkJSfrg,7335
73
+ warp/examples/fem/example_deformed_geometry.py,sha256=mEk2H7u0gsmdWjSATa1YkIbDl3i5rouwCBvlPuZYtOY,6189
74
+ warp/examples/fem/example_diffusion.py,sha256=rp6z1P7qOEPKzesQopsnUNN1JRJUy5hDR7o8rL2WGc8,7368
75
+ warp/examples/fem/example_diffusion_3d.py,sha256=0hXS9N6Ea_YUz8nWNYgzVXeZTdNci0Z2YNNGcX2GkpM,8229
76
+ warp/examples/fem/example_diffusion_mgpu.py,sha256=9xBbQC1ma9avNcrFbwg2dSmHmMoIMVEKoY8cPxDXBaM,8040
77
+ warp/examples/fem/example_distortion_energy.py,sha256=H0CSL5q1Buu1ym97NiQIqxecxuqPUI6VxZJO7wJQsK8,8387
78
+ warp/examples/fem/example_magnetostatics.py,sha256=ZlSzArPvkt4mrbSSbL0xsdSz8yZ1NHQlH-4Jzuz8G7A,9060
79
+ warp/examples/fem/example_mixed_elasticity.py,sha256=2-ANG_w-TBYUmpq1GGjZmu5MtMu95lhQFh224QBMTIU,10770
80
+ warp/examples/fem/example_navier_stokes.py,sha256=hrauc1f_yJpQb_jRxzfTOEL8ECbRZZaLlcXf8sZZDLI,8952
81
+ warp/examples/fem/example_nonconforming_contact.py,sha256=nxUMF5z7aFXqdCUWsQ80cYwbt14p9_EOpz49eVNEoeA,10630
82
+ warp/examples/fem/example_stokes.py,sha256=df-F2a18lE8IeucoTXqzLFzNTDswOb-jdk0OwMs5Dj8,7462
83
+ warp/examples/fem/example_stokes_transfer.py,sha256=dwKKcD5ms7a14EmTbPEiey7OpqgTWIClhGNXETMrFww,9622
84
+ warp/examples/fem/example_streamlines.py,sha256=6BdXnBna1gK0sbtfsYFV-sEPATty3V5umeE8cLeVIiM,12239
85
+ warp/examples/fem/utils.py,sha256=_0O9M0_4ff57B4Nx9Ve1G09dzkBYIwndUIaPtgNPJFQ,33717
86
+ warp/examples/optim/example_bounce.py,sha256=Df5PWueLI0MMWb9z-L1OZBuxiKGb3lyN0UeLSeYiy28,8728
87
+ warp/examples/optim/example_cloth_throw.py,sha256=x2cneVhtrS4q2z7IhiJowCtlHFfDk8Semzr_EemHmVQ,7471
88
+ warp/examples/optim/example_diffray.py,sha256=-vro_MCO0RWistSPoYciuNOOJNHc3dpWZeLZvjKNSwE,18498
89
+ warp/examples/optim/example_drone.py,sha256=jiu8e7bqEaQiU2CjKSGCDnhjD7LJ0zI5SD0Tfo98qmA,29437
90
+ warp/examples/optim/example_inverse_kinematics.py,sha256=Cgj9ccq9OrJ4X5DyFpyiYrNAHoMjFIJgLtiTNqYaYaQ,6072
91
+ warp/examples/optim/example_inverse_kinematics_torch.py,sha256=3XVzSaM5CT4WjOv2a6qJ-Z01aT4l8VQU5H7pVYvQ3Wo,6891
92
+ warp/examples/optim/example_softbody_properties.py,sha256=vQrnTQMPgjDI9bQgkjJWuD14i7pR0xU9V3WLVW5WgkE,12846
93
+ warp/examples/optim/example_spring_cage.py,sha256=8JKYfYEvxnS8KOrCeUsCMqnuR6BuySrDh8qpjux2g58,9080
94
+ warp/examples/optim/example_trajectory.py,sha256=n1sLoMubGf3P4YRETDaW1fATPylsceOBw2tPzgVUjhg,7887
95
+ warp/examples/optim/example_walker.py,sha256=U1Savo0sSjFzqXI3lcNMHl0hKzPPj1RCvWHmSfJ5nf8,11264
96
+ warp/examples/sim/example_cartpole.py,sha256=9kf41mS_gMFvrcQKMnZnI_ebpdkyYEwNJUKU-si4nlM,4711
97
+ warp/examples/sim/example_cloth.py,sha256=MpbD13e-Pi2ppObig4zS5cekJPSQ3rDy9AErEVCEYxc,7483
98
+ warp/examples/sim/example_cloth_self_contact.py,sha256=qgxCS0miir9BdLLqypov-W2tBxd3TA-FOZZpXwSer4Y,10708
99
+ warp/examples/sim/example_granular.py,sha256=CuS09CRq9YipQGYq7rftLcQ8UuyG_922DXc4abdVrVk,4163
100
+ warp/examples/sim/example_granular_collision_sdf.py,sha256=nmH5WwSCYvMvWbGIWJFmc04OBnEO-s0Z_tsBND2_VME,6662
101
+ warp/examples/sim/example_jacobian_ik.py,sha256=jDEPvK7qWCFT-TRCgv4G_QzdIuOG8jWzUfysJr3ykBI,8843
102
+ warp/examples/sim/example_particle_chain.py,sha256=OlZrALoXHQw7IAaob_mJkajdZayOScxt5hIMh90KaHA,4188
103
+ warp/examples/sim/example_quadruped.py,sha256=jvFENT21X-NsNl-WaXAo0JDEj1MlWYMZcuXplqBIip0,7387
104
+ warp/examples/sim/example_rigid_chain.py,sha256=jnqiE3D-2Jmcq0C1nqfbEWOl_kLrpT4-0QaW9g3JWBk,7676
105
+ warp/examples/sim/example_rigid_contact.py,sha256=hJRn7KwZiu30xyOsrSFFMJ-OI-siIJ0v6Ho7PktW1rE,6469
106
+ warp/examples/sim/example_rigid_force.py,sha256=uJlD9D9Jw87iIGBUIYdYumaXAfWW_lzEE6oylfSwuHs,4551
107
+ warp/examples/sim/example_rigid_gyroscopic.py,sha256=RwUVlUFgxd9p82IoehTSK9iJtOnIiLl4jPrUtjxCVjU,3604
108
+ warp/examples/sim/example_rigid_soft_contact.py,sha256=A85zm0aueAO_e4yEJ7AMmkErHpqFOWGvJ1Z_VCsMON0,4520
109
+ warp/examples/sim/example_soft_body.py,sha256=8qshajhgxtLggq-wFw8BDmXlTIFNuKmgXiKuQX5WxDs,6076
110
+ warp/examples/tile/example_tile_cholesky.py,sha256=1ChfPQGSedIvqEy6ZoEHUpsqX_u2bww_-0aSD5rvWwA,2487
111
+ warp/examples/tile/example_tile_convolution.py,sha256=Tg14ZkpNPmGGIrh48B27G-TawBLrFDT0OkroToT4IlQ,1935
112
+ warp/examples/tile/example_tile_fft.py,sha256=YAlqbFzxzDcSBsCXiURqma8Dxx4Bbi8X1jvYSEWksss,1763
113
+ warp/examples/tile/example_tile_filtering.py,sha256=qbU5z8Mszohwdzs4WjQ-GWjMiSYfhz_W6bZL-XLEi4s,3239
114
+ warp/examples/tile/example_tile_matmul.py,sha256=foisdbgVoguS1ECOXFAJ284mIdpjzOrDl9dU49XAR0g,2555
115
+ warp/examples/tile/example_tile_mlp.py,sha256=-K0QzS0weVC9mCTM2w23zG4EZ34ndORNRDCMBbww3U0,12939
116
+ warp/examples/tile/example_tile_nbody.py,sha256=Q4eR3rNJ00asYnJYfjd9awL_Di4eRVWQm1c2JqVA7ls,6612
117
+ warp/examples/tile/example_tile_walker.py,sha256=zByUTVOHAV41A6uydrc32FsiZFTIfn29f4iXMEYwK-w,11286
118
+ warp/fem/__init__.py,sha256=wBoBXddVh9NC-BuQQkczyGq0Anhi3MYdcCOPhAZd_JE,2621
119
+ warp/fem/adaptivity.py,sha256=XCKztEZMUhKHktR8Da55b_PbeELJrG_dG7OQ0SEkbR4,17726
120
+ warp/fem/cache.py,sha256=OH5ub3wzX_CZGcrXYjwktSEmIvaR9-a-JOe90nDFvks,19172
121
+ warp/fem/dirichlet.py,sha256=ePVGZ0QHaOYirklZt5DiPEBHGz2cLmDOxODCq0bNeMk,7042
122
+ warp/fem/domain.py,sha256=7wOmH5NAPreIjPFWU6bE-o2tMJwRJorZDA6MBPnfbBU,13814
123
+ warp/fem/integrate.py,sha256=G3LVAv9RwtfbwHXsucbe4Ge3I2pHTRqBUgL39-2199Y,81885
124
+ warp/fem/linalg.py,sha256=rRwWyHFImg-jQgnXBPK-jKb2qCw5cmoE29Kcrunzpbw,11842
125
+ warp/fem/operator.py,sha256=fPNbJXkzdqMmhiE-sH3PDXCnmK9crX8DJdjPPWMXzdM,10315
126
+ warp/fem/polynomial.py,sha256=9VwCmy2guCBuy1QUb2oa9rWTSCQZ06I_XeerPZTvtRQ,7265
127
+ warp/fem/types.py,sha256=iJvN_oCOQx8Bgb3R6zXulwX8AkdIoN4jHiP2Bg_2BBk,3011
128
+ warp/fem/utils.py,sha256=pO9xLU5E1BBDeeEr08OsntcjwdmZ1slSzwbyWDS7nD8,14428
129
+ warp/fem/field/__init__.py,sha256=stKfI0p7vtAYNLkmrMj5Tf1OBbpwj9XZS9sXG5redSA,4718
130
+ warp/fem/field/field.py,sha256=ngdSr0F--55BtNPIs1wGRZhoRLu3W0lsrXVSSt-YofE,22220
131
+ warp/fem/field/nodal_field.py,sha256=DUGdUkK-CHpnFgdU8L4exFq6UrJ5UGbFSTGNGgJ-8GA,15546
132
+ warp/fem/field/restriction.py,sha256=B26yGImwrioeTLiw6Z0XOqeFswL2ONKNBZzQrptF4tY,1530
133
+ warp/fem/field/virtual.py,sha256=WIfw6ivEYi6HZWzL2EWksOmySIZaSuQ1XEPb28KyKo8,36053
134
+ warp/fem/geometry/__init__.py,sha256=uOaf3VYcI3CBnogsdfw-v7562v4opHXlL3E6bztWzyg,1225
135
+ warp/fem/geometry/adaptive_nanogrid.py,sha256=Ad0jSyl2FeoRFy5X4_DsVRpKU-6tu6__B5OG7dxEbOY,31812
136
+ warp/fem/geometry/closest_point.py,sha256=keXKJ5XEEQnK6wl_yoKKwo_VV1essCZ1j6LjBu9dpJo,2708
137
+ warp/fem/geometry/deformed_geometry.py,sha256=TpFlzxI-DmTBVzvqZUTzwrnC1w5ZGqKSxUyhLmhgD2g,9047
138
+ warp/fem/geometry/element.py,sha256=b9_RIjlskwo0A8EIxeYLXJ6hiDGT8Bh60hynDmV7Mbo,35019
139
+ warp/fem/geometry/geometry.py,sha256=xZHCeCCWMzZiySmd82L0IoT3a2KsN-CYzvbOSJX7Jpg,14183
140
+ warp/fem/geometry/grid_2d.py,sha256=cDzjbDgMTFHWe7mxrvNlniz00QRb_dHcuvUetHGDJQ8,12594
141
+ warp/fem/geometry/grid_3d.py,sha256=nGVO5QqQh30Gqsv0i9ue1zIyxsLu1juusmvsz4ncxOY,15092
142
+ warp/fem/geometry/hexmesh.py,sha256=ApRuGfaztC7j6FeRQ4Rj0KfxtIRHUxPT7f8gOVCWmRc,32514
143
+ warp/fem/geometry/nanogrid.py,sha256=oVgnWG3HAKf4lJWBCijvPqU3jLtHtfaoG5rG87zbCRY,20222
144
+ warp/fem/geometry/partition.py,sha256=u2L0s8svQGzgfwkDamClD3LthImLtv-KxpFU4b3xNLQ,13385
145
+ warp/fem/geometry/quadmesh.py,sha256=Y175XJQB9ygJyiO4wGgmlMx-KOXkPxyJP7OW62Df234,22892
146
+ warp/fem/geometry/tetmesh.py,sha256=UzsVDcmxF9hevHGp5xKT2-pjHxq4nNVhpcJ1FBzJRGc,30210
147
+ warp/fem/geometry/trimesh.py,sha256=cDQwO5YiQGk2FycuCzH9EJShKHOq8FoFZyMKvT0tsNM,27344
148
+ warp/fem/quadrature/__init__.py,sha256=BMnQvlB3IAQIrPvV9otn_-gm-Px1RDXuQuA7ysIUhAo,813
149
+ warp/fem/quadrature/pic_quadrature.py,sha256=yFWGUKoy8RVCCpbAyh-h4EHoM8PU5ep1LyBNuU36WYU,11504
150
+ warp/fem/quadrature/quadrature.py,sha256=MV_DBew85mojYgL8VRO4xdtSAi6P-vCbh6XLw-MWEWc,14411
151
+ warp/fem/space/__init__.py,sha256=z60RlcKRC_2sN0q4rmSepQZic-3Dx2yRs5r8AC-V5-M,9964
152
+ warp/fem/space/basis_function_space.py,sha256=-3RVDpwcvk9pdSNqGbgft3tbGgnolSi20bmIfEXaY18,16867
153
+ warp/fem/space/basis_space.py,sha256=hPigktNfaqpZZ8eLp4dz41YURnQ_xZjm9JScpbRlthA,24792
154
+ warp/fem/space/dof_mapper.py,sha256=_hKotzM9xKyw3XXlO0QXA-At2B5oZ4_i72ZqI1ip430,7539
155
+ warp/fem/space/function_space.py,sha256=4geNxzjZDgltBVZxkRB7hphJffe4s48cxo_8yn0nAvg,11752
156
+ warp/fem/space/grid_2d_function_space.py,sha256=cTYNWgJT2Z4zD4Pw2Q1KWIjV8-K15ahoZ9woVkQru8A,6594
157
+ warp/fem/space/grid_3d_function_space.py,sha256=_gM4b-7AF4uLYOwEdmDhq7gFemAs2bA7U_VAGtLdKhs,8903
158
+ warp/fem/space/hexmesh_function_space.py,sha256=Uf-7h2UYKHonpy7brlw8YBQ6EeUjBxduWVqUSROxVrs,9879
159
+ warp/fem/space/nanogrid_function_space.py,sha256=LL0i8b_s-F5HalLpawELkM2HkfZD9EiSGeqqRZdR0Q4,7618
160
+ warp/fem/space/partition.py,sha256=47AbOQX9liPqMkJYlaJC8O058Lh1rWAT6GDp-Wpjrns,14607
161
+ warp/fem/space/quadmesh_function_space.py,sha256=CqB5-jmht-_IdMKU4XliLQjGfO7qBrardr-K-4P0WW0,8534
162
+ warp/fem/space/restriction.py,sha256=PIlAcdB1vRMhbSUF63KXkkU2HEhWXsBUOLdocobk7A4,7328
163
+ warp/fem/space/tetmesh_function_space.py,sha256=MeGxSmXs6gNXFfaiOVfTzjzx3oCgmAWJDTvbtbwsH4A,10351
164
+ warp/fem/space/topology.py,sha256=-QLeSaIVd-gSIALsu2vp3vqJ_SiTktuuwtz10AaiZhc,16221
165
+ warp/fem/space/trimesh_function_space.py,sha256=CNkO7k9SMHEGmzFVwi7JfYXfU706-GkKONIdiQHkYaI,7314
166
+ warp/fem/space/shape/__init__.py,sha256=jlgDRXRonCDxdWrvzlC0fF4SM25jflqSkxjaUQ8EMZw,6403
167
+ warp/fem/space/shape/cube_shape_function.py,sha256=Zz2sTBc2UffVYLiLpZJpEKvnp84Pyh-SFNbPtd1kbZo,40038
168
+ warp/fem/space/shape/shape_function.py,sha256=qxy2aYFHg5pOZHkycnfsUddsNPZ-ZSLgYc3_inhU61Q,4304
169
+ warp/fem/space/shape/square_shape_function.py,sha256=0li7J-ezHSrAiHl2vqdLnRFd7db4zo6ubfyYheKi_ms,32858
170
+ warp/fem/space/shape/tet_shape_function.py,sha256=7v9ILj_aN2MRlTQtIoL12-6bIqY1KTrol7wdsKqtxpo,28821
171
+ warp/fem/space/shape/triangle_shape_function.py,sha256=bUWvBNHduSi1ClnHZ_zdule_FzO1p6TfTXyi_EWags8,22335
172
+ warp/native/array.h,sha256=cdYldI4Mx0pSwm0Q5sVPiiE0CAypgOTe1gh5bemt-hg,40050
173
+ warp/native/builtin.h,sha256=87tYUZMab76hVa0ZwefQAkqqslqGln0GLDJxQHzeY0g,52695
174
+ warp/native/bvh.cpp,sha256=jVIQy2EIACWpyeWpov5u0O0GMEftMiRbKK0gMZYR5vs,13972
175
+ warp/native/bvh.cu,sha256=QTuUDTaJYS9Hml8QsRlShBWq-IE8Ay11eZiKLhtzwEg,30064
176
+ warp/native/bvh.h,sha256=HsItIHgmORoil5CQEPg2a0sTay5fOSVHLJMueK5caKI,14088
177
+ warp/native/coloring.cpp,sha256=gN7JuyHz1mPJ4SpfaQtq7kQl_6jy3MjnVT1A8mCXoW0,19703
178
+ warp/native/crt.cpp,sha256=weT6TKSgNbvrC8IBErqoSmab3HjRCLLdP_Tf_88ZkgY,1433
179
+ warp/native/crt.h,sha256=JPkGDWhsI6ER00kEZVOnlnMHvy0JFAh_a648Akxf-W0,11090
180
+ warp/native/cuda_crt.h,sha256=lh6ldE4IUA2CtLE_uqAnSp9LHf751A-TdbYeswHgSHQ,68923
181
+ warp/native/cuda_util.cpp,sha256=4qlIkDW4-pT560P48FqT-S-fmPvmsKdcyagRj34xCYc,26075
182
+ warp/native/cuda_util.h,sha256=CDcdQObVrfldkdMU_x-QFdvvEnYOcFojDRwlXkjizMo,11837
183
+ warp/native/cutlass_gemm.cpp,sha256=Ta8bgrMe5Xvt7jK2_cZZZubcxu4LZ25FA0Sbh-RgVNY,1389
184
+ warp/native/cutlass_gemm.cu,sha256=vlkV8KE_ftLivI5Z8cgsEFUORO9C3XNRkh1e9efD-9s,21882
185
+ warp/native/error.cpp,sha256=9OgVkyRJlKR7NNZjYJkqmPNyq9Sd-zaX1XgHz9DiCIg,2173
186
+ warp/native/error.h,sha256=tShF1m0sJsOz-Yg9LvdkmMNbZbLAaOO502cQ2YdiHSA,1200
187
+ warp/native/exports.h,sha256=frwHEkZAH365gY6QDGlmHiVn1PJyxVrScI7ebVQpGyA,183318
188
+ warp/native/fabric.h,sha256=S6db0MM5hve4LNjBJwyQoEY3AE5qpWgimdhl6AzFKmA,6451
189
+ warp/native/hashgrid.cpp,sha256=u0QhRab3VdVLzxdgUxL49UgUFuJPEtGZogFaXHNmC6g,8695
190
+ warp/native/hashgrid.cu,sha256=I9rcDhFyptSX8L5W-oXxQD6LFtwH7nAmsyhk6veAUIs,2525
191
+ warp/native/hashgrid.h,sha256=FaUbwE0bN1WUfy3T7KLvZgunBhkjN8VUCli_O-Hdaus,6900
192
+ warp/native/initializer_array.h,sha256=FZs9aPS0XMuLVI20gIVdX64u0diEOmk7_QClcFGClZM,1262
193
+ warp/native/intersect.h,sha256=XH-bjfcLP3frD4x5ueK6jiHTObRtGtkbIpRSXEmtxH4,34821
194
+ warp/native/intersect_adj.h,sha256=6JRETf7qBKob7HH3VZv6K1hEKd1xcdqODf5ptGbN_fg,11829
195
+ warp/native/intersect_tri.h,sha256=krNiBR-P30Q4gvdDJ4YeCVy6rDUUz_IgHCeMsGteCM8,10897
196
+ warp/native/marching.cpp,sha256=tQdV67qGWzE6AF9N1LZdgnzNXfTqXWR2zZeBlhmdHME,724
197
+ warp/native/marching.cu,sha256=zcY4JCWiFMiS5HLo_pgktNFU0hB7BvXK_xPod-TIk1k,22027
198
+ warp/native/marching.h,sha256=2AQaLQzjbhrmO536XqobMAxnKOuQnb0IZ47AKuqh9Mo,715
199
+ warp/native/mat.h,sha256=87otLwSJVa9a5dCE3qKtoZWKBJWPcwCpA96DMmLpFHg,53456
200
+ warp/native/mathdx.cpp,sha256=PqMkUG4YP3ICKgxw8wMsrzx2rcuK3MaxKWYWbDLUnlQ,3223
201
+ warp/native/matnn.h,sha256=nXVX8FFgfA84mwbycdJlP9j8FmQZ6k2m30dugHkMYgI,9883
202
+ warp/native/mesh.cpp,sha256=5pt93Q6JMMTcbqhu8im_ccsVt7s8NE6VClBbdxmk4Kk,8197
203
+ warp/native/mesh.cu,sha256=DbZowV3FU1JOJTzP-pFyH5hpzrX5cNKzUmeqU82LqHc,15150
204
+ warp/native/mesh.h,sha256=-wveGAAZ5A6pSM0hvJczhxUykjb90Y6PNIgJhhq6JWQ,66117
205
+ warp/native/noise.h,sha256=iW0q4IRcVcqwGtIK87NQ0FU82ABA3_XcZJmGgJ1cYlQ,30028
206
+ warp/native/quat.h,sha256=ObldYLJYe2lo8dRMN7te31Pui9jlKTQUx30lqlFWGr8,43793
207
+ warp/native/rand.h,sha256=vVPKCY7pz0ZgbGP3JVfoZDnE39ujCnmKtU59dJ987ng,12047
208
+ warp/native/range.h,sha256=7kx5CbfWQ7l4mmOwe6rcEXBMqzlQLzSJv7es86D--XE,3306
209
+ warp/native/reduce.cpp,sha256=4jaDFpSZaYg8QNvm9vI57sguTSb7mKNRiu-5K0f9MSc,5162
210
+ warp/native/reduce.cu,sha256=Pvkxrs8pQX8B26jL78fdNm54UyCpD-aMbORMNKTri_M,11367
211
+ warp/native/runlength_encode.cpp,sha256=CXOnitObj-qNAN_920og0j6X9p6FaJnn58m_MyydH5M,2027
212
+ warp/native/runlength_encode.cu,sha256=7GSlV212BhjkO3tfkThEx8pnxcREGpUdHoXHzzY2NFM,2033
213
+ warp/native/scan.cpp,sha256=vuo-AQsKbNlpt2wKx73q5NV9xjPrk4t_at5AIUDNTLA,1524
214
+ warp/native/scan.cu,sha256=RBIlnzxaJkOrxVvL5QBB3zHs9DkaQH0aDocloS-fxgI,1879
215
+ warp/native/scan.h,sha256=rpJAtuy9cYL-zpUCf3qfknmaDcqhNKb7nzEk5GRKN5s,921
216
+ warp/native/solid_angle.h,sha256=uzsT9wfobSCFM_DWWA2VGBVc9GQV-XVISwYk29gTecU,16674
217
+ warp/native/sort.cpp,sha256=uD0xg2Bow4su5hw7_DBSSiyq86Chm-Dg0D7mSySR5Nw,4440
218
+ warp/native/sort.cu,sha256=jbdfF5WlRaES-o7FJXKFkrhOiB5JVwaW5LA0PoU_AXg,3833
219
+ warp/native/sort.h,sha256=_VsOTPXZm-dEltl6zh_-pi38sGuiDJ6_tczOuHhrDNo,1100
220
+ warp/native/sparse.cpp,sha256=Y5N_-ZSXMRN1mSgKNH2ZI8KZ2SeTx_Qs__hVHv9YYS0,13858
221
+ warp/native/sparse.cu,sha256=Xqkuqj-wTblvQed8xY1fxHMnvyBtEocqI2MAiUln5ds,19336
222
+ warp/native/spatial.h,sha256=-JbeYDnwwawQf1_c-xMAKMdgZkKP4c6x-uedSq3GBnM,20478
223
+ warp/native/svd.h,sha256=wn6OFXISld166WylKiLyuL6CpTcmkq4QiM3hUMbXRfA,21283
224
+ warp/native/temp_buffer.h,sha256=B8JORJRqdacUawG6GtItl7hKGVl8oH79AQwpyGKVhN8,1188
225
+ warp/native/tile.h,sha256=lLug9-Bc5kH3lAgW6bXxOETw11TCLtjje250hKroV6g,76187
226
+ warp/native/tile_reduce.h,sha256=wIgou4xc_FzHUMMItamYletA02LPERU56_VPzNdxMRU,5691
227
+ warp/native/vec.h,sha256=c954hSrcLww-P5kf2Q8WAg3rqo3MdJo4EWPYtBn_Ovs,38014
228
+ warp/native/volume.cpp,sha256=Tm1xhksWPsE8cSMCQQvlTxe5nSsiInn1s45qBXXHTys,17403
229
+ warp/native/volume.cu,sha256=6wFOhbnpoRVYTEI_qYf5ZsntuC69MPNiDiSm1w4BA-Y,2513
230
+ warp/native/volume.h,sha256=O8CZGqwok81LfngDpCrRmJ3YXHCaqyjmObWGrP5Dk78,36615
231
+ warp/native/volume_builder.cu,sha256=tp2qerlNFzpigvDn5Ac8sOC8VQCiCP1xhZ0gMGt_sO0,15663
232
+ warp/native/volume_builder.h,sha256=Yj_Y5gsqTWmxutZXdMsqaVEHGUxLZuYjQDjPf3Vpwqg,1465
233
+ warp/native/volume_impl.h,sha256=jg03Jg2_ji5lYjZKxl2v0o9kVdUdVUW9yFQXLmqy_ow,2442
234
+ warp/native/warp.cpp,sha256=QKvcv4xKOFAY_EOpDRJoyZfV9EMwUv2XfuxP4J_Vepo,35963
235
+ warp/native/warp.cu,sha256=JvD_zj-kVar0UEZQUaeL8Ob96pJ5FNYb50SHPgaBVI4,119015
236
+ warp/native/warp.h,sha256=5dTXVpLPt-_gNL4CUO1D60hrIovMHoMUuNzRl_w_dWo,20711
237
+ warp/native/clang/clang.cpp,sha256=y25WOLRBLPr2cN6j2U6XfzQGEv_d9nRLRpFo-MHMca4,19141
238
+ warp/native/nanovdb/GridHandle.h,sha256=zOso4Ekb9HsBb5knhvdNOU1ol-rjhFdJCySXLFKPVbA,18007
239
+ warp/native/nanovdb/HostBuffer.h,sha256=L1yEnGHUlhx9L38xUI82lJctSg0uxlnph9rW6xWdDAg,21463
240
+ warp/native/nanovdb/NanoVDB.h,sha256=OhXmChCjQGjm2-3HMPqLQAbq3zrLSmUciRBDDiukvII,290928
241
+ warp/native/nanovdb/PNanoVDB.h,sha256=kQXlXPocTbRb_5PH3nxo8U5l1buOdz5I3gA1D9j6aRY,165441
242
+ warp/optim/__init__.py,sha256=e051VbV6rbBYix47nzX-d1AQvIb62amJ6VqyrUVw0Lo,724
243
+ warp/optim/adam.py,sha256=ZCGdasTW9UlNGlLXoLlJbH92hY9cB03j1gYhshX1yJM,5760
244
+ warp/optim/linear.py,sha256=zNBcjkQHwzBRFjZuf09s28k1RXkklwDm8o3uTj47IlA,36042
245
+ warp/optim/sgd.py,sha256=USCMuqEMtx12hV9WkqUWaEyE5Kff99gkfmRErXHXWkg,3640
246
+ warp/render/__init__.py,sha256=EfmovuVgXCIp-Wp3shTKY4e8ewcrNogtYWicSj_ZKzE,794
247
+ warp/render/render_opengl.py,sha256=33TMIXA9lAV32vb4LuC6zm3eEKX6CCNlBmpLexRtMmU,131058
248
+ warp/render/render_usd.py,sha256=v6OxihN1FwKFXcinAbjx9Jr8mvsNIet8TMkWRKStFcA,28195
249
+ warp/render/utils.py,sha256=YjSJfVqakdz1PmMvLmRV9BGENEan4rg3Bl6oF82SX80,4554
250
+ warp/sim/__init__.py,sha256=Qtr-p22qbKp8nQuUNhohehfYJ_KHeaPbA4VtybXR_Lg,1871
251
+ warp/sim/articulation.py,sha256=W6Dg2n4q8mcArfhVnUzvawd_4uBSYmh6okWbNvQyyZM,26333
252
+ warp/sim/collide.py,sha256=qTQedozn-LS0-tjNGMfrGXLrBlRV_AcpLpw8TD2rtMA,95512
253
+ warp/sim/graph_coloring.py,sha256=cw_hOWEia6xqmuMzo4x9LySxvXgmIkMuwPBZIE4sUvQ,12547
254
+ warp/sim/import_mjcf.py,sha256=FmxYda3Q_D50EDvlnh87rsCoWrgCLt827nPSK6eFS9k,19561
255
+ warp/sim/import_snu.py,sha256=LxL2XE4ZNXdLEejUU8YQHe_mr-QZyKallHQrJNtKTA4,8594
256
+ warp/sim/import_urdf.py,sha256=XRrCknp_1l-kVxS0spxh4QlYen1Y5qLztGo2qzS5X7o,23883
257
+ warp/sim/import_usd.py,sha256=H8cGm0S856WqcnSAU8dnUVR5FyV4800jGnhzlT2Wuv8,40753
258
+ warp/sim/inertia.py,sha256=mC-6gLS4Pj1Yr3Vqe778FINyhXaXWqVtIrhX7ieglaU,9330
259
+ warp/sim/integrator.py,sha256=nES0bmxbSWff0uqgUzNs4WWcyRxoIpwBCdHHbZLj4Yo,6908
260
+ warp/sim/integrator_euler.py,sha256=RenmHi31NXyPpRsElFvT89AXnMKoQ2VwSzB-hzeZY2Y,60867
261
+ warp/sim/integrator_featherstone.py,sha256=9efyIjxmHL2i1p8xsKf_qZ3rugkg9JVgSb884bInpt8,73244
262
+ warp/sim/integrator_vbd.py,sha256=x17_XgzpQSyeRd8x5rOfxKMdTDu5UQUHB-RaZ6c5mLE,70043
263
+ warp/sim/integrator_xpbd.py,sha256=jL9XpN-KxNSTdpk1WiUnBJ6M_TGXorMS6JvnrnwotHI,115280
264
+ warp/sim/model.py,sha256=lHqAouBwsDft-B7Z_F9yWjIxyDHCRt-lNmsOlLqaD4w,201709
265
+ warp/sim/particles.py,sha256=-WUwl8-BHqh0g0Flrf4OymqlopgnIKs3i-LX1Zq-AJE,3421
266
+ warp/sim/render.py,sha256=M405H9GO9cpmwgMRolEWYtg-e5ouQfsltJkh_MainHI,18105
267
+ warp/sim/utils.py,sha256=Ax6TwMBlcwTdG_z8T4jFT_6h_BrQs__kDW69HZk9V4M,12881
268
+ warp/tests/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
269
+ warp/tests/__main__.py,sha256=u_lYY3MIcPBrWT8aPDzvXYCPKzhG60QpX8nS06sEcYE,770
270
+ warp/tests/aux_test_class_kernel.py,sha256=BSDdYsUVtLG44Ff2874VMr4zQy3-1aB9nhxGghixsmY,1283
271
+ warp/tests/aux_test_compile_consts_dummy.py,sha256=77UxippryLzpH_HPfF7Gmsqbn6g-08eexTDWuT1WFzw,727
272
+ warp/tests/aux_test_conditional_unequal_types_kernels.py,sha256=DY6bprKR7jle2M-77jIurGfh2nhxahxpb8zGr1CYINM,902
273
+ warp/tests/aux_test_dependent.py,sha256=bD2k9bEIFPBhhFKk_fvrUcgs55LXaObnJhINbxXAscw,1000
274
+ warp/tests/aux_test_grad_customs.py,sha256=utT3UWUJSGKI5T_tNsrg48nE81ExwE5MIiOi4RLSMVo,1087
275
+ warp/tests/aux_test_instancing_gc.py,sha256=3biRxMrHmBPAIRiPcvDzN3MF7jVorDffkYeinzdWiMI,880
276
+ warp/tests/aux_test_module_unload.py,sha256=rUEQ5j2jW7JI1KwDPrMY4O0dRcOnoRD_ckOzWDhKl3g,772
277
+ warp/tests/aux_test_name_clash1.py,sha256=ENPzG5GYstXo89hLYUUS7-LaEuBSTKVnrNAT7Fx9qC8,1156
278
+ warp/tests/aux_test_name_clash2.py,sha256=_Hqsmja4tHWBN6D4Z46BLAh9NdcQPZ3RCSVgkoAXcJs,1158
279
+ warp/tests/aux_test_reference.py,sha256=Kor12TtgY9ZPYgG62WN5yFEwRy-Y5WJNaAZALK2eNvo,194
280
+ warp/tests/aux_test_reference_reference.py,sha256=EgIq6H8SbgXIyuNj2vT_IytvwoVUbwwRX0cO-jjuRgQ,120
281
+ warp/tests/aux_test_square.py,sha256=9at3d__M9hPlwA-Ja350DsgY8U-LggkUu5B1b-K1A00,268
282
+ warp/tests/aux_test_unresolved_func.py,sha256=_Ma5x_sloWN0vfkd4u5G6vREeQjg0O3fUm6vCWWgbo4,835
283
+ warp/tests/aux_test_unresolved_symbol.py,sha256=qImu1IIw3DSKeZTwDC25bpljdeKCzwPTy2g2nioQqtA,844
284
+ warp/tests/disabled_kinematics.py,sha256=IYr5BCcR853kvfOT5vl6D50TMKuKU2kQc1CcBmdGnlI,7852
285
+ warp/tests/flaky_test_sim_grad.py,sha256=xWsVSfl469uSzUc-h8TsjLxylTVZmQ9pOkMVrp-TIcs,9276
286
+ warp/tests/run_coverage_serial.py,sha256=LJiW_a4EoY8IdFxooCrfjPR6Smw2tiyrvweArExXGvk,1301
287
+ warp/tests/test_adam.py,sha256=WXHPhJ_71e_p3cyEETs0hzHkJ3Jdixht8K9uRrWQRNw,5617
288
+ warp/tests/test_arithmetic.py,sha256=jhpJfhWebWX5o4cnhj7d_oGSvHgMHLIAEOaFdCNb0XM,44096
289
+ warp/tests/test_array.py,sha256=JgI0ej4Mh9H9vrHLLB2GelY8fdjsxhoHG2es9hort50,104377
290
+ warp/tests/test_array_reduce.py,sha256=33AcB_r0RyF7Xf3QpcKz5FLcAlWToBZprKj7lu0neB0,4934
291
+ warp/tests/test_assert.py,sha256=4OQ1ttkRPHQNjItPTUwr-KDJNFXFTMhpqFKYDVEY-bY,8023
292
+ warp/tests/test_async.py,sha256=AxlM8J66sBAdmc-MBgMild5xMx3nxMMwOqcdZGQvEjM,26772
293
+ warp/tests/test_atomic.py,sha256=wko_d8nXDJi3h-qeJP-bWwE65E3RRQQxpNxtgvFV5xI,5883
294
+ warp/tests/test_bool.py,sha256=9Ga9AVe1msMsMtUElwBjyoPMgTKM1wy7Yb4DjVGoW0I,6728
295
+ warp/tests/test_builtins_resolution.py,sha256=rEtuF84DytgUaRgI9n9Pv1NV8e12BwpvaGeAf8jDOLc,64245
296
+ warp/tests/test_bvh.py,sha256=pcHAlggUY77G_5cckqtimUEly5QgZljuEdr_BoEI54E,6379
297
+ warp/tests/test_closest_point_edge_edge.py,sha256=kZmU7XkRDnkH3LoIOMPmOCg7KNq8sWPcgVZ6JnyFla0,9904
298
+ warp/tests/test_codegen.py,sha256=0ufAbg8iOnMBSROWcv7b69aX_RFlJIaMDflA7tCKTGA,22153
299
+ warp/tests/test_codegen_instancing.py,sha256=2wHjnPLB0-Gfv5qT8GOAvT23-ubernvIQsgqBMhx1Dw,42014
300
+ warp/tests/test_collision.py,sha256=QNHfJLglMUzrl-g4imqLhCpBGZ-WEc_IRx2xEjn-0Ak,23622
301
+ warp/tests/test_coloring.py,sha256=Z4YLugfrevWJpnzz8z49bQSkS3eRo0gvSSTXrCXeOns,8596
302
+ warp/tests/test_compile_consts.py,sha256=qLSqPi1xzBMbVazP2Aq0MarE2RcuxMNI6B2GBmEPRZo,7164
303
+ warp/tests/test_conditional.py,sha256=SFiFD5aQFlaP7nEFvYuTbKDxogNCqDOzuA8aWLtCzdU,5751
304
+ warp/tests/test_context.py,sha256=jZfjYSj-8kNn-q45lSnTxaitSFb6oFaa1sV8Z4eGqg4,1430
305
+ warp/tests/test_copy.py,sha256=DZn00hrW3YeSDdK2djchYUbALBT5k-QONEFtsPK5lcs,7959
306
+ warp/tests/test_ctypes.py,sha256=qUGJk0mZUqM2-HE00KCMx2AtGIMELW_feWs4DSYe38g,24796
307
+ warp/tests/test_dense.py,sha256=MXq0gzx6Ju1ERV6EI-a0OeS08RSj5UFFHMWRSeU_gLg,2085
308
+ warp/tests/test_devices.py,sha256=Y9fwP37WC4YHKhPjmHX4om03qwXNsrZZ5-mubQoDwCU,3298
309
+ warp/tests/test_dlpack.py,sha256=qLwbPBjGlLqM_90u1JEAMjhTTw9HZfVFrSgJSlL1H3U,24111
310
+ warp/tests/test_examples.py,sha256=fMmb3aFklHykC3-ee5qeHn0FSg0GWviMtTqQOvhio8g,16742
311
+ warp/tests/test_fabricarray.py,sha256=MPhRWy3nTB7KKIDuz_o6XgaCxth_wOEgw7QN0n4sc9k,33513
312
+ warp/tests/test_fast_math.py,sha256=KwYuZ3sHfYacyP6w6twYAE3H2uEdFix55Vi-0f26UVk,2484
313
+ warp/tests/test_fem.py,sha256=hhAarRG066qAo-X0uVsQPg8lEzjVI_cDt70Yao0JzTM,76762
314
+ warp/tests/test_fp16.py,sha256=rYGKTSnFJlcD_ECd1O4ELhgwAlntlBa1-UjL1C-UERs,4074
315
+ warp/tests/test_func.py,sha256=3EBTC3OnrerVK0pHfyY1U-raebzbRD5jiAf2i0-OT-k,13576
316
+ warp/tests/test_future_annotations.py,sha256=PsxRcXYt38wwhGssdRCMRmotZ027BexAnkQZPHKCzz8,2464
317
+ warp/tests/test_generics.py,sha256=-jqubccqomA1dvsvzlMRPiyLqkohSjKnLIqwuAErJuM,22536
318
+ warp/tests/test_grad.py,sha256=FixQ8NKE_8kzZd8tUMzFdVOFxAZhwSQ950e76j5N3ow,29062
319
+ warp/tests/test_grad_customs.py,sha256=A38dDdGmMvSfZD82ITHwyqhhB-8ljAjL1OPqITEpLGY,11573
320
+ warp/tests/test_grad_debug.py,sha256=mufX0QsWQMMCSCF591eLpoONKsT9lzwy1oVLe1uT_MM,10699
321
+ warp/tests/test_hash_grid.py,sha256=Q83zbq3hy4FdENo3I81ctj6f-MexB8KHolWsxyH_sG4,7199
322
+ warp/tests/test_implicit_init.py,sha256=nytUv0t6_u6t34fTGIq9o6EEo8tV0Nbk_KbIcK3DZps,8141
323
+ warp/tests/test_import.py,sha256=Cl8OFHFrtcndMBzKW6r_fH_-mceQIBQ3IxIAGSDKLHQ,1277
324
+ warp/tests/test_indexedarray.py,sha256=6Mq9Qz8vTGRt4LL5R196TEB_QCSCxW3SR0M-aX3frUY,41050
325
+ warp/tests/test_intersect.py,sha256=Tih_yOSjJTSzvkj6IfTCxQLqb22DqzVPATr6EMRRJUI,2105
326
+ warp/tests/test_ipc.py,sha256=f_h5SdiXwCORJdC8pyx-nfrNzhDvw2-PTX4G1ZHHWHA,4124
327
+ warp/tests/test_iter.py,sha256=L7KfDrd-xoUgS6hzXm_etLx5WLWOBNf5TfjC9SNQm8o,2099
328
+ warp/tests/test_jax.py,sha256=BOenUckpz7mnoUgZ0hAAwRqeozST888xrhL_cEc99Qc,11604
329
+ warp/tests/test_large.py,sha256=zaY6EkOg6ZhWMTWqAL7S3qQDyDN07CfG1SD-QRwC3wM,6123
330
+ warp/tests/test_launch.py,sha256=Gk6EtbH8M5W3moN6_hntL-W63F3NVdc9CovBB8yWB94,11665
331
+ warp/tests/test_lerp.py,sha256=9_767J3lQ7vkmrTIHmsA74_M9TYuCtwW3Hg14wudQKA,5488
332
+ warp/tests/test_linear_solvers.py,sha256=JB1U_tsqpqlfQFUdgyKbv6_55_iSjQXIzWRhWGFJ4tY,7433
333
+ warp/tests/test_lvalue.py,sha256=nAkqwMLyn5f8yA7yJ13bWjCQzfvXAdLPiqnUalxu2xI,10830
334
+ warp/tests/test_marching_cubes.py,sha256=b79L5MvMvHoUyuemYRlIM3RQ2Q2BuPwGusG_HwXX-xQ,2319
335
+ warp/tests/test_mat.py,sha256=8UiOJbgvE5VOh9KUx3BNhttgjNX_2x0b1tjqiwQ4fxY,71578
336
+ warp/tests/test_mat_lite.py,sha256=N96rSrCfp1oa4UwuP7oZuicfNeD9V1TkK2cSjWBKY28,4070
337
+ warp/tests/test_mat_scalar_ops.py,sha256=TvGu_-ROzaspZBURwlpxitchiLiYmGQkDQWLRQaThX8,110506
338
+ warp/tests/test_math.py,sha256=BMP8h1kQ2Y4OGvFu07wV-t8Ei1ZlmfCqCclj7whwtRI,5629
339
+ warp/tests/test_matmul.py,sha256=MkV-WmG59AqGpVsdVq67o-CYVQAxTNQkprWPDf4dwhI,18837
340
+ warp/tests/test_matmul_lite.py,sha256=YioJyJkeuwwO1dvC5WtSsQU1aTXz6DG6c8JfUGqx__A,14656
341
+ warp/tests/test_mempool.py,sha256=DSOXyK-eDwYUh4VOU76cp3fDsvzqnJWXgMNfv-DWwmw,7151
342
+ warp/tests/test_mesh.py,sha256=bjimRN1uRgQe5X8drjKc0i_HD6_9MrwZhNtsF-Ck5w4,9808
343
+ warp/tests/test_mesh_query_aabb.py,sha256=pgBfHJQeyZsosQel7EQ7rCRpYUZpx3SaV3deirPuUhM,11348
344
+ warp/tests/test_mesh_query_point.py,sha256=0uxfNJ-LdupPBk1I0rq6gHtSi9uFesKNTn4em0rSm7g,29911
345
+ warp/tests/test_mesh_query_ray.py,sha256=2a4JroXXcXL5eHrXd7GGsuTLY2i9aq7OHZA0xJmZdWM,10215
346
+ warp/tests/test_mlp.py,sha256=fWzYwE2JxrmIar5I1lXYZxmnZrxCF-whiQgGsAbJcK0,8290
347
+ warp/tests/test_model.py,sha256=Qd5MjkNTLV3iN70xS9SVyv6JxSOxbsucBT3MWbwnZuc,7973
348
+ warp/tests/test_module_hashing.py,sha256=IbQ6KbxmHrXxOsy1l-ybIgecG630xTbJOleKO3QQseU,5548
349
+ warp/tests/test_modules_lite.py,sha256=Ujj5Fxg0ykfCpT30hMrCmb4hjRRERd94lV7qS3rtR0U,1408
350
+ warp/tests/test_multigpu.py,sha256=JzUnsDHBBnAVufSfDHUq7nekkSBmCPqf2ccKnLizW2Q,5525
351
+ warp/tests/test_noise.py,sha256=E2Qc6FqtWQu01DoxuXWiEAIC9rgCVwofgQ15suUDd54,7076
352
+ warp/tests/test_operators.py,sha256=w4lLLsq7ritfvdOOLzPGRg2yFJ3kUqjymKNYCfuSwZA,6918
353
+ warp/tests/test_options.py,sha256=lWLbgQboZSLnuBbkNAMgJwH3b0kq2sTCqpghjeHKm4A,3735
354
+ warp/tests/test_overwrite.py,sha256=YlbNP_ZMYb2vK8kdYGRdGy_wg24-KQebUuAMhMLcWOY,20843
355
+ warp/tests/test_paddle.py,sha256=iV8V4Q2g4BHHk8q0OpcTcl2nxFBM_7IpI8nqIX1Snnw,29190
356
+ warp/tests/test_peer.py,sha256=4J7JqXxNZNs3Na9sdn9bbl_Rj_OgYr_MRcpNL9Se1M0,5123
357
+ warp/tests/test_pinned.py,sha256=SZUFvUmoW9QpEpQ274O5vqss5A1YVzEZbW7nPufbJHs,2540
358
+ warp/tests/test_print.py,sha256=sY8ITUw7nC142OBKOK5a-0jukwH4yj7M5eAUNsAWezU,11749
359
+ warp/tests/test_quat.py,sha256=CTaaEWY-UQ3yt5EzQuwQtmRKPfGlaLPmJJA2q1Rmnfc,79127
360
+ warp/tests/test_rand.py,sha256=yM0ifDbsnx9sZpzw0FoDSyxp0DbGIvCoUWMlSQ1y-Ws,10919
361
+ warp/tests/test_reload.py,sha256=oELt3DdjSO4E0CGn_3HfzS6_Trl29Go2lp6Omt0i21g,8543
362
+ warp/tests/test_rounding.py,sha256=5hj9jkLKGg6-cEGNI9xj2HgxV7f1fD-k4oBJ8NQS3Sw,6034
363
+ warp/tests/test_runlength_encode.py,sha256=cyriyhh4Zht6KnqlAQ4h6qU7REf5rhIJQ4GuZ8bpmvU,7204
364
+ warp/tests/test_scalar_ops.py,sha256=V37CuUG6FtIIJw5137ptTUySk5BHkO64OYs-Sg1pUnE,3100
365
+ warp/tests/test_sim_grad_bounce_linear.py,sha256=wcDF8xL0pcFCiLjCYdRqEWGdjWtXGIUeAWggSlI2FB0,8282
366
+ warp/tests/test_sim_kinematics.py,sha256=C7MvRt09ZfYcl4ezWeLNz0sZYgUOdh_EYgt_iEODDNQ,2828
367
+ warp/tests/test_smoothstep.py,sha256=Qwa848LU-9RtEINjLap045bQVyceyBrJwfcx3p8RGzE,3635
368
+ warp/tests/test_snippet.py,sha256=K3kmbPQx9Oynp8l7furFO2gNzh9NS-hKnCdJ_DE-kIM,10123
369
+ warp/tests/test_sparse.py,sha256=Cx5lIF6Iebit5ck862epPQ2WCUSgP4F5alAOrKddPvU,20416
370
+ warp/tests/test_spatial.py,sha256=O1Rh8EpnoKmkxp1dXfcGNoqDjLF5dgCFiT6EKZifHMM,76691
371
+ warp/tests/test_special_values.py,sha256=el7MwvasdHi0gU_g1YsUJdUnQ8GuoX_mWP7NHYJ6GWo,14996
372
+ warp/tests/test_static.py,sha256=f-S_AqsEVtoMhZ8Jhi6hldfuKSLGhZKqxEB-7OaELFo,19202
373
+ warp/tests/test_streams.py,sha256=5_KlLiAc2ZgA9GMZ9RWKv5haruAS16DzFES3yPR_cBk,20006
374
+ warp/tests/test_struct.py,sha256=-KM0BFXdMuPqnqgToqSoSRYZVdQYO3qkQKdpoAlCLBM,17246
375
+ warp/tests/test_tape.py,sha256=ptVYNEj3zTl-tlBYoOXIH3-qLaBUsJ0ZyxBYo5okEXM,6524
376
+ warp/tests/test_tile.py,sha256=1nNTqSzlQ_OPi2R3UZVYOMDe4zFOZ2CRZMFzFbu7F6s,20119
377
+ warp/tests/test_tile_load.py,sha256=GEKT4MuqsrVW5xYIrpG2GK3Tad3nRuWeVpANOQCQgYw,12544
378
+ warp/tests/test_tile_mathdx.py,sha256=6ihdz9mOQ5MddRlCQeWp1_sr_ehGZ3F3pHPEBAQvmGU,6872
379
+ warp/tests/test_tile_mlp.py,sha256=rdmCLz88k5jqmwR5byOxptR4EQwLi1OIqHb5tY7dnxY,14852
380
+ warp/tests/test_tile_reduce.py,sha256=mgeV7jD2deNMb9dzepeXrE1zbxD37_KOHYvsducTdSY,11055
381
+ warp/tests/test_tile_shared_memory.py,sha256=9ZBfpz8cvE3TKd1K2EWyCfYyZblZHaHuRDhoQVvgrBw,8252
382
+ warp/tests/test_tile_view.py,sha256=MnmL5_mfwwoADj8s2HFa-o0UpYmDCr2J9rYc-XaXbs8,5711
383
+ warp/tests/test_torch.py,sha256=MJzvS0ZxAqk4PAfNPHyPwSL9T1ul59m-Kzj3ZY61IuE,34873
384
+ warp/tests/test_transient_module.py,sha256=WfQairbLR6MYKW0m84kkMvS8_k8K1knw2413E1Q6STM,2462
385
+ warp/tests/test_triangle_closest_point.py,sha256=8ik_eu-V1MwHK7OfXoeF2L1U6EFWkddJo5Vd1RWeiJU,4283
386
+ warp/tests/test_types.py,sha256=tOhUpZLPkYwm5XdeaW0V7gDEvse2pg9jobEd7kgjrhY,22362
387
+ warp/tests/test_utils.py,sha256=BdpWS320FPEr5mcMBjD_L99x-pIvUAOrGjjzfNyXcJM,19399
388
+ warp/tests/test_vbd.py,sha256=Pz40vLOcaN6KQHRP-ZfDPLaHk8yQAXsByv-rg5GWAGc,12854
389
+ warp/tests/test_vec.py,sha256=l5YXnDVr49M81JhmxUFJGXJSF94vPRWozJU7tFjO5fg,48390
390
+ warp/tests/test_vec_lite.py,sha256=z8Cgzyyyfptf5Ru1Wk5Fj3Ue9DzVIsDxPTBTPnJVNfI,2626
391
+ warp/tests/test_vec_scalar_ops.py,sha256=KaLDB0VoW5ZuJVuxqCJa-AtrXwTtClA13PBFkid8cbE,94501
392
+ warp/tests/test_verify_fp.py,sha256=bIRL2zc7zz5R-NNSbvWcwU4gNUk7KR3K6u68AYd2xcA,2593
393
+ warp/tests/test_volume.py,sha256=bfyv4-HSl1BEGGr3qLDGJ0aVJe9VvIrA_xvE_LfAWSU,37964
394
+ warp/tests/test_volume_write.py,sha256=TnHdlKiJed_2UKPAc8Tseg2zHCznbv2dvHG151Pf7Oc,11781
395
+ warp/tests/unittest_serial.py,sha256=W5PyqylFv6GE_RC_QIRXhopDf9HTh87kZnzHSVkdXBs,1390
396
+ warp/tests/unittest_suites.py,sha256=KjNe5d4w7UintlrDWE9Ytodc6RTtbOUki98M8VquXMk,16154
397
+ warp/tests/unittest_utils.py,sha256=pBS6CKxYvUnyXxcVQStEC4cUmS1jfZTxEwdh1WPRSVM,15676
398
+ warp/tests/unused_test_misc.py,sha256=dB5y7lIo7ZfTm4E2ylRel0GTvGg4B9lavKA4V0uOaoA,1710
399
+ warp/tests/walkthrough_debug.py,sha256=Ovcnjy2oQpDYs8wM4F2361Se83Gj_IIZZBin9SgWSOo,3143
400
+ warp/tests/assets/curlnoise_golden.npy,sha256=ueBhVunJH9If7vdb0fqfxfNaj1fe5pHlKBKHA1TBDRQ,262272
401
+ warp/tests/assets/mlp_golden.npy,sha256=-ynR9GhQN1HaGOYVdkAc-yVBouHN_2nBkW-4FawO8PE,29596
402
+ warp/tests/assets/pixel.npy,sha256=-1vcOVrS_Ew-AO1mIBNZrSwlx0N4cJsGw8fhkLzZtM4,196736
403
+ warp/tests/assets/pnoise_golden.npy,sha256=ZAOYoLXb3C8De8JXo1qwRyUWKjAKmffxegJtzbU4i-k,262272
404
+ warp/tests/assets/spiky.usd,sha256=VYbY7VEDLJxbxMyz8fp6scE4IaT6vvqvwJLnSr7W6h0,1577
405
+ warp/tests/assets/test_grid.nvdb,sha256=lEacSzmPaaMEOnErVZcCcjBzgGjhXbQw_s8MK10h4mQ,15581
406
+ warp/tests/assets/test_index_grid.nvdb,sha256=DJnot6O49J_0-Fw3Wc98BYC0rKQTmN9nrnldsKt7z1Q,8034
407
+ warp/tests/assets/test_int32_grid.nvdb,sha256=WuXLwxwyPso12XVprzy8-JMs0yC-AszvahGmMMEpR9E,15726
408
+ warp/tests/assets/test_vec_grid.nvdb,sha256=c8XefsMg5gbJa3TDfyyD0ImQPkf39yd9CuQkpibXH7U,37620
409
+ warp/tests/assets/torus.nvdb,sha256=7ftuUfUVpR_KkTuBPsmUQUrEFG9BcDxeHK7kvPA3itk,14549
410
+ warp/tests/assets/torus.usda,sha256=TVztXStGl-LML987ZK0CmUsILD2P0Smd331KcJUGDuI,340725
411
+ warp/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
412
+ warp/thirdparty/appdirs.py,sha256=2UXPK-AkDGoN5APeqAMMYkkfgf3Q_aUEZxcfkIxlQn0,24254
413
+ warp/thirdparty/dlpack.py,sha256=HYvNWIemrvxLDgQLRseerP8gqM87Ie7SVIX7p5xSM0o,4323
414
+ warp/thirdparty/unittest_parallel.py,sha256=QARsPkcB0VPr19au1VKuWpF0P2xJzLIqvTY1QG5KFTA,21226
415
+ warp_lang-1.6.2.dist-info/LICENSE.md,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
416
+ warp_lang-1.6.2.dist-info/METADATA,sha256=SQ5FwDNbGmKZ4OdyN51M7KD98xS8o5pgqRP304ItIi4,28887
417
+ warp_lang-1.6.2.dist-info/WHEEL,sha256=dlSwLP_SaVpRiz5krjpfbY5nfB4YKbij8PFo8Ggnql0,98
418
+ warp_lang-1.6.2.dist-info/top_level.txt,sha256=8pupHORyKoiN_BYWlTmv5OFBWdhqpppiBYQV5KxgEvg,5
419
+ warp_lang-1.6.2.dist-info/RECORD,,
@@ -1,126 +0,0 @@
1
- # NVIDIA Software License Agreement
2
-
3
- IMPORTANT NOTICE – PLEASE READ AND AGREE BEFORE USING THE SOFTWARE.
4
-
5
- This license agreement (“Agreement”) is a legal agreement between you, whether an individual or entity (“you”) and NVIDIA Corporation (“NVIDIA”) and governs the use of the NVIDIA Warp and any additional software and materials provided under this Agreement (“Software”).
6
-
7
- This Agreement can be accepted only by an adult of legal age of majority in the country in which the Software is used.
8
- If you don’t have the required age or authority to accept this Agreement, or if you don’t accept all the terms and conditions of this Agreement, do not use the Software.
9
- You agree to use the Software only for purposes that are permitted by this Agreement and any applicable law or regulation in the relevant jurisdictions.
10
-
11
- ## 1. License Grant
12
-
13
- Subject to the terms of this Agreement, NVIDIA grants you a non-exclusive, revocable, non-transferable, non-sublicensable (except as expressly granted in this Agreement), license to:
14
-
15
- 1.1 install and use copies of the Software,
16
-
17
- 1.2 modify and create derivative works of sample or example Software provided by NVIDIA in source code format, and
18
-
19
- 1.3 distribute the Software as incorporated into a software application subject to the following distribution requirements:
20
-
21
- (a) Your application must have material additional functionality, beyond the included portions of the Software.
22
-
23
- (b) The distributable portions of the Software shall only be accessed by your application.
24
-
25
- (c) The following notice shall be included in modifications and derivative works of sample source code distributed: “This software contains source code provided by NVIDIA Corporation.”
26
-
27
- (d) Unless a developer tool is identified in this Agreement as distributable, it is delivered for your internal use only.
28
-
29
- (e) The terms under which you distribute your application must be consistent with the terms of this Agreement, including (without limitation) terms relating to the license grant and license restrictions and protection of
30
- NVIDIA’s intellectual property rights. Additionally, you agree that you will protect the privacy, security and legal rights of your application users.
31
-
32
- (f) You agree to notify NVIDIA in writing of any known or suspected distribution or use of the Software not in compliance with the requirements of this Agreement, and to enforce the terms of your agreements with respect to distributed Software.
33
-
34
- ## 2. Limitations
35
-
36
- Your license to use the Software is restricted as follows:
37
-
38
- 2.1 The Software is licensed for you to develop applications only for use in systems with NVIDIA GPUs, NVIDIA CPUs or other CPUs.
39
-
40
- 2.2 You may not reverse engineer, decompile or disassemble the Software components provided in binary form, nor attempt in any other manner to obtain source code of the Software.
41
-
42
- 2.3 You may not change or remove copyright or other proprietary notices in the Software.
43
-
44
- 2.4 Except as expressly granted in this Agreement, you may not copy, sell, rent, sublicense, transfer, distribute, modify or create derivative works of the Software, or make its functionality available to others.
45
-
46
- 2.5 You may not bypass, disable or circumvent any technical limitation, encryption, security, digital rights management or authentication mechanism in the Software.
47
-
48
- 2.6 You may not use the Software in any manner that would cause it to become subject to an open source software license; subject to the terms in the “Components Under Other Licenses” section below.
49
-
50
- 2.7 You may not use the Software for the purpose of developing competing products or technologies or assist a third party in such activities.
51
-
52
- 2.8 You may not indicate that a product or service developed with the Software is sponsored or endorsed by NVIDIA.
53
-
54
- 2.9 You may not replace any NVIDIA software components in the Software that are governed by this Agreement with other software that implements NVIDIA APIs.
55
-
56
- 2.10 You may not reverse engineer, decompile or disassemble any portion of the output generated using Software elements for the purpose of translating such output artifacts to target a non-NVIDIA platform.
57
-
58
- 2.11 You acknowledge that the Software provided under this Agreement is not designed or tested by NVIDIA for use in any system or application where the use or failure of such system or application developed with NVIDIA’s Software could result in injury, death or catastrophic damage (each, a “Mission Critical Application”). Examples of Mission Critical Applications include use in avionics, navigation, autonomous vehicle applications, AI solutions for automotive products, military, medical, life support or other mission-critical or life-critical applications. NVIDIA will not be liable to you or any third party, in whole or in part, for any claims or damages arising from these uses. You are solely responsible for ensuring that systems and applications developed with the Software include sufficient safety and redundancy features and comply with all applicable legal and regulatory standards and requirements.
59
-
60
- 2.12 You agree to defend, indemnify and hold harmless NVIDIA and its affiliates, and their respective employees, contractors, agents, officers and directors, from and against any and all claims, damages, obligations, losses, liabilities, costs or debt, fines, restitutions and expenses (including but not limited to attorney’s fees and costs incident to establishing the right of indemnification) arising out of or related to (i) products or services that have been developed or deployed with or use the Software, or claims that they violate laws, or infringe, violate, or misappropriate any third party right; or (ii) a violation of the terms and conditions of this Agreement.
61
-
62
- ## 3. Authorized Users
63
-
64
- You may allow employees and contractors of your entity or of your subsidiary(ies) to access and use the Software from your secure network to perform the work authorized by this Agreement on your behalf. If you are an academic institution, you may allow users enrolled or employed by the academic institution to access and use the Software as authorized by this Agreement from your secure network. You are responsible for the compliance with the terms of this Agreement by your authorized users. Any act or omission that if committed by you would constitute a breach of this Agreement will be deemed to constitute a breach of this Agreement if committed by your authorized users.
65
-
66
- ## 4. Pre-Release Versions
67
-
68
- Software versions or specific features identified as alpha, beta, preview, early access or otherwise as pre-release may not be fully functional, may contain errors or design flaws, and may have reduced or different security, privacy, availability and reliability standards relative to commercial versions of NVIDIA offerings. You may use pre-release Software at your own risk, understanding that such versions are not intended for use in production or business-critical systems. NVIDIA may choose not to make available a commercial version of any pre-release Software. NVIDIA may also choose to abandon development and terminate the availability of pre-release Software at any time without liability.
69
-
70
- ## 5. Updates
71
-
72
- NVIDIA may, at its option, make available patches, workarounds or other updates to the Software. Unless the updates are provided with their separate governing terms, they are deemed part of the Software licensed to you as provided in this Agreement.
73
-
74
- ## 6. Components Under Other Licenses
75
-
76
- The Software may include or be distributed with components provided with separate legal notices or terms that accompany the components, such as open source software licenses and other license. The components are subject to the applicable other licenses, including any proprietary notices, disclaimers, requirements and extended use rights; except that this Agreement will prevail regarding the use of third-party open source software, unless a third-party open source software license requires its license terms to prevail. Open source software license means any software, data or documentation subject to any license identified as an open source license by the Open Source Initiative (http://opensource.org), Free Software Foundation (http://www.fsf.org) or other similar open source organization or listed by the Software Package Data Exchange (SPDX) Workgroup under the Linux Foundation (http://www.spdx.org).
77
-
78
- ## 7. Termination
79
-
80
- This Agreement will automatically terminate without notice from NVIDIA if you fail to comply with any of the terms in this Agreement or if you commence or participate in any legal proceeding against NVIDIA with respect to the Software. Additionally, NVIDIA may terminate this Agreement with prior written notice to you if, in NVIDIA’s sole discretion, the continued use of the Software is no longer commercially viable or creates liabilities for NVIDIA. You agree to cooperate with NVIDIA and provide reasonably requested information to verify your compliance with this Agreement. Upon any termination, you must stop using and destroy all copies of the Software. Upon written request, you will certify in writing that you have complied with your commitments under this section. All provisions will survive termination, except for the licenses granted to you.
81
-
82
- ## 8. Ownership
83
-
84
- 8.1 NVIDIA Ownership. The Software, including all intellectual property rights, is and will remain the sole and exclusive property of NVIDIA or its licensors. Except as expressly granted in this Agreement, (i) NVIDIA reserves all rights, interests and remedies in connection with the Software and (ii) no other license or right is granted to you by implication, estoppel or otherwise.
85
-
86
- 8.2 Your Ownership. Subject to the rights of NVIDIA and its suppliers in the Software, you hold all rights, title and interest in and to your services, applications and derivative works of samples or examples you develop as permitted in this Agreement including their respective intellectual property rights.
87
-
88
- 8.3 Non-Assert. You agree that you will not, and will not assist or enable any other party to, assert or threaten to assert any intellectual property rights against NVIDIA or its affiliates with respect to new software samples or examples that NVIDIA or its affiliates may develop and make available in the future.
89
-
90
- ## 9. Feedback
91
-
92
- You may, but are not obligated to, provide suggestions, requests, fixes, modifications, enhancements or other feedback regarding or in connection with your use of the Software (collectively, “Feedback”). Feedback, even if designated as confidential by you, will not create any confidentiality obligation for NVIDIA or its affiliates. If you provide Feedback, you hereby grant NVIDIA, its affiliates and its designees a non-exclusive, perpetual, irrevocable, sublicensable, worldwide, royalty-free, fully paid-up and transferable license, under your intellectual property rights, to publicly perform, publicly display, reproduce, use, make, have made, sell, offer for sale, distribute (through multiple tiers of distribution), import, create derivative works of and otherwise commercialize and exploit the Feedback at NVIDIA’s discretion. You will not give Feedback (i) that you have reason to believe is subject to any restriction that impairs the exercise of the grant stated in this section, such as third-party intellectual property rights or (ii) subject to license terms which seek to require any product incorporating or developed using such Feedback, or other intellectual property of NVIDIA or its affiliates, to be licensed to or otherwise shared with any third party.
93
-
94
- ## 10. Disclaimer of Warranties.
95
-
96
- THE SOFTWARE IS PROVIDED BY NVIDIA AS-IS AND WITH ALL FAULTS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, NVIDIA DISCLAIMS ALL WARRANTIES AND REPRESENTATIONS OF ANY KIND, WHETHER EXPRESS, IMPLIED OR STATUTORY, RELATING TO OR ARISING UNDER THIS AGREEMENT, INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF TITLE, NONINFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, USAGE OF TRADE AND COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, NVIDIA DOES NOT WARRANT THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS; THAT ANY DEFECTS OR ERRORS WILL BE CORRECTED; THAT ANY CERTAIN CONTENT WILL BE AVAILABLE; OR THAT THE SOFTWARE IS FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. NO INFORMATION OR ADVICE GIVEN BY NVIDIA WILL IN ANY WAY INCREASE THE SCOPE OF ANY WARRANTY EXPRESSLY PROVIDED IN THIS AGREEMENT. NVIDIA does not warrant or assume responsibility for the accuracy or completeness of any third-party information, text, graphics or links contained in the Software.
97
-
98
- ## 11. Limitations of Liability
99
-
100
- 11.1 DISCLAIMERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL NVIDIA BE LIABLE FOR ANY (I) INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, OR (II) DAMAGES FOR THE (A) COST OF PROCURING SUBSTITUTE GOODS OR (B) LOSS OF PROFITS, REVENUES, USE, DATA OR GOODWILL ARISING OUT OF OR RELATED TO THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE, AND EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND EVEN IF A PARTY’S REMEDIES FAIL THEIR ESSENTIAL PURPOSE.
101
-
102
- 11.2 DAMAGES CAP. ADDITIONALLY, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, NVIDIA’S TOTAL CUMULATIVE AGGREGATE LIABILITY FOR ANY AND ALL LIABILITIES, OBLIGATIONS OR CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT WILL NOT EXCEED FIVE U.S. DOLLARS (US$5).
103
-
104
- ## 12. Governing Law and Jurisdiction
105
-
106
- This Agreement will be governed in all respects by the laws of the United States and the laws of the State of Delaware, without regard to conflict of laws principles or the United Nations Convention on Contracts for the International Sale of Goods. The state and federal courts residing in Santa Clara County, California will have exclusive jurisdiction over any dispute or claim arising out of or related to this Agreement, and the parties irrevocably consent to personal jurisdiction and venue in those courts; except that either party may apply for injunctive remedies or an equivalent type of urgent legal relief in any jurisdiction.
107
-
108
- ## 13. General
109
-
110
- 13.1 No Assignment. NVIDIA may assign, delegate or transfer its rights or obligations under this Agreement by any means or operation of law. You may not, without NVIDIA’s prior written consent, assign, delegate or transfer any of your rights or obligations under this Agreement by any means or operation of law, and any attempt to do so is null and void.
111
-
112
- 13.2 No Waiver. No waiver of any term of the Agreement will be deemed a further or continuing waiver of such term or any other term, and NVIDIA’s failure to assert any right or provision under the Agreement will not constitute a waiver of such right or provision.
113
-
114
- 13.3 Trade and Compliance. You agree to comply with all applicable export, import, trade and economic sanctions laws and regulations, including U.S. Export Administration Regulations and Office of Foreign Assets Control regulations. You confirm that you will not export or reexport any products or technology, directly or indirectly, without first obtaining any required license or other approval from appropriate authorities, (i) to any countries that are subject to any U.S. or local export restrictions (currently including, but not necessarily limited to, Cuba, Iran, North Korea, Syria, the Region of Crimea, Donetsk People’s Republic Region and Luhansk People’s Republic Region); (ii) to any end user who you know or have reason to know will utilize them in the design, development or production of nuclear, chemical or biological weapons, missiles, rocket systems, unmanned air vehicles, or any weapons of mass destruction; (iii) to any end-user who has been prohibited from participating in the U.S. or local export transactions by any governing authority; or (iv) to any known military or military-intelligence end-user or for any known military or military-intelligence end-use in accordance with U.S. trade compliance laws and regulations. Use of the Software under this Agreement must be consistent with NVIDIA’s HumanRightsPolicy.pdf (nvidia.com).
115
-
116
- 13.4 Government Rights. The Software, documentation and technology (“Protected Items”) are “Commercial products” as this term is defined at 48 C.F.R. 2.101, consisting of “commercial computer software” and “commercial computer software documentation” as such terms are used in, respectively, 48 C.F.R. 12.212 and 48 C.F.R. 227.7202 & 252.227-7014(a)(1). Before any Protected Items are supplied to the U.S. Government, you will (i) inform the U.S. Government in writing that the Protected Items are and must be treated as commercial computer software and commercial computer software documentation developed at private expense; (ii) inform the U.S. Government that the Protected Items are provided subject to the terms of the Agreement; and (iii) mark the Protected Items as commercial computer software and commercial computer software documentation developed at private expense. In no event will you permit the U.S. Government to acquire rights in Protected Items beyond those specified in 48 C.F.R. 52.227-19(b)(1)-(2) or 252.227-7013(c) except as expressly approved by NVIDIA in writing.
117
-
118
- 13.5 Notices. Please direct your legal notices or other correspondence to NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, California 95051, United States of America, Attention: Legal Department, with a copy emailed to legalnotices@nvidia.com. If NVIDIA needs to contact you about the Software, you consent to receive the notices by email and agree that such notices will satisfy any legal communication requirements.
119
-
120
- 13.6 Force Majeure. Neither party will be liable during any period where an event or circumstance prevents or delays that party from performing its obligations under this Agreement and that event or circumstance: (i) is not within the reasonable control of that party and is not the result of that party’s negligence, and (ii) cannot be overcome or avoided by that party using reasonably diligent efforts.
121
-
122
- 13.7 Severability and Amendment. If a court of competent jurisdiction rules that a provision of this Agreement is unenforceable, that provision will be deemed modified to the extent necessary to make it enforceable and the remainder of this Agreement will continue in full force and effect. Any amendment to this Agreement must be in writing and signed by authorized representatives of both parties.
123
-
124
- 13.8 Construction. The headings in the Agreement are included solely for convenience and are not intended to affect the meaning or interpretation of the Agreement. As required by the context of the Agreement, the singular of a term includes the plural and vice versa.
125
-
126
- 13.9 Entire Agreement. Regarding the subject matter of this Agreement, the parties agree that (i) this Agreement constitutes the entire and exclusive agreement between the parties and supersedes all prior and contemporaneous communications and (ii) any additional or different terms or conditions, whether contained in purchase orders, order acknowledgments, invoices or otherwise, will not be binding and are null and void.