Training a model with JAX MaxText for ROCm#
2025-09-11
27 min read time
MaxText is a high-performance, open-source framework built on the Google JAX machine learning library to train LLMs at scale. The MaxText framework for ROCm is an optimized fork of the upstream AI-Hypercomputer/maxtext enabling efficient AI workloads on AMD MI300X series accelerators.
The MaxText for ROCm training Docker image provides a prebuilt environment for training on AMD Instinct MI300X and MI325X accelerators, including essential components like JAX, XLA, ROCm libraries, and MaxText utilities. It includes the following software components:
Software component |
Version |
---|---|
ROCm |
6.4.1 |
JAX |
0.5.0 |
Python |
3.10.12 |
Transformer Engine |
2.1.0+90d703dd |
hipBLASLt |
1.x.x |
Software component |
Version |
---|---|
ROCm |
6.4.1 |
JAX |
0.6.0 |
Python |
3.10.12 |
Transformer Engine |
2.1.0+90d703dd |
hipBLASLt |
1.1.0-499ece1c21 |
Note
Shardy is a new config in JAX 0.6.0. You might get related errors if it’s
not configured correctly. For now you can turn it off by setting
shardy=False
during the training run. You can also follow the migration
guide to enable
it.
The provided multi-node training scripts in this documentation are not currently supported with JAX 0.6.0. For multi-node training, use the JAX 0.5.0 Docker image.
MaxText with on ROCm provides the following key features to train large language models efficiently:
Transformer Engine (TE)
Flash Attention (FA) 3 – with or without sequence input packing
GEMM tuning
Multi-node support
NANOO FP8 quantization support
Supported models#
The following models are pre-optimized for performance on AMD Instinct MI300 series accelerators. Some instructions, commands, and available training configurations in this documentation might vary by model – select one to get started.
Note
Some models, such as Llama 3, require an external license agreement through a third party (for example, Meta).
System validation#
Before running AI workloads, it’s important to validate that your AMD hardware is configured correctly and performing optimally.
If you have already validated your system settings, including aspects like NUMA auto-balancing, you can skip this step. Otherwise, complete the procedures in the System validation and optimization guide to properly configure your system settings before starting training.
To test for optimal performance, consult the recommended System health benchmarks. This suite of tests will help you verify and fine-tune your system’s configuration.
Environment setup#
This Docker image is optimized for specific model configurations outlined as follows. Performance can vary for other training workloads, as AMD doesn’t validate configurations and run conditions outside those described.
Multi-node setup#
For multi-node environments, ensure you have all the necessary packages for your network device, such as, RDMA. If you’re not using a multi-node setup with RDMA, skip ahead to Benchmarking.
Install the following packages to build and install the RDMA driver.
sudo apt install iproute2 -y sudo apt install -y linux-headers-"$(uname-r)" libelf-dev sudo apt install -y gcc make libtool autoconf librdmacm-dev rdmacm-utils infiniband-diags ibverbs-utils perftest ethtool libibverbs-dev rdma-core strace libibmad5 libibnetdisc5 ibverbs-providers libibumad-dev libibumad3 libibverbs1 libnl-3-dev libnl-route-3-dev
Refer to your NIC manufacturer’s documentation for further steps on compiling and installing the RoCE driver. For example, for Broadcom, see Compiling Broadcom NIC software from source in Ethernet networking guide for AMD Instinct MI300X GPU clusters.
Set the following environment variables.
Master address
Change
localhost
to the master node’s resolvable hostname or IP address:export MASTER_ADDR="${MASTER_ADDR:-localhost}"
Number of nodes
Set the number of nodes you want to train on (for example,
2
,4
, or8
):export NNODES="${NNODES:-1}"
Node ranks
Set the rank of each node (
0
for master,1
for the first worker node, and so on) Node ranks should be unique across all nodes in the cluster.export NODE_RANK="${NODE_RANK:-0}"
Network interface
Update the network interface in the script to match your system’s network interface. To find your network interface, run the following (outside of any Docker container):
ip a
Look for an active interface with an IP address in the same subnet as your other nodes. Then, update the following variable in the script, for example:
export NCCL_SOCKET_IFNAME=ens50f0np0
This variable specifies which network interface to use for inter-node communication. Setting this variable to the incorrect interface can result in communication failures or significantly reduced performance.
RDMA interface
Ensure the required packages are installed on all nodes. Then, set the RDMA interfaces to use for communication.
# If using Broadcom NIC export NCCL_IB_HCA=rdma0,rdma1,rdma2,rdma3,rdma4,rdma5,rdma6,rdma7 # If using Mellanox NIC export NCCL_IB_HCA=mlx5_0,mlx5_1,mlx5_2,mlx5_3,mlx5_4,mlx5_5,mlx5_8,mlx5_9
Benchmarking#
Once the setup is complete, choose between two options to reproduce the benchmark results:
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the Llama 3.3 70B model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_llama-3.3-70b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_llama-3.3-70b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m Llama-3.3-70B
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-3.3-70B
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-3.3-70B -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
For multi-node training examples, choose a model from Supported models with an available multi-node training script.
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the Llama 3.1 8B model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_llama-3.1-8b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_llama-3.1-8b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m Llama-3.1-8B
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-3.1-8B
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-3.1-8B -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
For multi-node training examples, choose a model from Supported models with an available multi-node training script.
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the Llama 3.1 70B model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_llama-3.1-70b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_llama-3.1-70b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m Llama-3.1-70B
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-3.1-70B
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-3.1-70B -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
For multi-node training examples, choose a model from Supported models with an available multi-node training script.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Multi-node training
The following examples use SLURM to run on multiple nodes.
Note
The following scripts will launch the Docker container and run the benchmark. Run them outside of any Docker container.
Make sure
$HF_HOME
is set before running the test. See ROCm benchmarking for more details on downloading the Llama models before running the benchmark.To run multi-node training for Llama 3 8B, use the multi-node training script under the
scripts/jax-maxtext/gpu-rocm/
directory.Run the multi-node training benchmark script.
sbatch -N <num_nodes> llama3_8b_multinode.sh
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Multi-node training
The following examples use SLURM to run on multiple nodes.
Note
The following scripts will launch the Docker container and run the benchmark. Run them outside of any Docker container.
Make sure
$HF_HOME
is set before running the test. See ROCm benchmarking for more details on downloading the Llama models before running the benchmark.To run multi-node training for Llama 3 70B, use the multi-node training script under the
scripts/jax-maxtext/gpu-rocm/
directory.Run the multi-node training benchmark script.
sbatch -N <num_nodes> llama3_70b_multinode.sh
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the Llama 2 7B model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_llama-2-7b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_llama-2-7b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m Llama-2-7B
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-2-7B
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-2-7B -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
The following examples use SLURM to run on multiple nodes.
Note
The following scripts will launch the Docker container and run the benchmark. Run them outside of any Docker container.
Make sure
$HF_HOME
is set before running the test. See ROCm benchmarking for more details on downloading the Llama models before running the benchmark.To run multi-node training for Llama 2 7B, use the multi-node training script under the
scripts/jax-maxtext/gpu-rocm/
directory.Run the multi-node training benchmark script.
sbatch -N <num_nodes> llama2_7b_multinode.sh
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the Llama 2 70B model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_llama-2-70b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_llama-2-70b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m Llama-2-70B
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-2-70B
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m Llama-2-70B -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
The following examples use SLURM to run on multiple nodes.
Note
The following scripts will launch the Docker container and run the benchmark. Run them outside of any Docker container.
Make sure
$HF_HOME
is set before running the test. See ROCm benchmarking for more details on downloading the Llama models before running the benchmark.To run multi-node training for Llama 2 70B, use the multi-node training script under the
scripts/jax-maxtext/gpu-rocm/
directory.Run the multi-node training benchmark script.
sbatch -N <num_nodes> llama2_70b_multinode.sh
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the DeepSeek-V2-Lite (16B) model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_deepseek-v2-lite-16b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_deepseek-v2-lite-16b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m DeepSeek-V2-lite
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m DeepSeek-V2-lite
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m DeepSeek-V2-lite -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
For multi-node training examples, choose a model from Supported models with an available multi-node training script.
Clone the ROCm Model Automation and Dashboarding (ROCm/MAD) repository to a local directory and install the required packages on the host machine.
git clone https://github.com/ROCm/MAD cd MAD pip install -r requirements.txt
Use this command to run the performance benchmark test on the Mixtral 8x7B model using one GPU with the
bf16
data type on the host machine.export MAD_SECRETS_HFTOKEN="your personal Hugging Face token to access gated models" madengine run \ --tags jax_maxtext_train_mixtral-8x7b \ --keep-model-dir \ --live-output \ --timeout 28800
MAD launches a Docker container with the name
container_ci-jax_maxtext_train_mixtral-8x7b
. The latency and throughput reports of the
model are collected in the following path: ~/MAD/perf.csv/
.
Download the Docker image and required scripts
Run the JAX MaxText benchmark tool independently by starting the Docker container as shown in the following snippet.
docker pull rocm/jax-training:maxtext-v25.7
docker pull rocm/jax-training:maxtext-v25.7-jax060
Single node training
Set up environment variables.
export MAD_SECRETS_HFTOKEN=<Your Hugging Face token> export HF_HOME=<Location of saved/cached Hugging Face models>
MAD_SECRETS_HFTOKEN
is your Hugging Face access token to access models, tokenizers, and data. See User access tokens.HF_HOME
is wherehuggingface_hub
will store local data. See huggingface_hub CLI. If you already have downloaded or cached Hugging Face artifacts, set this variable to that path. Downloaded files typically get cached to~/.cache/huggingface
.Launch the Docker container.
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7
docker run -it \ --device=/dev/dri \ --device=/dev/kfd \ --network host \ --ipc host \ --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --privileged \ -v $HOME:$HOME \ -v $HOME/.ssh:/root/.ssh \ -v $HF_HOME:/hf_cache \ -e HF_HOME=/hf_cache \ -e MAD_SECRETS_HFTOKEN=$MAD_SECRETS_HFTOKEN --shm-size 64G \ --name training_env \ rocm/jax-training:maxtext-v25.7-jax060
In the Docker container, clone the ROCm MAD repository and navigate to the benchmark scripts directory at
MAD/scripts/jax-maxtext
.git clone https://github.com/ROCm/MAD cd MAD/scripts/jax-maxtext
Run the setup scripts to install libraries and datasets needed for benchmarking.
./jax-maxtext_benchmark_setup.sh -m Mixtral-8x7B
To run the training benchmark without quantization, use the following command:
./jax-maxtext_benchmark_report.sh -m Mixtral-8x7B
For quantized training, use the following command:
./jax-maxtext_benchmark_report.sh -m Mixtral-8x7B -q nanoo_fp8
Important
Quantized training is not supported with the JAX 0.6.0 Docker image; support will be added in a future release. For quantized training, use the JAX 0.5.0 Docker image:
rocm/jax-training:maxtext-v25.7
.
Multi-node training
For multi-node training examples, choose a model from Supported models with an available multi-node training script.
Further reading#
See the ROCm/maxtext benchmarking README at ROCm/maxtext.
To learn more about MAD and the
madengine
CLI, see the MAD usage guide.To learn more about system settings and management practices to configure your system for AMD Instinct MI300X series accelerators, see AMD Instinct MI300X system optimization.
For a list of other ready-made Docker images for AI with ROCm, see AMD Infinity Hub.
Previous versions#
See JAX MaxText training performance testing version history to find documentation for previous releases
of the ROCm/jax-training
Docker image.