This recipe outlines the steps for running a Llama-3.1-70B pretraining workload on A3 Ultra GKE Node pools by using the NVIDIA NeMo framework.
For this recipe, the following setup is used:
- Orchestration - Google Kubernetes Engine (GKE)
- Job configuration and deployment - Helm chart is used to configure and deploy the Kubernetes Index Job. This job encapsulates the NVIDIA NeMo Megatron GPT pretraining workload. The chart generates the job's manifest, adhering to best practices for using RDMA Over Ethernet (RoCE) with Google Kubernetes Engine (GKE).
This recipe has been optimized for and tested with the following configuration:
- A cluster with 32 a3-ultragpu-8g machines
- Machine placement in the cluster is configured using a compact placement policy
- NVIDIA NeMo NGC container image: 24.07
- FP8 precision training
- Uses a mock pretraining dataset provided by the NeMo framework. By default, the job is configured to execute 30 training steps. If you want to change the number of training steps, see Configure and submit a pretraining job.
Before running this recipe, ensure your environment is configured as follows:
- A GKE cluster with the following setup:
- An A3 Ultra node pool (32 nodes, 256 GPUs)
- Topology-aware scheduling enabled
- An Artifact Registry repository to store the Docker image.
- A Google Cloud Storage (GCS) bucket to store results. Important: This bucket must be in the same region as the GKE cluster.
- A client workstation with the following pre-installed:
- Google Cloud SDK
- Helm
- kubectl
To prepare the required environment, see GKE environment setup guide.
It is recommended to use Cloud Shell as your client to complete the steps.
Cloud Shell comes pre-installed with the necessary utilities, including
kubectl
, the Google Cloud SDK
, and Helm
.
In the Google Cloud console, start a Cloud Shell Instance.
From your client, complete the following steps:
- Set the environment variables to match your environment:
export PROJECT_ID=<PROJECT_ID>
export REGION=<REGION>
export CLUSTER_REGION=<CLUSTER_REGION>
export CLUSTER_NAME=<CLUSTER_NAME>
export GCS_BUCKET=<GCS_BUCKET>
export ARTIFACT_REGISTRY=<ARTIFACT_REGISTRY>
Replace the following values:
<PROJECT_ID>
: your Google Cloud project ID<REGION>
: the region where you want to run Cloud Build<CLUSTER_REGION>
: the region where your cluster is located<CLUSTER_NAME>
: the name of your GKE cluster<GCS_BUCKET>
: the name of your Cloud Storage bucket. Do not include thegs://
prefix<ARTIFACT_REGISTRY>
: the full name of your Artifact Registry in the following format: LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY
- Set the default project:
gcloud config set project $PROJECT_ID
From your client, clone the gpu-recipes
repository and set a reference to the recipe folder.
git clone https://github.com/ai-hypercomputer/gpu-recipes.git
cd gpu-recipes
export REPO_ROOT=`git rev-parse --show-toplevel`
export RECIPE_ROOT=$REPO_ROOT/training/a3ultra/llama-3.1-70b/nemo-pretraining-gke
From your client, get the credentials for your cluster.
gcloud container clusters get-credentials $CLUSTER_NAME --region $CLUSTER_REGION
Note:If you'd like to use AotC-based library image, you may skip this step.
To build the container, complete the following steps from your client:
-
Use Cloud Build to build and push the container image.
cd $REPO_ROOT/src/docker/nemo-24.07 gcloud builds submit --region=${REGION} \ --config cloudbuild.yml \ --substitutions _ARTIFACT_REGISTRY=$ARTIFACT_REGISTRY \ --timeout "2h" \ --machine-type=e2-highcpu-32 \ --quiet \ --async
This command outputs the build ID
.
-
You can monitor the build progress by streaming the logs for the
build ID
. To do this, run the following command.Replace
<BUILD_ID>
with your build ID.BUILD_ID=<BUILD_ID> gcloud beta builds log $BUILD_ID --region=$REGION
The default job setting is 30 training steps and fp8 precision. To execute the job with the default settings, run the following command from your client:
cd $RECIPE_ROOT
helm install -f values.yaml \
--set-file nemo_config=$REPO_ROOT/src/frameworks/a3ultra/nemo-configs/llama-3.1-70b-256gpus-a3ultra-fp8.yaml \
--set workload.image=${ARTIFACT_REGISTRY}/nemo_workload:24.07 \
--set volumes.gcsMounts[0].bucketName=${GCS_BUCKET} \
$USER-llama-3-1-70b-nemo-fp8 \
$REPO_ROOT/src/helm-charts/a3ultra/nemo-training
You can overwrite any of the default
NeMo configurations
for this job. To do this, we can set the new arguments using --set workload.arguments
.
Examples
-
To set the number of training steps to 100, run the following command from your client:
cd $RECIPE_ROOT helm install -f values.yaml \ --set-file nemo_config=$REPO_ROOT/src/frameworks/a3ultra/nemo-configs/llama-3.1-70b-256gpus-a3ultra-fp8.yaml \ --set workload.image=${ARTIFACT_REGISTRY}/nemo_workload:24.07 \ --set volumes.gcsMounts[0].bucketName=${GCS_BUCKET} \ --set workload.arguments="{trainer.max_steps=100}" \ $USER-llama-3-1-70b-nemo-fp8 \ $REPO_ROOT/src/helm-charts/a3ultra/nemo-training
-
To use the AotC-based image, run the following command from your client:
cd $RECIPE_ROOT export IMAGE=us-central1-docker.pkg.dev/deeplearning-images/reproducibility/pytorch-gpu-nemo@sha256:7a84264e71f82f225be639dd20fcf9104c80936c0f4f38f94b88dfb60303c70e helm install -f values.yaml \ --set-file nemo_config=$REPO_ROOT/src/frameworks/a3ultra/nemo-configs/llama-3.1-70b-256gpus-a3ultra-fp8.yaml \ --set workload.image=${IMAGE} \ --set volumes.gcsMounts[0].bucketName=${GCS_BUCKET} \ --set-string workload.aotc=true \ $USER-llama-3-1-70b-nemo-fp8 \ $REPO_ROOT/src/helm-charts/a3ultra/nemo-training
To build the AotC-based image yourself, please use the script defined in $REPO_ROOT/src/docker/nemo-aotc-24.07
To check the status of pods in the indexed job, run the following command from your client:
kubectl get pods | grep $USER-llama-3-1-70b-nemo-fp8
To get the logs for one of the pods, run the following command from your client:
kubectl logs "<pod_name>"
When completed, the job creates several artifacts, including logs and traces, and places them in the configured Google Cloud Storage bucket as follows:
gs://${GCS_BUCKET}/nemo-experiments/<JOB_ID>
├── hparams.yaml
├── lightning_logs.txt
├── nemo_error_logs.txt
├── nemo_log_globalrank-[RANK]_localrank-[LOCAL].txt
├── dllogger
│ ├── rank-0
│ │ ├── dllogger.json
...
hparams.yaml
: the NeMo configuration used by the pretraining script. This includes the combined configuration file and the command line overrideslightning_logs.txt
: the log files generated by PyTorch Lightning, which is used by NeMonemo_error_logs.txt
: the warning and error logs generated by NeMonemo_log_globalrank-[RANK]_localrank-[LOCAL].txt
: the NeMo logs for each rankdllogger/: The log captured by [NVIDIA DLLogger](https://github.com/NVIDIA/dllogger)
: DLLogger is configured to store logs on the rank 0 node. The log is in JSON format and includes loss, step_time, and other key metrics for each training step
Here is an example of an entry in the DLLogger log:
DLLL{
"timestamp": "1734117227.896116",
"datetime": "2024-12-13 19:13:47.896116",
"elapsedtime": "489.15554",
"type": "LOG",
"step": 15,
"data": {
"reduced_train_loss": 1.865377426147461,
"lr": 1.1250000397922122e-06,
"global_step": 15.0,
"consumed_samples": 16384.0,
"train_backward_timing in s": 4.5490265620173886e-05,
"grad_norm": 19.41560935974121,
"train_step_timing in s": 20.021318435668945,
"epoch": 0
}
}
The DLLogger log can be used to calculate the Model FLOPS Utilization (MFU) metric, as described in the next section.
This section explains how to calculate key training performance metrics,
such as Model FLOPS Utilization (MFU), using the dllogger.json
file generated during training.
We provide a tool called training_metrics to help you easily compute these metrics. This tool can calculate the following metrics:
- MFU: Model FLOPS Utilization
- Average training step time: the average time taken for each training step
- TFLOPS per GPU: the number of Tera Floating Point Operations per second achieved by each GPU
To calculate training performance metrics using the training_metrics
tool, complete the
following steps command from your client:
-
Download the
dllogger.json
file. Thedllogger.json
file is generated during the training session.To download the file, run the following command. Replace
<JOB_ID>
with the ID of your training session.gcloud storage cp gs://${GCS_BUCKET}/nemo-experiments/<JOB_ID>/dllogger/rank-0/dllogger.json \ $RECIPE_ROOT/dllogger.json
-
Run the
process_training_results.py
scriptcd $REPO_ROOT/src/utils/training_metrics python3 process_training_results.py --file $RECIPE_ROOT/dllogger.json \ --batch_size 1024 \ --num_accelerators 256 \ --precision fp8 \ --model_type llama3.1-70b \ --accelerator_type h200
Note: The batch_size
, num_accelerators
, precision
, model_type
and accelerator_type
are the
specific values for this recipe running the default configuration. Average step time
is computed by default using the steps 10 to 30.
For more detailed information and advanced usage instructions of this tool, see the full documentation
You can delete the job and other resources created by the Helm chart. To uninstall Helm, run the following command from your client:
helm uninstall $USER-llama-3-1-70b-nemo-fp8