jaxDecomp: JAX Library for 3D Domain Decomposition and Parallel FFTs
Important Version
0.2.0includes a pure JAX backend that no longer requires MPI. For multi-node runs, MPI and NCCL backends are still available through cuDecomp.
JAX reimplementation and bindings for NVIDIA's cuDecomp library (Romero et al. 2022), enabling multi-node parallel FFTs and halo exchanges directly in low-level NCCL/CUDA-Aware MPI from your JAX code.
Important Starting from version 0.2.8, jaxDecomp supports JAX's Shardy partitioner, which can be activated via
jax.config.update('jax_use_shardy_partitioner', True). This partitioner is enabled by default in JAX 0.7.x and later versions. Shardy support is an internal implementation change and users should not expect any behavioral differences outside of what the JAX sharding mechanism provides, as explained in the JAX Shardy migration documentation.
Usage
Below is a simple code snippet illustrating how to perform a 3D FFT on a distributed 3D array, followed by a halo exchange. For demonstration purposes, we force 8 CPU devices via environment variables:
import os
os.environ["XLA_FLAGS"] = "--xla_force_host_platform_device_count=8"
os.environ["JAX_PLATFORM_NAME"] = "cpu"
import jax
from jax.sharding import Mesh, PartitionSpec as P, NamedSharding, AxisType
import jaxdecomp
# Create a 2x4 mesh of devices on CPU
pdims = (2, 4)
mesh = jax.make_mesh(pdims, axis_names=('x', 'y') , axis_types=(AxisType.Auto, AxisType.Auto))
sharding = NamedSharding(mesh, P('x', 'y'))
# Create a random 3D array and enforce sharding
a = jax.random.normal(jax.random.PRNGKey(0), (1024, 1024, 1024))
a = jax.lax.with_sharding_constraint(a, sharding)
# Parallel FFTs
k_array = jaxdecomp.fft.pfft3d(a)
rec_array = jaxdecomp.fft.pifft3d(a)
# Parallel halo exchange
exchanged = jaxdecomp.halo_exchange(a, halo_extents=(16, 16), halo_periods=(True, True))
All these functions are JIT-compatible and support automatic differentiation (with some caveats).
See also:
Important Multi-node FFTs work with both JAX and cuDecomp backends
For CPU with JAX, Multi-node is supported starting JAX v0.5.1 (withgloobackend)
Running on an HPC Cluster
On HPC clusters (e.g., Jean Zay, Perlmutter), you typically launch your script with:
srun python your_script.py
or
mpirun -n 8 python your_script.py
See the Slurm README and template script for more details.
Using cuDecomp (MPI and NCCL)
For other features, compile and install with cuDecomp enabled as described in install:
import jaxdecomp
# Optionally select communication backends (defaults to NCCL)
jaxdecomp.config.update('halo_comm_backend', jaxdecomp.HALO_COMM_MPI)
jaxdecomp.config.update('transpose_comm_backend', jaxdecomp.TRANSPOSE_COMM_MPI_A2A)
# Then specify 'backend="cudecomp"' in your FFT or halo calls:
karray = jaxdecomp.fft.pfft3d(global_array, backend='cudecomp')
recarray = jaxdecomp.fft.pifft3d(karray, backend='cudecomp')
exchanged_array = jaxdecomp.halo_exchange(
padded_array, halo_extents=(16, 16), halo_periods=(True, True), backend='cudecomp'
)
Install
1. Pure JAX Version (Easy / Recommended)
jaxDecomp is on PyPI:
- Install the appropriate JAX wheel:
- GPU:
pip install --upgrade "jax[cuda]"
- CPU:
pip install --upgrade "jax[cpu]"
- GPU:
- Install
jaxdecomp:pip install jaxdecomp
This setup uses the pure-JAX backend—no MPI required.
2. JAX + cuDecomp Backend (Advanced)
If you need to use MPI instead of NCCL for GPU, you can build from GitHub with cuDecomp enabled. This requires the NVIDIA HPC SDK. Ensure nvc, nvc++, and nvcc are in your PATH, CUDA, MPI, and NCCL shared libraries are on LD_LIBRARY_PATH, and set CC=nvc and CXX=nvc++ before building.
pip install -U pip
pip install git+https://github.com/DifferentiableUniverseInitiative/jaxDecomp -Ccmake.define.JD_CUDECOMP_BACKEND=ON
Alternatively, clone the repository locally and install from your checkout:
git clone https://github.com/DifferentiableUniverseInitiative/jaxDecomp.git --recursive
cd jaxDecomp
pip install -U pip
pip install . -Ccmake.define.JD_CUDECOMP_BACKEND=ON
- If CMake cannot find NVHPC, set:
export CMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH:$NVCOMPILERS/$NVARCH/22.9/cmake
and then install again.
If jax complains about incompatiliby with CuSparse or any other library, the easiest way to solve this is by installing jax localy by running pip install jax[cuda-local] and then installing jaxDecomp with cuDecomp support.
Machine-Specific Notes
IDRIS Jean Zay HPE SGI 8600 supercomputer
As of February 2026, loading modules in this exact order works:
module load nvidia-compilers/25.1 cuda/12.6.3 openmpi/4.1.6-cuda nccl/2.26.2-1-cuda cudnn cmake
# Install JAX
pip install --upgrade "jax[cuda-local]"
# Install jaxDecomp with cuDecomp
export CMAKE_PREFIX_PATH=$NVHPC_ROOT/cmake # sometimes needed
pip install git+https://github.com/DifferentiableUniverseInitiative/jaxDecomp -Ccmake.define.JD_CUDECOMP_BACKEND=ON
Note: If using only the pure-JAX backend, you do not need NVHPC.
Important for JeanZay users Make sure to load the correct architucture module before loading the
nvidia-compilersmodule. For example for A100 you need to loadmodule load arch/a100first. You also need to set the CXXFLAGS toexport CXXFLAGS="-tp=zen2 -noswitcherror"if you are using the H100 or A100 partition or if you are using AMD CPUs in general. More info in Jean Zay documentation.
NERSC Perlmutter HPE Cray EX supercomputer
As of November 2022:
module load PrgEnv-nvhpc python
export CRAY_ACCEL_TARGET=nvidia80
# Install JAX
pip install --upgrade "jax[cuda]"
# Install jaxDecomp w/ cuDecomp
export CMAKE_PREFIX_PATH=/opt/nvidia/hpc_sdk/Linux_x86_64/22.5/cmake
pip install git+https://github.com/DifferentiableUniverseInitiative/jaxDecomp -Ccmake.define.JD_CUDECOMP_BACKEND=ON
Backend Configuration (cuDecomp Only)
By default, cuDecomp uses NCCL for inter-device communication. You can customize this at runtime:
import jaxdecomp
# Choose MPI or NVSHMEM for halo and transpose ops
jaxdecomp.config.update('transpose_comm_backend', jaxdecomp.TRANSPOSE_COMM_MPI_A2A)
jaxdecomp.config.update('halo_comm_backend', jaxdecomp.HALO_COMM_MPI)
This can also be managed via environment variables, as described in the docs.
Autotune Computational Mesh (cuDecomp Only)
The cuDecomp library can autotune the partition layout to maximize performance:
automesh = jaxdecomp.autotune(shape=[512,512,512])
# 'automesh' is an optimized partition layout.
# You can then create a JAX Sharding spec from this:
from jax.sharding import PositionalSharding
sharding = PositionalSharding(automesh)
License: This project is licensed under the MIT License.
For more details, see the examples directory and the documentation. Contributions and issues are welcome!
Release files for jaxdecomp 0.3.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jaxdecomp-0.3.2.tar.gz | 43.2 MB | Details |
Built distributions (wheels)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| jaxdecomp-0.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 | Details |
| jaxdecomp-0.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 | Details |
Total release size: 43.4 MB
Release files / jaxdecomp-0.3.2.tar.gz
| Download URL | jaxdecomp-0.3.2.tar.gz |
|---|---|
| Size | 43.2 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ed01ac385f1e594742a1dc6c79124e84183e1c63eb6ed8da0a371f5248a593b6
|
|
BLAKE2b-256 checksum How to use checksums |
45282c9f16670b0cb0f7b0bda2bf7237af7777f88ecd5ed84941a0905f51962f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency logRelease files / jaxdecomp-0.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | jaxdecomp-0.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 117.7 kB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
3cb2220fef0b32ba033e76ab770a650863946029dbfe7d021014caed0ee14c0e
|
|
BLAKE2b-256 checksum How to use checksums |
4123cb9251a33ed05d5b9c3dcfac35c6bf992011600a2d406416e7edaf4683a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency logRelease files / jaxdecomp-0.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | jaxdecomp-0.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 117.7 kB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
d9ec737fe2e9718076926f2c4594ff329328d15ba92140383fff546f51924eb2
|
|
BLAKE2b-256 checksum How to use checksums |
fd13dbde2e94f60536b8abcc1de0fa87447d936d4a551f2fd02abe6322f45d40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency log