#!/bin/bash
export CUDA_DEVICE_MAX_CONNECTIONS=1
source "tests_extend/system_tests/env_npu.sh"
export STREAMS_PER_DEVICE=32
NPUS_PER_NODE=8
MASTER_ADDR=localhost
MASTER_PORT=6001
NNODES=1
NODE_RANK=0
WORLD_SIZE=$(($NPUS_PER_NODE*$NNODES))
CHECKPOINT_PATH=./ckpt_gpt
VOCAB_FILE=/home/dataset/enwiki/gpt2-vocab.json
MERGE_FILE=/home/dataset/enwiki/gpt2-merges.txt
DATA_PATH=/home/dataset/enwiki/my-t5_text_sentence
TP=2
PP=2
CP=1
EP=2
DISTRIBUTED_ARGS="
--nproc_per_node $NPUS_PER_NODE \
--nnodes $NNODES \
--node_rank $NODE_RANK \
--master_addr $MASTER_ADDR \
--master_port $MASTER_PORT
"
MOE_ARGS="
--expert-model-parallel-size ${EP} \
--num-experts 4 \
--moe-permutation-async-comm \
--moe-grouped-gemm \
--gemm-gradient-accumulation-fusion \
--moe-token-dispatcher-type allgather \
--moe-allgather-overlap-comm \
--moe-router-topk 2 \
--moe-aux-loss-coeff 0.02 \
"
RECOMPUTE_ARGS="
--recompute-activation-function \
--recompute-activation-function-num-layers 2 \
--recompute-norm \
--recompute-norm-num-layers 1 \
--enable-recompute-layers-per-pp-rank \
"
GPT_ARGS="
--transformer-impl local \
--tensor-model-parallel-size ${TP} \
--pipeline-model-parallel-size ${PP} \
--num-layers-per-virtual-pipeline-stage 1 \
--use-flash-attn \
--use-fused-rotary-pos-emb \
--sequence-parallel \
--use-distributed-optimizer \
--overlap-grad-reduce \
--overlap-param-gather \
--reuse-fp32-param \
--optimizer-selection fused_torch_adamw \
--num-layers 4 \
--hidden-size 12288 \
--num-attention-heads 96 \
--seq-length 4096 \
--max-position-embeddings 4096 \
--micro-batch-size 1 \
--global-batch-size 4 \
--train-iters 1000 \
--lr 5.0e-7 \
--lr-decay-iters 320000 \
--lr-decay-style cosine \
--clip-grad 1.0 \
--weight-decay 0.1 \
--adam-beta1 0.9 \
--adam-beta2 0.95 \
--init-method-std 0.006 \
--disable-bias-linear \
--no-gradient-accumulation-fusion \
--position-embedding-type rope \
--no-bias-gelu-fusion \
--no-bias-dropout-fusion \
--attention-dropout 0.0 \
--hidden-dropout 0.0 \
--bf16
"
DATA_ARGS="
--data-path $DATA_PATH \
--vocab-file $VOCAB_FILE \
--merge-file $MERGE_FILE \
--vocab-size 50257 \
--num-workers 4 \
--split 949,50,1
"
OUTPUT_ARGS="
--log-interval 1 \
--save-interval 10000 \
--eval-interval 10000 \
--eval-iters 10 \
--log-throughput \
"
torchrun $DISTRIBUTED_ARGS pretrain_gpt.py \
$GPT_ARGS \
$MOE_ARGS \
$RECOMPUTE_ARGS \
$DATA_ARGS \
$OUTPUT_ARGS \
set +x