快速机器人 Kinematics 和动态在 JAX
frax: Fast Robot Kinematics and Dynamics in JAXfrax is a fast kinematics and dynamics library in pure Python, using JAX for JIT-compilation and automatic differentiation.
With frax, you can design high-performance inverse-kinematics and inverse-dynamics controllers at the speed of Pinocchio, ease of use of Python, and differentiation and parallelization-compatibility of MJX.
On CPU, you can expect compute times for typical controllers in the low microseconds range (~25-100 kHz), and on GPU or TPU, frax can compute dynamics terms at upwards of 100 million computations per second, depending on your batch size.
[!IMPORTANT]
fraxis actively under development and internal operations may change between beta versions
pip install frax
git clone https://github.com/danielpmorton/frax
cd frax
pip install -e .
[!TIP] If you are running on CPU, I highly recommend using JAX version
0.4.30for the best possible performance. See below for additional performance tips!
If you're installing from source, I highly recommend using a uv-managed virtual environment. In this case, pip commands can be replaced with uv pip
For more fine-grained control over the JAX install for GPU/TPU, you can also use the [cuda12], [cuda13], or [tpu] tags.
To run the examples, please install from source with the [examples] tag, i.e. pip install -e ".[examples]"
frax's "hello world": Compute your robot's mass matrix (AKA joint-space inertia matrix)
import frax
import numpy as np
jax.config.update("jax_enable_x64", True) # Recommmended for high accuracy
robot = frax.Robot("path/to/your/robot.urdf")
q = np.zeros(robot.num_joints)
M = robot.mass_matrix(q)
print(M)
For any operations with frax and jax more broadly, you should wrap your code in a jitted region, for instance,
@jax.jit
def jit_mass_matrix(q_):
return robot.mass_matrix(q_)
M = jit_mass_matrix(q)
print(M)
See the Performance Tips section below for more advice on making your code fast.
Many more kinematics and dynamics terms are available (joint/link/frame transforms and Jacobians, gravity vector, centrifugal/coriolis forces, and many other values relevant to robot control). We also provide Manipulator and Humanoid classes for useful helper functions based on your robot's form-factor, and frax comes pre-loaded with the Franka Panda and Unitree G1.
More advanced and interactive demos are included in the examples directory, as seen below
[!NOTE] Remember to install from source with the
[examples]dependencies
Examples of using frax for typical robot controllers:
examples/panda_diff_ik_demo.pyexamples/panda_osc_demo.pyWhen these scripts are launched in trajectory mode, you'll see the following sinusoidal tracking demo:
https://github.com/user-attachments/assets/7b471496-2124-4063-953a-d7f25776ed5b
This can also be launched in manual mode, for interactive mouse control of the target.
However, these controllers are fairly simple, and Pinocchio or MuJoCo could have been used to give the same Jacobians and inertial values. The real benefit of frax comes from the automatic differentiation through the kinematics and dynamics for flexible controller design with minimal manual Jacobian derivations. In the below demo (examples/panda_oscbf_demo.py), I've reimplemented OSCBF, which uses JAX's autodiff under the hood to form the CBF constraints.
https://github.com/user-attachments/assets/5ea84ec0-6b67-40fd-a974-5850499df15d
Here, we're enforcing
... all with easy prototyping of the constraint design, in simple functions of the robot kinematics and dynamics (such as, robot.ee_manipulability_index(q) >= eps).
frax's collision methods, you must first define a spherized collision model of your robot (or, use our pre-built collision models for the Franka Panda/FR3 and the Unitree G1). Check out this page for more info!fixed so that they can be ignored, and so their child links' inertias can be fused into the parent. In the future, we will allow for fixing joints programmatically.0.4.30. This is due to a degradation in the XLA compiler performance in recent JAX versions, but the JAX/XLA team is currently working on addressing this: see https://github.com/jax-ml/jax/issues/26021jax.config.update("jax_enable_x64", True) or by setting the environment variable JAX_ENABLE_X64=True. This is especially the case if you are running on CPU, whereas on GPU, this is a more nuanced decision. Generally, running in double precision on GPU will lead to about a 2-6x slowdown, depending on your batch size, because GPUs are so well-suited for single-precision operations. This choice will be application-dependent -- you might need high precision, or maybe you can get away with being a little less precise.frax, it's better to configure JAX/XLA to run on a single thread. Generally, for robot controller design, the matrices involved are not quite large enough to require multithreading (unless you are doing something more parallelizable like MPPI). In this case, restricting it to a single thread can improve performance and also make it easier to share CPU resources across processes (multiple ROS nodes, for instance). You can use source scripts/setup_cpu_env.sh to load my recommended config, or feel free to modify as needed. jax.config.update("jax_platforms", "cpu") or set the environment variable JAX_PLATFORMS=cpu.frax by default does not wrap every method with a @jax.jit decorator. When calling any JAX code, add a JIT decorator to the top-most function call to ensure the best performance. numpy operations and arrays. Inside a jitted region, use jax.numpy.For general advice on JAX, check out the quickstart guide and the sharp bits.
frax is (by design) more minimal than other libraries -- resulting in high performance on the restricted setting of interest. But, there are a few more features I'd like to add in the future:
The following features are unplanned:
frax might not serve your needs exactly -- that's fine! Here are some other useful repositories to look at
@article{morton2026frax,
author={Morton, Daniel and Pavone, Marco},
title={frax: Fast Robot Kinematics and Dynamics in JAX},
journal={arXiv preprint arXiv:2604.04310},
year={2026},
note={ICRA 2026 Workshop on Frontiers of Optimization for Robotics},
}
暂无开放 Issues,或尚未同步最近议题。