Pretraining workflows#
Primus is a YAML-driven training stack for AMD GPUs. You select a backend (Megatron-LM, TorchTitan, JAX MaxText, Megatron Bridge), point train pretrain at a configuration YAML, and launch Primus with the unified CLI (runner/primus-cli) in direct, container, or Slurm mode. See CLI reference and Configuration system.
This section helps you understand concepts related to the Primus workflow: how backends work, YAML structure and inheritance, parallelism vocabulary, the full per-backend configuration inventory, and so on. If you already understand the concepts and just need the specific commands to run your training with Primus, see End-to-end training recipes.
Overview#
The following table describes the four backend types supported by Primus and their typical uses.
Backend |
Framework |
Typical use |
|---|---|---|
Megatron-LM |
|
Large-scale transformer pretraining with Megatron-style parallelism (TP/PP/EP). |
TorchTitan |
|
PyTorch-native scaled training (FSDP / tensor / pipeline / expert parallelism per config). |
MaxText (JAX) |
|
JAX/MaxText single- and multi-node runs; parallelism via MaxText |
MaxDiffusion (JAX) |
|
JAX/MaxDiffusion diffusion pretraining (WAN 2.1, FLUX.1-dev). Source is vendored as the |
Megatron Bridge |
|
Bridge-oriented workflows (configure like other backends; see parameter reference). |
Several setup steps apply to all backends (mock vs. real data, Hugging Face tokens, scaling to multiple nodes, and HipBLASLt autotuning). After you read the backend section that applies to you, see Common patterns below.
Megatron-LM pretraining#
Quick start (container mode)#
From the root of the clone of the Primus repository, with Docker or Podman available, the following command starts the training in container mode:
./runner/primus-cli container -- train pretrain \
--config examples/megatron/configs/MI300X/llama2_7B-BF16-pretrain.yaml
This uses the default image from runner/.primus.yaml (rocm/primus:v26.5 unless overridden). The project tree is mounted into the container automatically by runner/primus-cli-container.sh.
Example configurations under examples/megatron/configs/MI300X/#
The following files ship in the repository (sorted by name). Parallelism columns are taken from tensor_model_parallel_size / pipeline_model_parallel_size / expert_model_parallel_size in each file (literals or ${PRIMUS_TP:…} defaults).
Config |
TP |
PP |
EP |
|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Sample YAML file (llama2_7B-BF16-pretrain.yaml) explained#
Path: examples/megatron/configs/MI300X/llama2_7B-BF16-pretrain.yaml
Section |
Role |
|---|---|
|
Run identity and output root (supports |
|
|
|
Module preset under |
|
Model preset under |
|
Run-specific training knobs: iterations, batching, LR, parallelism ( |
The sample sets mock_data: true and train_data_path: null so you can validate the stack without real corpora.
Mock data versus real data#
Mock data: Set
mock_data: trueand leavetrain_data_path/valid_data_pathempty (as inllama2_7B-BF16-pretrain.yaml).Real data: Set
mock_data: falseand populate Megatron-compatible data paths (and tokenizer assets) inoverrides. Use paths visible inside your container mounts.
Multi-node training with Slurm#
./runner/primus-cli slurm srun -N 4 -p <partition> -- train pretrain \
--config examples/megatron/configs/MI300X/llama2_7B-BF16-pretrain.yaml
runner/primus-cli-slurm-entry.sh derives MASTER_ADDR, NNODES, and NODE_RANK from Slurm and forwards them into the container. Align tensor_model_parallel_size, pipeline_model_parallel_size, and expert_model_parallel_size with your cluster width and job size.
TorchTitan pretraining#
Quick start#
./runner/primus-cli container -- train pretrain \
--config examples/torchtitan/configs/MI300X/llama3.1_8B-BF16-pretrain.yaml
Example configurations under examples/torchtitan/configs/MI300X/#
File |
|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Sample YAML file (llama3.1_8B-BF16-pretrain.yaml) explained#
Path: examples/torchtitan/configs/MI300X/llama3.1_8B-BF16-pretrain.yaml
Section |
Role |
|---|---|
|
Selects the TorchTitan integration. |
|
Module preset under |
|
Model preset under |
|
Run-specific batching, steps, checkpointing, and Turbo options. |
Some configurations omit an explicit parallelism: block; in that case the default values come from the module and model presets (primus/configs/modules/torchtitan/pre_trainer.yaml and the chosen model YAML). Other examples (for example DeepSeek and Qwen) set parallelism: inline with tensor_parallel_degree, pipeline_parallel_degree, expert_parallel_degree, etc.
MaxText (JAX) pretraining#
Quick start#
./runner/primus-cli container -- train pretrain \
--config examples/maxtext/configs/MI300X/llama2_7B-bf16-pretrain.yaml
JAX-specific requirements#
Install JAX/MaxText dependencies from the repository root:
pip install -r requirements-jax.txt
Example configurations under examples/maxtext/configs/MI300X/#
File |
Key parallelism ( |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The llama2_7B-bf16-pretrain.yaml example also sets dataset_type: "synthetic" and hf_access_token: ${HF_TOKEN:""} for gated Hugging Face assets when you switch to real data.
fp8 MoE (v26.6): fp8 Mixture-of-Experts configs must set
pure_nnx_decoder: falsein their overrides; otherwise they crash at step 1 under the v26.6 pure-NNX decoder default. See MaxText parameters → Precision and quantization. Dense fp8 and bf16 configs are unaffected.
MaxDiffusion (JAX) pretraining#
The MaxDiffusion backend runs JAX diffusion pretraining (WAN 2.1, FLUX.1-dev). Environment setup depends on your image:
Image has |
What happens |
|---|---|
Yes (e.g. MAD |
|
No (e.g. bare |
The script installs everything from the Primus checkout: torch (ROCm wheels), deps, editable submodule, and patches. Requires |
The relevant pieces:
Source is vendored as the
third_party/maxdiffusionsubmodule.Dependencies live in
requirements-maxdiffusion.txt(kept separate fromrequirements-jax.txtso the MaxDiffusion pins never affect MaxText runs).Install + patches are applied by
examples/maxdiffusion/setup_maxdiffusion_env.sh(idempotent): torch/torchvision (ROCm wheels), the requirements above, an editable install of the vendored submodule, and four source patches (Flax-T5 clip rename, TensorFlow-preload-before-TransformerEngine, Shardy-on, and the TransformerEngine empty context-parallel-axis fix).
Prerequisites#
Initialize the vendored submodule (a plain clone will not populate it):
git submodule update --init third_party/maxdiffusion
Run on a JAX base image (for example rocm/jax-training) or a bare-metal JAX environment, and export HF_TOKEN for gated Hugging Face assets.
Quick start (run from a bare Primus checkout)#
Use run_pretrain.sh with BACKEND=MaxDiffusion. When PRIMUS_SKIP_PIP is unset, the launcher runs setup_maxdiffusion_env.sh for you (installs the stack + applies the patches), sets NVTE_FRAMEWORK=jax and MAXDIFFUSION_PATH, then launches:
BACKEND=MaxDiffusion \
EXP=examples/maxdiffusion/configs/MI355X/wan2.1_1.3b-pretrain.yaml \
bash ./examples/run_pretrain.sh
To run the environment setup once by itself (e.g. to warm an image or a shared venv), invoke the script directly, then launch with PRIMUS_SKIP_PIP=1:
bash examples/maxdiffusion/setup_maxdiffusion_env.sh
PRIMUS_SKIP_PIP=1 BACKEND=MaxDiffusion \
EXP=examples/maxdiffusion/configs/MI355X/flux_dev-pretrain.yaml \
bash ./examples/run_pretrain.sh
Quick start (container mode)#
primus-cli bootstraps the same environment: the train/pretrain/maxdiffusion prepare hooks run setup_maxdiffusion_env.sh before training and select the plain-python launcher (JAX drives every GPU from one process, so torchrun is never used).
./primus-cli container -- train pretrain \
--config examples/maxdiffusion/configs/MI300X/wan2.1_1.3b-pretrain.yaml --max_train_steps 10
Container launches start from a clean image each time, so the setup runs on every launch. Wheels are cached under
$DATA_PATH/pip_cacheinside the mounted checkout, so only the first run pays for downloads. SetPRIMUS_SKIP_PIP=1to skip the step entirely on images that already ship the stack.
Step counts use
--max_train_steps(the MaxDiffusion field name).--stepsbelongs to MaxText and is silently ignored here.
Example configurations under examples/maxdiffusion/configs/MI355X/#
File |
Model |
Status on MI355X (gfx950) |
|---|---|---|
|
FLUX.1-dev |
✅ validated |
|
WAN 2.1 1.3B |
✅ validated |
|
WAN 2.1 14B |
✅ validated (requires |
Common patterns#
Testing with mock data#
Set mock_data: true (Megatron/TorchTitan) or synthetic dataset settings (MaxText) to validate the configurations and infrastructure without I/O-heavy datasets.
Real training data#
Megatron: Configure
train_data_path/valid_data_pathand tokenizer assets inoverridesoncemock_datais false.For all backends, ensure host paths are mounted in container mode (
--volumeorcontainer.options.volumein YAML).TorchTitan/MaxText: Follow backend-specific dataset fields in the
overridesand presets.
Scaling from single-node to multi-node#
Use Slurm mode for allocation; keep the container entry if you want the same image on every node.
Set environment variables consistently (
NNODES,NODE_RANK,MASTER_ADDR,MASTER_PORT,GPUS_PER_NODE); the Slurm entry script injects them when usingprimus-cli slurm.Increase values in the parallelism fields (Megatron TP/PP/EP; TorchTitan
parallelism; MaxTextici_*/dcn_*) to match topology.
Hugging Face token for gated models#
Export HF_TOKEN on the host before launching container mode; runner/.primus.yaml lists HF_TOKEN under container.options.env so it can be forwarded into the container. MaxText configurations may reference ${HF_TOKEN:""} directly.
hipBLASLt autotuning (three stages)#
Controlled with PRIMUS_HIPBLASLT_TUNING_STAGE (see examples/README.md):
Stage |
Purpose |
|---|---|
1 |
Dump GEMM shapes seen during training (reduce |
2 |
Tune kernels from dumped shapes (offline tooling under |
3 |
Train using tuned kernel artifacts from |
Example (from in-repo docs):
export PRIMUS_HIPBLASLT_TUNING=1 # master switch (required; tuning is skipped without it)
export PRIMUS_HIPBLASLT_TUNING_STAGE=1
./runner/primus-cli direct -- train pretrain \
--config examples/megatron/configs/MI300X/llama2_7B-BF16-pretrain.yaml
Supported models#
The tables above in the Megatron, TorchTitan, and MaxText sections are curated MI300X examples from the Primus repository. Use examples/<backend>/configs/ in the repository as the authoritative inventory, as new presets and hardware-specific examples may be added there before this document is updated to reflect their additions.
Backend |
Example region |
Parallelism vocabulary |
|---|---|---|
Megatron-LM |
|
|
TorchTitan |
|
|
MaxText |
|
|
For scripting patterns that predate primus-cli, the repository still documents examples/run_local_pretrain.sh and examples/run_slurm_pretrain.sh in examples/README.md; equivalent launches are shown above using ./runner/primus-cli.