Skip to content

Commit c947d79

Browse files
authored
Merge pull request #29 from NVlabs/gear-sonic
docs update
2 parents 8c5c008 + ca470c9 commit c947d79

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/source/references/decoupled_wbc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Decoupled WBC (N1.5 / N1.6)
1+
# Decoupled WBC
22

33
Software stack for loco-manipulation experiments across multiple humanoid platforms, with primary support for the Unitree G1. This repository provides whole-body control policies, a teleoperation stack, and a data exporter.
44

gear_sonic/scripts/pico_manager_thread_server.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,11 @@ def _process_3pt_pose(smpl_pose_np):
231231
orientations.
232232
"""
233233

234+
# Defensive copy: _compute_rel_transform modifies pose[:3] in-place, which would
235+
# corrupt the caller's array (e.g. PicoReader._latest) and cause wrong results
236+
# if the same sample is processed more than once.
237+
smpl_pose_np = smpl_pose_np.copy()
238+
234239
# =========================================================================
235240
# STEP 1: Transform all joints from Unity frame to robot frame
236241
# =========================================================================

0 commit comments

Comments
 (0)