warp-lang 1.5.1__py3-none-manylinux2014_aarch64.whl → 1.6.1__py3-none-manylinux2014_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.
- warp/__init__.py +5 -0
- warp/autograd.py +414 -191
- warp/bin/warp-clang.so +0 -0
- warp/bin/warp.so +0 -0
- warp/build.py +40 -12
- warp/build_dll.py +13 -6
- warp/builtins.py +1077 -481
- warp/codegen.py +250 -122
- warp/config.py +65 -21
- warp/context.py +500 -149
- warp/examples/assets/square_cloth.usd +0 -0
- warp/examples/benchmarks/benchmark_gemm.py +27 -18
- warp/examples/benchmarks/benchmark_interop_paddle.py +3 -3
- warp/examples/benchmarks/benchmark_interop_torch.py +3 -3
- warp/examples/core/example_marching_cubes.py +1 -1
- warp/examples/core/example_mesh.py +1 -1
- warp/examples/core/example_torch.py +18 -34
- warp/examples/core/example_wave.py +1 -1
- warp/examples/fem/example_apic_fluid.py +1 -0
- warp/examples/fem/example_mixed_elasticity.py +1 -1
- warp/examples/optim/example_bounce.py +1 -1
- warp/examples/optim/example_cloth_throw.py +1 -1
- warp/examples/optim/example_diffray.py +4 -15
- warp/examples/optim/example_drone.py +1 -1
- warp/examples/optim/example_softbody_properties.py +392 -0
- warp/examples/optim/example_trajectory.py +1 -3
- warp/examples/optim/example_walker.py +5 -0
- warp/examples/sim/example_cartpole.py +0 -2
- warp/examples/sim/example_cloth_self_contact.py +314 -0
- warp/examples/sim/example_granular_collision_sdf.py +4 -5
- warp/examples/sim/example_jacobian_ik.py +0 -2
- warp/examples/sim/example_quadruped.py +5 -2
- warp/examples/tile/example_tile_cholesky.py +79 -0
- warp/examples/tile/example_tile_convolution.py +2 -2
- warp/examples/tile/example_tile_fft.py +2 -2
- warp/examples/tile/example_tile_filtering.py +3 -3
- warp/examples/tile/example_tile_matmul.py +4 -4
- warp/examples/tile/example_tile_mlp.py +12 -12
- warp/examples/tile/example_tile_nbody.py +191 -0
- warp/examples/tile/example_tile_walker.py +319 -0
- warp/math.py +147 -0
- warp/native/array.h +12 -0
- warp/native/builtin.h +0 -1
- warp/native/bvh.cpp +149 -70
- warp/native/bvh.cu +287 -68
- warp/native/bvh.h +195 -85
- warp/native/clang/clang.cpp +6 -2
- warp/native/crt.h +1 -0
- warp/native/cuda_util.cpp +35 -0
- warp/native/cuda_util.h +5 -0
- warp/native/exports.h +40 -40
- warp/native/intersect.h +17 -0
- warp/native/mat.h +57 -3
- warp/native/mathdx.cpp +19 -0
- warp/native/mesh.cpp +25 -8
- warp/native/mesh.cu +153 -101
- warp/native/mesh.h +482 -403
- warp/native/quat.h +40 -0
- warp/native/solid_angle.h +7 -0
- warp/native/sort.cpp +85 -0
- warp/native/sort.cu +34 -0
- warp/native/sort.h +3 -1
- warp/native/spatial.h +11 -0
- warp/native/tile.h +1189 -664
- warp/native/tile_reduce.h +8 -6
- warp/native/vec.h +41 -0
- warp/native/warp.cpp +8 -1
- warp/native/warp.cu +263 -40
- warp/native/warp.h +19 -5
- warp/optim/linear.py +22 -4
- warp/render/render_opengl.py +132 -59
- warp/render/render_usd.py +10 -2
- warp/sim/__init__.py +6 -1
- warp/sim/collide.py +289 -32
- warp/sim/import_urdf.py +20 -5
- warp/sim/integrator_euler.py +25 -7
- warp/sim/integrator_featherstone.py +147 -35
- warp/sim/integrator_vbd.py +842 -40
- warp/sim/model.py +173 -112
- warp/sim/render.py +2 -2
- warp/stubs.py +249 -116
- warp/tape.py +28 -30
- warp/tests/aux_test_module_unload.py +15 -0
- warp/tests/{test_sim_grad.py → flaky_test_sim_grad.py} +104 -63
- warp/tests/test_array.py +100 -0
- warp/tests/test_assert.py +242 -0
- warp/tests/test_codegen.py +14 -61
- warp/tests/test_collision.py +8 -8
- warp/tests/test_examples.py +16 -1
- warp/tests/test_grad_debug.py +87 -2
- warp/tests/test_hash_grid.py +1 -1
- warp/tests/test_ipc.py +116 -0
- warp/tests/test_launch.py +77 -26
- warp/tests/test_mat.py +213 -168
- warp/tests/test_math.py +47 -1
- warp/tests/test_matmul.py +11 -7
- warp/tests/test_matmul_lite.py +4 -4
- warp/tests/test_mesh.py +84 -60
- warp/tests/test_mesh_query_aabb.py +165 -0
- warp/tests/test_mesh_query_point.py +328 -286
- warp/tests/test_mesh_query_ray.py +134 -121
- warp/tests/test_mlp.py +2 -2
- warp/tests/test_operators.py +43 -0
- warp/tests/test_overwrite.py +6 -5
- warp/tests/test_quat.py +77 -0
- warp/tests/test_reload.py +29 -0
- warp/tests/test_sim_grad_bounce_linear.py +204 -0
- warp/tests/test_static.py +16 -0
- warp/tests/test_tape.py +25 -0
- warp/tests/test_tile.py +134 -191
- warp/tests/test_tile_load.py +399 -0
- warp/tests/test_tile_mathdx.py +61 -8
- warp/tests/test_tile_mlp.py +17 -17
- warp/tests/test_tile_reduce.py +24 -18
- warp/tests/test_tile_shared_memory.py +66 -17
- warp/tests/test_tile_view.py +165 -0
- warp/tests/test_torch.py +35 -0
- warp/tests/test_utils.py +36 -24
- warp/tests/test_vec.py +110 -0
- warp/tests/unittest_suites.py +29 -4
- warp/tests/unittest_utils.py +30 -11
- warp/thirdparty/unittest_parallel.py +5 -2
- warp/types.py +419 -111
- warp/utils.py +9 -5
- {warp_lang-1.5.1.dist-info → warp_lang-1.6.1.dist-info}/METADATA +86 -45
- {warp_lang-1.5.1.dist-info → warp_lang-1.6.1.dist-info}/RECORD +129 -118
- {warp_lang-1.5.1.dist-info → warp_lang-1.6.1.dist-info}/WHEEL +1 -1
- warp/examples/benchmarks/benchmark_tile.py +0 -179
- warp/native/tile_gemm.h +0 -341
- {warp_lang-1.5.1.dist-info → warp_lang-1.6.1.dist-info}/LICENSE.md +0 -0
- {warp_lang-1.5.1.dist-info → warp_lang-1.6.1.dist-info}/top_level.txt +0 -0
warp/utils.py
CHANGED
|
@@ -131,11 +131,15 @@ def radix_sort_pairs(keys, values, count: int):
|
|
|
131
131
|
if keys.device.is_cpu:
|
|
132
132
|
if keys.dtype == wp.int32 and values.dtype == wp.int32:
|
|
133
133
|
runtime.core.radix_sort_pairs_int_host(keys.ptr, values.ptr, count)
|
|
134
|
+
elif keys.dtype == wp.float32 and values.dtype == wp.int32:
|
|
135
|
+
runtime.core.radix_sort_pairs_float_host(keys.ptr, values.ptr, count)
|
|
134
136
|
else:
|
|
135
137
|
raise RuntimeError("Unsupported data type")
|
|
136
138
|
elif keys.device.is_cuda:
|
|
137
139
|
if keys.dtype == wp.int32 and values.dtype == wp.int32:
|
|
138
140
|
runtime.core.radix_sort_pairs_int_device(keys.ptr, values.ptr, count)
|
|
141
|
+
elif keys.dtype == wp.float32 and values.dtype == wp.int32:
|
|
142
|
+
runtime.core.radix_sort_pairs_float_device(keys.ptr, values.ptr, count)
|
|
139
143
|
else:
|
|
140
144
|
raise RuntimeError("Unsupported data type")
|
|
141
145
|
|
|
@@ -778,9 +782,9 @@ class ScopedTimer:
|
|
|
778
782
|
print()
|
|
779
783
|
|
|
780
784
|
if self.extra_msg:
|
|
781
|
-
print(f"{indent}{self.name} took {self.elapsed
|
|
785
|
+
print(f"{indent}{self.name} took {self.elapsed:.2f} ms {self.extra_msg}")
|
|
782
786
|
else:
|
|
783
|
-
print(f"{indent}{self.name} took {self.elapsed
|
|
787
|
+
print(f"{indent}{self.name} took {self.elapsed:.2f} ms")
|
|
784
788
|
|
|
785
789
|
ScopedTimer.indent -= 1
|
|
786
790
|
|
|
@@ -1041,7 +1045,7 @@ def timing_print(results, indent=""):
|
|
|
1041
1045
|
activity_agg.count += 1
|
|
1042
1046
|
activity_agg.elapsed += r.elapsed
|
|
1043
1047
|
|
|
1044
|
-
print(f"{indent}{r.elapsed
|
|
1048
|
+
print(f"{indent}{r.elapsed:12.6f} ms | {r.device.alias:7s} | {r.name}")
|
|
1045
1049
|
|
|
1046
1050
|
print()
|
|
1047
1051
|
print(f"{indent}CUDA activity summary:")
|
|
@@ -1049,7 +1053,7 @@ def timing_print(results, indent=""):
|
|
|
1049
1053
|
print(f"{indent}Total time | Count | Activity")
|
|
1050
1054
|
print(f"{indent}----------------+---------+{activity_dashes}")
|
|
1051
1055
|
for name, agg in activity_totals.items():
|
|
1052
|
-
print(f"{indent}{agg.elapsed
|
|
1056
|
+
print(f"{indent}{agg.elapsed:12.6f} ms | {agg.count:7d} | {name}")
|
|
1053
1057
|
|
|
1054
1058
|
print()
|
|
1055
1059
|
print(f"{indent}CUDA device summary:")
|
|
@@ -1057,4 +1061,4 @@ def timing_print(results, indent=""):
|
|
|
1057
1061
|
print(f"{indent}Total time | Count | Device")
|
|
1058
1062
|
print(f"{indent}----------------+---------+{activity_dashes}")
|
|
1059
1063
|
for device, agg in device_totals.items():
|
|
1060
|
-
print(f"{indent}{agg.elapsed
|
|
1064
|
+
print(f"{indent}{agg.elapsed:12.6f} ms | {agg.count:7d} | {device}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: warp-lang
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: A Python framework for high-performance simulation and graphics programming
|
|
5
5
|
Author-email: NVIDIA Corporation <mmacklin@nvidia.com>
|
|
6
6
|
License: NVIDIA Software License
|
|
@@ -78,12 +78,24 @@ the `pip install` command, e.g.
|
|
|
78
78
|
|
|
79
79
|
| Platform | Install Command |
|
|
80
80
|
| --------------- | ----------------------------------------------------------------------------------------------------------------------------- |
|
|
81
|
-
| Linux aarch64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.
|
|
82
|
-
| Linux x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.
|
|
83
|
-
| Windows x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.
|
|
81
|
+
| Linux aarch64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.6.1/warp_lang-1.6.1+cu11-py3-none-manylinux2014_aarch64.whl` |
|
|
82
|
+
| Linux x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.6.1/warp_lang-1.6.1+cu11-py3-none-manylinux2014_x86_64.whl` |
|
|
83
|
+
| Windows x86-64 | `pip install https://github.com/NVIDIA/warp/releases/download/v1.6.1/warp_lang-1.6.1+cu11-py3-none-win_amd64.whl` |
|
|
84
84
|
|
|
85
85
|
The `--force-reinstall` option may need to be used to overwrite a previous installation.
|
|
86
86
|
|
|
87
|
+
### Nightly Builds
|
|
88
|
+
|
|
89
|
+
Nightly builds of Warp from the `main` branch are available on the [NVIDIA Package Index](https://pypi.nvidia.com/warp-lang/).
|
|
90
|
+
|
|
91
|
+
To install the latest nightly build, use the following command:
|
|
92
|
+
|
|
93
|
+
```text
|
|
94
|
+
pip install -U --pre warp-lang --extra-index-url=https://pypi.nvidia.com/
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
Note that the nightly builds are built with the CUDA 12 runtime and are not published for macOS.
|
|
98
|
+
|
|
87
99
|
### CUDA Requirements
|
|
88
100
|
|
|
89
101
|
* Warp packages built with CUDA Toolkit 11.x require NVIDIA driver 470 or newer.
|
|
@@ -211,10 +223,10 @@ python -m warp.tests
|
|
|
211
223
|
<table>
|
|
212
224
|
<tbody>
|
|
213
225
|
<tr>
|
|
214
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_dem.py"><img src="https://
|
|
215
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_fluid.py"><img src="https://
|
|
216
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_graph_capture.py"><img src="https://
|
|
217
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_marching_cubes.py"><img src="https://
|
|
226
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_dem.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_dem.png"></a></td>
|
|
227
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_fluid.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_fluid.png"></a></td>
|
|
228
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_graph_capture.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_graph_capture.png"></a></td>
|
|
229
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_marching_cubes.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_marching_cubes.png"></a></td>
|
|
218
230
|
</tr>
|
|
219
231
|
<tr>
|
|
220
232
|
<td align="center">dem</td>
|
|
@@ -223,10 +235,10 @@ python -m warp.tests
|
|
|
223
235
|
<td align="center">marching cubes</td>
|
|
224
236
|
</tr>
|
|
225
237
|
<tr>
|
|
226
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_mesh.py"><img src="https://
|
|
227
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_nvdb.py"><img src="https://
|
|
228
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_raycast.py"><img src="https://
|
|
229
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_raymarch.py"><img src="https://
|
|
238
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_mesh.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_mesh.png"></a></td>
|
|
239
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_nvdb.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_nvdb.png"></a></td>
|
|
240
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_raycast.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_raycast.png"></a></td>
|
|
241
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_raymarch.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_raymarch.png"></a></td>
|
|
230
242
|
</tr>
|
|
231
243
|
<tr>
|
|
232
244
|
<td align="center">mesh</td>
|
|
@@ -235,9 +247,9 @@ python -m warp.tests
|
|
|
235
247
|
<td align="center">raymarch</td>
|
|
236
248
|
</tr>
|
|
237
249
|
<tr>
|
|
238
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_sph.py"><img src="https://
|
|
239
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_torch.py"><img src="https://
|
|
240
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_wave.py"><img src="https://
|
|
250
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_sph.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_sph.png"></a></td>
|
|
251
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_torch.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_torch.png"></a></td>
|
|
252
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/core/example_wave.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/core_wave.png"></a></td>
|
|
241
253
|
<td></td>
|
|
242
254
|
</tr>
|
|
243
255
|
<tr>
|
|
@@ -254,10 +266,10 @@ python -m warp.tests
|
|
|
254
266
|
<table>
|
|
255
267
|
<tbody>
|
|
256
268
|
<tr>
|
|
257
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_diffusion_3d.py"><img src="https://
|
|
258
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_mixed_elasticity.py"><img src="https://
|
|
259
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_apic_fluid.py"><img src="https://
|
|
260
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_streamlines.py"><img src="https://
|
|
269
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_diffusion_3d.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_diffusion_3d.png"></a></td>
|
|
270
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_mixed_elasticity.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_mixed_elasticity.png"></a></td>
|
|
271
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_apic_fluid.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_apic_fluid.png"></a></td>
|
|
272
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_streamlines.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_streamlines.png"></a></td>
|
|
261
273
|
</tr>
|
|
262
274
|
<tr>
|
|
263
275
|
<td align="center">diffusion 3d</td>
|
|
@@ -266,10 +278,10 @@ python -m warp.tests
|
|
|
266
278
|
<td align="center">streamlines</td>
|
|
267
279
|
</tr>
|
|
268
280
|
<tr>
|
|
269
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_convection_diffusion.py"><img src="https://
|
|
270
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_navier_stokes.py"><img src="https://
|
|
271
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_burgers.py"><img src="https://
|
|
272
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_magnetostatics.py"><img src="https://
|
|
281
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_convection_diffusion.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_convection_diffusion.png"></a></td>
|
|
282
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_navier_stokes.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_navier_stokes.png"></a></td>
|
|
283
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_burgers.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_burgers.png"></a></td>
|
|
284
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/fem/example_magnetostatics.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/fem_magnetostatics.png"></a></td>
|
|
273
285
|
</tr>
|
|
274
286
|
<tr>
|
|
275
287
|
<td align="center">convection diffusion</td>
|
|
@@ -285,10 +297,10 @@ python -m warp.tests
|
|
|
285
297
|
<table>
|
|
286
298
|
<tbody>
|
|
287
299
|
<tr>
|
|
288
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_bounce.py"><img src="https://
|
|
289
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_cloth_throw.py"><img src="https://
|
|
290
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_diffray.py"><img src="https://
|
|
291
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_drone.py"><img src="https://
|
|
300
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_bounce.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_bounce.png"></a></td>
|
|
301
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_cloth_throw.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_cloth_throw.png"></a></td>
|
|
302
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_diffray.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_diffray.png"></a></td>
|
|
303
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_drone.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_drone.png"></a></td>
|
|
292
304
|
</tr>
|
|
293
305
|
<tr>
|
|
294
306
|
<td align="center">bounce</td>
|
|
@@ -297,16 +309,16 @@ python -m warp.tests
|
|
|
297
309
|
<td align="center">drone</td>
|
|
298
310
|
</tr>
|
|
299
311
|
<tr>
|
|
300
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_inverse_kinematics.py"><img src="https://
|
|
301
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_spring_cage.py"><img src="https://
|
|
302
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_trajectory.py"><img src="https://
|
|
303
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/
|
|
312
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_inverse_kinematics.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_inverse_kinematics.png"></a></td>
|
|
313
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_spring_cage.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_spring_cage.png"></a></td>
|
|
314
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_trajectory.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_trajectory.png"></a></td>
|
|
315
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/optim/example_softbody_properties.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/optim_softbody_properties.png"></a></td>
|
|
304
316
|
</tr>
|
|
305
317
|
<tr>
|
|
306
318
|
<td align="center">inverse kinematics</td>
|
|
307
319
|
<td align="center">spring cage</td>
|
|
308
320
|
<td align="center">trajectory</td>
|
|
309
|
-
<td align="center">
|
|
321
|
+
<td align="center">soft body properties</td>
|
|
310
322
|
</tr>
|
|
311
323
|
</tbody>
|
|
312
324
|
</table>
|
|
@@ -316,10 +328,10 @@ python -m warp.tests
|
|
|
316
328
|
<table>
|
|
317
329
|
<tbody>
|
|
318
330
|
<tr>
|
|
319
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cartpole.py"><img src="https://
|
|
320
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cloth.py"><img src="https://
|
|
321
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_granular.py"><img src="https://
|
|
322
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_granular_collision_sdf.py"><img src="https://
|
|
331
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cartpole.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_cartpole.png"></a></td>
|
|
332
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cloth.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_cloth.png"></a></td>
|
|
333
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_granular.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_granular.png"></a></td>
|
|
334
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_granular_collision_sdf.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_granular_collision_sdf.png"></a></td>
|
|
323
335
|
</tr>
|
|
324
336
|
<tr>
|
|
325
337
|
<td align="center">cartpole</td>
|
|
@@ -328,10 +340,10 @@ python -m warp.tests
|
|
|
328
340
|
<td align="center">granular collision sdf</td>
|
|
329
341
|
</tr>
|
|
330
342
|
<tr>
|
|
331
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_jacobian_ik.py"><img src="https://
|
|
332
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_quadruped.py"><img src="https://
|
|
333
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_chain.py"><img src="https://
|
|
334
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_contact.py"><img src="https://
|
|
343
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_jacobian_ik.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_jacobian_ik.png"></a></td>
|
|
344
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_quadruped.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_quadruped.png"></a></td>
|
|
345
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_chain.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_rigid_chain.png"></a></td>
|
|
346
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_contact.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_rigid_contact.png"></a></td>
|
|
335
347
|
</tr>
|
|
336
348
|
<tr>
|
|
337
349
|
<td align="center">jacobian ik</td>
|
|
@@ -340,10 +352,10 @@ python -m warp.tests
|
|
|
340
352
|
<td align="center">rigid contact</td>
|
|
341
353
|
</tr>
|
|
342
354
|
<tr>
|
|
343
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_force.py"><img src="https://
|
|
344
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_gyroscopic.py"><img src="https://
|
|
345
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_soft_contact.py"><img src="https://
|
|
346
|
-
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_soft_body.py"><img src="https://
|
|
355
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_force.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_rigid_force.png"></a></td>
|
|
356
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_gyroscopic.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_rigid_gyroscopic.png"></a></td>
|
|
357
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_rigid_soft_contact.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_rigid_soft_contact.png"></a></td>
|
|
358
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_soft_body.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_soft_body.png"></a></td>
|
|
347
359
|
</tr>
|
|
348
360
|
<tr>
|
|
349
361
|
<td align="center">rigid force</td>
|
|
@@ -351,6 +363,35 @@ python -m warp.tests
|
|
|
351
363
|
<td align="center">rigid soft contact</td>
|
|
352
364
|
<td align="center">soft body</td>
|
|
353
365
|
</tr>
|
|
366
|
+
<tr>
|
|
367
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/sim/example_cloth_self_contact.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/sim_example_cloth_self_contact.png"></a></td>
|
|
368
|
+
<td></td>
|
|
369
|
+
<td></td>
|
|
370
|
+
<td></td>
|
|
371
|
+
</tr>
|
|
372
|
+
<tr>
|
|
373
|
+
<td align="center">cloth self contact</td>
|
|
374
|
+
<td align="center"></td>
|
|
375
|
+
<td align="center"></td>
|
|
376
|
+
<td align="center"></td>
|
|
377
|
+
</tr>
|
|
378
|
+
</tbody>
|
|
379
|
+
</table>
|
|
380
|
+
|
|
381
|
+
### warp/examples/tile
|
|
382
|
+
|
|
383
|
+
<table>
|
|
384
|
+
<tbody>
|
|
385
|
+
<tr>
|
|
386
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/tile/example_tile_mlp.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/tile_mlp.png"></a></td>
|
|
387
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/tile/example_tile_nbody.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/tile_nbody.png"></a></td>
|
|
388
|
+
<td><a href="https://github.com/NVIDIA/warp/tree/main/warp/examples/tile/example_tile_walker.py"><img src="https://media.githubusercontent.com/media/NVIDIA/warp/refs/heads/main/docs/img/examples/tile_walker.png"></a></td>
|
|
389
|
+
</tr>
|
|
390
|
+
<tr>
|
|
391
|
+
<td align="center">mlp</td>
|
|
392
|
+
<td align="center">nbody</td>
|
|
393
|
+
<td align="center">walker</td>
|
|
394
|
+
</tr>
|
|
354
395
|
</tbody>
|
|
355
396
|
</table>
|
|
356
397
|
|