#!/bin/bash
export CUDA_DEVICE_MAX_CONNECTIONS=1
NPUS_PER_NODE=8
MASTER_ADDR=localhost
MASTER_PORT=6021
NNODES=1
NODE_RANK=0
WORLD_SIZE=$((NPUS_PER_NODE*$NNODES))
CKPT_SAVE_DIR="your model save ckpt path"
DATA_PATH="your data path"
TOKENIZER_PATH="your tokenizer path"
CKPT_LOAD_DIR="your model ckpt path"
TP=1
PP=2
MBS=1
GBS=128
SEQ_LEN=8192
DISTRIBUTED_ARGS="
--master_addr $MASTER_ADDR \
--node_rank $NODE_RANK \
--worker_num $WORLD_SIZE \
--local_worker_num $NPUS_PER_NODE \
--master_port $MASTER_PORT \
--log_dir=msrun_log \
--join=False \
--cluster_time_out=300 \
--bind_core=True \
"
GPT_ARGS="
--use-mcore-models \
--transformer-impl local \
--tensor-model-parallel-size ${TP} \
--pipeline-model-parallel-size ${PP} \
--sequence-parallel \
--num-layers 28 \
--hidden-size 4096 \
--ffn-hidden-size 13696 \
--num-attention-heads 32 \
--seq-length ${SEQ_LEN} \
--micro-batch-size ${MBS} \
--global-batch-size ${GBS} \
--max-position-embeddings ${SEQ_LEN} \
--padded-vocab-size 65024 \
--make-vocab-size-divisible-by 1 \
--group-query-attention \
--num-query-groups 2 \
--disable-bias-linear \
--add-qkv-bias \
--position-embedding-type rope \
--no-rope-fusion \
--use-glm-rope \
--rotary-percent 0.5 \
--normalization RMSNorm \
--use-fused-rmsnorm \
--swiglu \
--use-fused-swiglu \
--use-flash-attn \
--use-distributed-optimizer \
--tokenizer-type PretrainedFromHF \
--tokenizer-name-or-path ${TOKENIZER_PATH} \
--lr 1e-6 \
--train-iters 2000 \
--lr-decay-style cosine \
--untie-embeddings-and-output-weights \
--attention-dropout 0.0 \
--init-method-std 0.01 \
--hidden-dropout 0.0 \
--no-masked-softmax-fusion \
--attention-softmax-in-fp32 \
--min-lr 1e-8 \
--weight-decay 1e-1 \
--lr-warmup-fraction 0.01 \
--clip-grad 1.0 \
--adam-beta1 0.9 \
--initial-loss-scale 4096 \
--adam-beta2 0.95 \
--no-gradient-accumulation-fusion \
--no-load-optim \
--no-load-rng \
--fp16 \
--overlap-grad-reduce \
--overlap-param-gather \
"
DATA_ARGS="
--data-path $DATA_PATH \
--split 949,50,1
"
OUTPUT_ARGS="
--log-interval 1 \
--save-interval 2000 \
--eval-interval 2000 \
--eval-iters 10 \
--save $CKPT_SAVE_DIR \
--load $CKPT_LOAD_DIR \
"
msrun $DISTRIBUTED_ARGS pretrain_gpt.py \
$GPT_ARGS \
$DATA_ARGS \
$OUTPUT_ARGS \
--distributed-backend nccl \
--ai-framework mindspore \
| tee logs/ms_train_mcore_chatglm3_6B_8K.log