mirror of https://github.com/hpcaitech/ColossalAI
14 lines
258 B
Bash
14 lines
258 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 -c 70b -p gemini_auto -g -x -b 2
|