mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-05-24 16:13:56 +00:00
* [example] transfer llama-1 example * [example] fit llama-2 * [example] refactor scripts folder * [example] fit new gemini plugin * [cli] fix multinode runner * [example] fit gemini optim checkpoint * [example] refactor scripts * [example] update requirements * [example] update requirements * [example] rename llama to llama2 * [example] update readme and pretrain script * [example] refactor scripts
14 lines
237 B
Bash
14 lines
237 B
Bash
#!/bin/bash
|
|
|
|
################
|
|
#Load your environments and modules here
|
|
################
|
|
|
|
HOSTFILE=$(realpath hosts.txt)
|
|
|
|
cd ../..
|
|
|
|
export OMP_NUM_THREADS=8
|
|
|
|
colossalai run --nproc_per_node 8 --hostfile $HOSTFILE benchmark.py -g -x -b 16
|