#!/bin/bash
export CUDA_DEVICE_MAX_CONNECTIONS=1
export HCCL_DETERMINISTIC=True
GPUS_PER_NODE=2
MASTER_ADDR=localhost
MASTER_PORT=6005
NNODES=1
NODE_RANK=0
WORLD_SIZE=$(($GPUS_PER_NODE * $NNODES))
DISTRIBUTED_ARGS="
--master_addr $MASTER_ADDR \
--node_rank $NODE_RANK \
--worker_num $WORLD_SIZE \
--local_worker_num $GPUS_PER_NODE \
--master_port $MASTER_PORT \
--log_dir=msrun_log \
--join=False \
--cluster_time_out=300 \
--bind_core=True \
"
CKPT_SAVE_DIR="your model save ckpt path"
DATA_PATH="your data path"
TOKENIZER_MODEL="your tokenizer path"
CKPT_LOAD_DIR="your model ckpt path"
TP=2
PP=1
EP=1
NUM_LAYERS=56
SEQ_LEN=32768
MOE_ARGS="
--num-experts 8 \
--expert-model-parallel-size ${EP} \
--moe-router-topk 2 \
--moe-router-load-balancing-type aux_loss \
--moe-token-dispatcher-type alltoall_seq \
--moe-aux-loss-coeff 0.001 \
--moe-permutation-async-comm \
--moe-layer-freq -1 \
--first-k-dense-replace -1 \
"
GPT_ARGS="
--use-mcore-models \
--disable-bias-linear \
--seq-length ${SEQ_LEN} \
--max-position-embeddings ${SEQ_LEN} \
--num-layers ${NUM_LAYERS} \
--hidden-size 6144 \
--ffn-hidden-size 16384 \
--num-attention-heads 48 \
--init-method-std 0.01 \
--attention-dropout 0.0 \
--hidden-dropout 0.0 \
--normalization RMSNorm \
--position-embedding-type rope \
--swiglu \
--untie-embeddings-and-output-weights \
--group-query-attention \
--num-query-groups 8 \
--vocab-size 32000 \
--rotary-base 1000000 \
--no-masked-softmax-fusion \
--use-fused-rotary-pos-emb \
--use-flash-attn \
--use-fused-swiglu \
--use-fused-rmsnorm \
--no-check-for-nan-in-loss-and-grad \
--overlap-grad-reduce \
--overlap-param-gather \
--make-vocab-size-divisible-by 1 \
--tensor-model-parallel-size ${TP} \
--pipeline-model-parallel-size ${PP} \
--sequence-parallel \
--variable-seq-lengths \
--use-distributed-optimizer \
--load ${CKPT_LOAD_DIR} \
--save ${CKPT_SAVE_DIR} \
--tokenizer-type PretrainedFromHF \
--tokenizer-name-or-path ${TOKENIZER_MODEL} \
--lr-warmup-fraction 0.0 \
--micro-batch-size 1 \
--global-batch-size 1 \
--lr 2e-7 \
--train-iters 2000 \
--lr-decay-style cosine \
--weight-decay 0 \
--no-gradient-accumulation-fusion \
--no-load-optim \
--no-load-rng \
--no-shared-storage \
--prompt-type mixtral \
--adam-beta1 0.9 \
--adam-beta2 0.999 \
--seed 42 \
--bf16 \
--exit-on-missing-checkpoint
"
FINETUNE_ARGS="
--finetune \
--stage sft \
--is-instruction-dataset \
--lora-r 8 \
--lora-alpha 16 \
--qlora \
--lora-target-modules linear_qkv linear_proj linear_fc1 linear_fc2 \
"
DATA_ARGS="
--data-path ${DATA_PATH} \
--split 100,0,0 \
"
OUTPUT_ARGS="
--log-interval 1 \
--save-interval 2000 \
--eval-interval 2000 \
--eval-iters 1 \
"
msrun $DISTRIBUTED_ARGS posttrain_gpt.py \
$MOE_ARGS \
$GPT_ARGS \
$DATA_ARGS \
$OUTPUT_ARGS \
$FINETUNE_ARGS \
--log-throughput \
--distributed-backend nccl \
--ai-framework mindspore \
| tee logs/tune_mixtral_8x22b_qlora_ptd.log