Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Notes] MJX Support #40

Open
hello-robot-shehab opened this issue Mar 27, 2025 · 0 comments
Open

[Notes] MJX Support #40

hello-robot-shehab opened this issue Mar 27, 2025 · 0 comments
Labels
documentation Improvements or additions to documentation enhancement New feature or request

Comments

@hello-robot-shehab
Copy link
Contributor

hello-robot-shehab commented Mar 27, 2025

MJX (comparable to Nvidia Warp) allows Mujoco to run on the GPU using the JAX framework.

Using MJX allows for parallel training in multiple simulation environments (instead of just the one Mujoco instance running on CPU).

Hello Robot Stretch is on the Deepmind Mujoco Menagerie, however, it is not listed as a mobile manipulator with MJX support.

Implementation Challenges

Missing Feature 1: Cylinder collisions

At the time of writing, non of the other mobile manipulators listed on the menagerie have mjx support.

This is likely due to MJX not supporting Cylinder-Mesh collisions, which prevent wheeled robots from being simulated.

This is discussed here: google-deepmind/mujoco#2420.

We attempted replacing the cylindrical-collision shape on the wheels with a cylindrical mesh, however, the robot's movement is very bumpy because of the tessellations at the surface of the cylinder.

Note: The collision driver implements Cylinder-Cylinder and Sphere-Mesh collisions.

Limited Support: GPU Rendering

According the the mujoco docs, we should use madrona_mjx for vision RL training, because MJX does not have a .render() method to render cameras on the GPU. Rendering cameras on CPU would be compute intensive and defeat the point of using MJX in the first place.

Build Madrona-MJX from source by running:
```
git clone https://github.com/shacklettbp/madrona_mjx.git

cd madrona_mjx
git submodule update --init --recursive
mkdir build
cd build
cmake -DLOAD_VULKAN=OFF ..
make -j

cd ..
uv pip install -e .
```

Madrona tutorial: https://colab.research.google.com/github/google-deepmind/mujoco_playground/blob/main/learning/notebooks/training_vision_2.ipynb

However, this only works on machines with CUDA. We attempted to use this on a Mac (Metal series) and it does not work.

Limited support MacOS Metal:

Jax Metal (https://developer.apple.com/metal/jax/) seems to be missing a lot of features from the regular Jax implementations. Therefore, when trying to run any of the MJX tutorials after running uv pip install jax-metal yields this error: error: failed to legalize operation 'mhlo.reduce’, which might be related to this: Which may be related to: jax-ml/jax#17490

Missing Feature 2: multiccd flag

We are currently using the multiccd flag in the stretch.xml MJCF file. However, we get a NotImplementedError when we try to use this flag in MJX.

Meshes are too big

For some meshes, we get the following error:

Mesh "cylinder_object" has a coplanar face with more than 20 vertices.
Mesh "link_head_10" has a coplanar face with more than 20 vertices.
Mesh "laser" has a coplanar face with more than 20 vertices.
Mesh "cylinder_wheel" has a coplanar face with more than 20 vertices.
Mesh "link_lift_0" has a coplanar face with more than 20 vertices.
Mesh "link_lift_8" has a coplanar face with more than 20 vertices.
Mesh "link_lift_9" has a coplanar face with more than 20 vertices.
Mesh "link_arm_l0_0" has a coplanar face with more than 20 vertices.
Mesh "link_arm_l0_2" has a coplanar face with more than 20 vertices.
Mesh "link_wrist_yaw" has a coplanar face with more than 20 vertices.
Mesh "link_DW3_wrist_yaw_bottom" has a coplanar face with more than 20 vertices.
Mesh "link_DW3_wrist_pitch" has a coplanar face with more than 20 vertices.
Mesh "link_DW3_wrist_quick_connect" has a coplanar face with more than 20 vertices.
Mesh "link_SG3_gripper_body" has a coplanar face with more than 20 vertices.
Mesh "link_d405" has a coplanar face with more than 20 vertices.
Mesh "link_head_pan_1" has a coplanar face with more than 20 vertices.
Mesh "link_head_tilt_0" has a coplanar face with more than 20 vertices.
Mesh "link_head_tilt_1" has a coplanar face with more than 20 vertices.


All of them had these, so I stripped it out to make the output smaller:
stretch_mujoco/.venv/lib/python3.13/site-packages/mujoco/mjx/_src/mesh.py:141: UserWarning:
This may lead to performance issues and inaccuracies in collision detection. Consider decimating the mesh.

We noticed that when we remove the collision class (e.g. <geom mesh="link_lift_8" class="collision" mass="1.5"/> and move the mass to the visual class, the errors go away, but we can't do that for all of the meshes since some of them actually need to be involved in collision.

Note that some of these meshes are really thin, and should only be used for aesthetics:

Image

Resources and misc notes

Code implementation

MjxEnv

To create a training task, it is recommended to implement the MjxEnv abstract class, so the MJX and dm_control can use their internal mechanisms for training.

There is an unfinished branch that started this work of implementing MjxEnv:

However, I do not think this is completely necessary if a PPO implementation, independent of dm_control's implementations, is used.

Forward/Inverse Kinematics

The FK/IK implementation here: https://github.com/hello-robot/stretch_mujoco/blob/feature/mjx/stretch_mujoco/mjx/pinocchio_ik_solver.py has never been tested, and I am unsure if it will run. It was adapted from https://github.com/hello-robot/stretch_ai/blob/main/src/stretch/motion/pinocchio_ik_solver.py.

pyproject.toml

Add these dependencies to the [project.optional-dependencies] section and then run uv pip install -e ".[mjx]" to install them.

mjx = [
    "ipykernel",
    "ipython",
    "playground", 
    "brax", 
    "flax", 
    "mediapy"
]

Notebooks

Two notebooks were created in this branch:

@hello-robot-shehab hello-robot-shehab added documentation Improvements or additions to documentation enhancement New feature or request labels Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant