mani-skill-nightly 2025.9.19.39__py3-none-any.whl → 2025.10.4.428__py3-none-any.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 mani-skill-nightly might be problematic. Click here for more details.
- mani_skill/utils/structs/actor.py +1 -1
- mani_skill/utils/structs/base.py +5 -4
- mani_skill/utils/structs/link.py +1 -1
- {mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/METADATA +1 -1
- {mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/RECORD +9 -9
- {mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/LICENSE +0 -0
- {mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/LICENSE-3RD-PARTY +0 -0
- {mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/WHEEL +0 -0
- {mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/top_level.txt +0 -0
|
@@ -362,7 +362,7 @@ class Actor(PhysxRigidDynamicComponentStruct[sapien.Entity]):
|
|
|
362
362
|
raw_pose = new_pose
|
|
363
363
|
return Pose.create(raw_pose)
|
|
364
364
|
else:
|
|
365
|
-
return Pose.create([obj.pose for obj in self._objs])
|
|
365
|
+
return Pose.create([obj.pose for obj in self._objs], device=self.device)
|
|
366
366
|
|
|
367
367
|
@pose.setter
|
|
368
368
|
def pose(self, arg1: Union[Pose, sapien.Pose, Array]) -> None:
|
mani_skill/utils/structs/base.py
CHANGED
|
@@ -209,7 +209,8 @@ class PhysxRigidBodyComponentStruct(PhysxRigidBaseComponentStruct[T], Generic[T]
|
|
|
209
209
|
return self._body_data[self._body_data_index, 10:13]
|
|
210
210
|
else:
|
|
211
211
|
return torch.tensor(
|
|
212
|
-
np.array([body.angular_velocity for body in self._bodies])
|
|
212
|
+
np.array([body.angular_velocity for body in self._bodies]),
|
|
213
|
+
device=self.device
|
|
213
214
|
)
|
|
214
215
|
|
|
215
216
|
@property
|
|
@@ -264,7 +265,7 @@ class PhysxRigidBodyComponentStruct(PhysxRigidBaseComponentStruct[T], Generic[T]
|
|
|
264
265
|
# for link entities, namely 7:10 was angular velocity and 10:13 was linear velocity. SAPIEN 3.0.0 and above fixes this
|
|
265
266
|
return self._body_data[self._body_data_index, 7:10]
|
|
266
267
|
else:
|
|
267
|
-
return torch.from_numpy(self._bodies[0].linear_velocity[None, :])
|
|
268
|
+
return torch.from_numpy(self._bodies[0].linear_velocity[None, :]).to(self.device)
|
|
268
269
|
|
|
269
270
|
@property
|
|
270
271
|
def mass(self) -> torch.Tensor:
|
|
@@ -356,7 +357,7 @@ class PhysxRigidDynamicComponentStruct(PhysxRigidBodyComponentStruct[T], Generic
|
|
|
356
357
|
if self.scene.gpu_sim_enabled:
|
|
357
358
|
return self._body_data[self._body_data_index, 10:13]
|
|
358
359
|
else:
|
|
359
|
-
return torch.from_numpy(self._bodies[0].angular_velocity[None, :])
|
|
360
|
+
return torch.from_numpy(self._bodies[0].angular_velocity[None, :], device=self.device)
|
|
360
361
|
|
|
361
362
|
@angular_velocity.setter
|
|
362
363
|
def angular_velocity(self, arg1: Array):
|
|
@@ -425,7 +426,7 @@ class PhysxRigidDynamicComponentStruct(PhysxRigidBodyComponentStruct[T], Generic
|
|
|
425
426
|
return self._body_data[self._body_data_index, 7:10]
|
|
426
427
|
else:
|
|
427
428
|
return torch.tensor(
|
|
428
|
-
np.array([body.linear_velocity for body in self._bodies])
|
|
429
|
+
np.array([body.linear_velocity for body in self._bodies]), device=self.device
|
|
429
430
|
)
|
|
430
431
|
|
|
431
432
|
@linear_velocity.setter
|
mani_skill/utils/structs/link.py
CHANGED
|
@@ -244,7 +244,7 @@ class Link(PhysxRigidBodyComponentStruct[physx.PhysxArticulationLinkComponent]):
|
|
|
244
244
|
raw_pose = new_pose
|
|
245
245
|
return Pose.create(raw_pose)
|
|
246
246
|
else:
|
|
247
|
-
return Pose.create([obj.entity_pose for obj in self._objs])
|
|
247
|
+
return Pose.create([obj.entity_pose for obj in self._objs], device=self.device)
|
|
248
248
|
|
|
249
249
|
@pose.setter
|
|
250
250
|
def pose(self, arg1: Union[Pose, sapien.Pose, Array]) -> None:
|
{mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/RECORD
RENAMED
|
@@ -810,13 +810,13 @@ mani_skill/utils/scene_builder/table/assets/Dining_Table_204_1.glb,sha256=IleHi3
|
|
|
810
810
|
mani_skill/utils/scene_builder/table/assets/table.glb,sha256=yw69itZDjBFg8JXZAr9VQV-dZD-MaZChhqBSJR_nlRo,3891588
|
|
811
811
|
mani_skill/utils/structs/README.md,sha256=qnYKimp_ZkgNcduURrYQxVTimNmq_usDMKoQ8VtMdCs,286
|
|
812
812
|
mani_skill/utils/structs/__init__.py,sha256=BItR3Xe0z6xCrMHAEaH0AAAVyeonsQ3q-DJUyRUibAA,524
|
|
813
|
-
mani_skill/utils/structs/actor.py,sha256=
|
|
813
|
+
mani_skill/utils/structs/actor.py,sha256=CoJDsFCn_WA_zDV0SRWNCaYaO5oqjdkVrD8d-2HGaVc,17414
|
|
814
814
|
mani_skill/utils/structs/articulation.py,sha256=gmjIxscXwZh4yhPAHzUslnIzkZ2daW8b3yV_sVUaQoA,38491
|
|
815
815
|
mani_skill/utils/structs/articulation_joint.py,sha256=MPPcThaKAvEQm62ci2okN8CgSOYjxERsa1zjea-3YKo,12972
|
|
816
|
-
mani_skill/utils/structs/base.py,sha256=
|
|
816
|
+
mani_skill/utils/structs/base.py,sha256=DKnRJ_ektwm-2yEFP2oa7uRrmqzpTwuV146srdaW3Mo,18618
|
|
817
817
|
mani_skill/utils/structs/decorators.py,sha256=Lv6wQ989dOnreo2tB-qopDnkeBp_jsn1pmfUR-OY8VQ,535
|
|
818
818
|
mani_skill/utils/structs/drive.py,sha256=UPQDkGbXS-CMRsZ1MHCb9s1vfAo5nqsywF83wKBVzSY,7505
|
|
819
|
-
mani_skill/utils/structs/link.py,sha256=
|
|
819
|
+
mani_skill/utils/structs/link.py,sha256=Mqd75i8DNLMi6dr7VJt48f6YTPKXRUfYMqKuE2QrLjo,13812
|
|
820
820
|
mani_skill/utils/structs/pose.py,sha256=76Sjrs-y3f8YhnuqMZNih-NxcnhnfomIbnNW1SWqK6A,11938
|
|
821
821
|
mani_skill/utils/structs/render_camera.py,sha256=cNdi_DMsrHDqO-vHjwEIMVFxVvPHNTmVZe0sCQ1XMbI,12599
|
|
822
822
|
mani_skill/utils/structs/types.py,sha256=XnrIjvv-W41iNDVkCzXdHXa7SogfZMLaKozK213zSJ8,3966
|
|
@@ -837,9 +837,9 @@ mani_skill/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
837
837
|
mani_skill/vector/wrappers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
838
838
|
mani_skill/vector/wrappers/gymnasium.py,sha256=voHNmYg5Jyy-laMSC2Fd8VggQvhXw3NnfYLbD9QDXAc,7305
|
|
839
839
|
mani_skill/vector/wrappers/sb3.py,sha256=SlXdiEPqcNHYMhJCzA29kBU6zK7DKTe1nc0L6Z3QQtY,4722
|
|
840
|
-
mani_skill_nightly-2025.
|
|
841
|
-
mani_skill_nightly-2025.
|
|
842
|
-
mani_skill_nightly-2025.
|
|
843
|
-
mani_skill_nightly-2025.
|
|
844
|
-
mani_skill_nightly-2025.
|
|
845
|
-
mani_skill_nightly-2025.
|
|
840
|
+
mani_skill_nightly-2025.10.4.428.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
841
|
+
mani_skill_nightly-2025.10.4.428.dist-info/LICENSE-3RD-PARTY,sha256=yXvoAIyaRY7VDFhXV4Ea_Dmd_-IR59yyUy0Scz7eXzY,1604
|
|
842
|
+
mani_skill_nightly-2025.10.4.428.dist-info/METADATA,sha256=GhdVWaTW93SvU1hM3W8LpveH2GwrVdWTF6Kdq2rmjeM,9347
|
|
843
|
+
mani_skill_nightly-2025.10.4.428.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
844
|
+
mani_skill_nightly-2025.10.4.428.dist-info/top_level.txt,sha256=bkBgOVl_MZMoQx2aRFsSFEYlZLxjWlip5vtJ39FB3jA,11
|
|
845
|
+
mani_skill_nightly-2025.10.4.428.dist-info/RECORD,,
|
{mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{mani_skill_nightly-2025.9.19.39.dist-info → mani_skill_nightly-2025.10.4.428.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|