Skip to content

Latest commit

 

History

History
315 lines (236 loc) · 11.4 KB

File metadata and controls

315 lines (236 loc) · 11.4 KB

Pretrain Llama-3.1-70B workloads on A3 Ultra GKE Node pools

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.

Orchestration and deployment tools

For this recipe, the following setup is used:

Test environment

This recipe has been optimized for and tested with the following configuration:

Prerequisites

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.

Run the recipe

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.

Launch Cloud Shell

In the Google Cloud console, start a Cloud Shell Instance.

Configure environment settings

From your client, complete the following steps:

  1. 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 the gs:// prefix
  • <ARTIFACT_REGISTRY>: the full name of your Artifact Registry in the following format: LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY
  1. Set the default project:
gcloud config set project $PROJECT_ID

Get the recipe

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

Get cluster credentials

From your client, get the credentials for your cluster.

gcloud container clusters get-credentials $CLUSTER_NAME --region $CLUSTER_REGION

Build and push a docker container image to Artifact Registry

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:

  1. 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.

  1. 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

Configure and submit a pretraining job

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

Configure job settings

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

Monitor the job

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>"

Analyze results

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 overrides
  • lightning_logs.txt: the log files generated by PyTorch Lightning, which is used by NeMo
  • nemo_error_logs.txt: the warning and error logs generated by NeMo
  • nemo_log_globalrank-[RANK]_localrank-[LOCAL].txt: the NeMo logs for each rank
  • dllogger/: 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.

Calculate training performance metrics (MFU, TFLOPS, Average Step Time)

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:

  1. Download the dllogger.json file. The dllogger.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
  2. Run the process_training_results.py script

    cd $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

Uninstall the Helm release

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