From a0cbbc35ad4963cae32a9d8ada196ee891a5aec0 Mon Sep 17 00:00:00 2001 From: chenyu Date: Thu, 9 Oct 2025 16:46:41 +0800 Subject: [PATCH] remove LLAMA_LAYERS in ci (#12562) --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 194a5f6743..18821a2308 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -451,8 +451,7 @@ jobs: - name: Test Bert training run: NULL=1 DEFAULT_FLOAT=HALF BENCHMARK=10 BS=24 GPUS=4 BERT_LAYERS=2 MODEL=bert python3 examples/mlperf/model_train.py - name: Test llama 3 training - # TODO: remove LLAMA_LAYERS once it's fast - run: NULL=1 SAMPLES=300 BS=8 SEQLEN=512 GRADIENT_ACC_STEPS=8 LLAMA_LAYERS=4 FAKEDATA=1 DEFAULT_FLOAT=bfloat16 OPTIM_DTYPE=bfloat16 LLAMA3_SIZE=1B MODEL=llama3 python3 examples/mlperf/model_train.py + run: NULL=1 SAMPLES=300 BS=8 SEQLEN=512 GRADIENT_ACC_STEPS=8 FAKEDATA=1 DEFAULT_FLOAT=bfloat16 OPTIM_DTYPE=bfloat16 LLAMA3_SIZE=1B MODEL=llama3 python3 examples/mlperf/model_train.py - name: Run process replay tests uses: ./.github/actions/process-replay