Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Fixed
^^^^^

* Fixed PhysX GPU buffer capacities for the ARL Robot 1 navigation task.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,11 @@ def __post_init__(self):
static_friction=1.0,
dynamic_friction=1.0,
)
self.sim.physics = PhysxCfg(gpu_max_rigid_patch_count=2**21)
self.sim.physics = PhysxCfg(
gpu_max_rigid_contact_count=2**25,
gpu_max_rigid_patch_count=2**23,
gpu_found_lost_pairs_capacity=2**23,
)
# update sensor update periods
# we tick all the sensors based on the smallest update period (physics update period)
if self.scene.contact_forces is not None:
Expand Down
Loading