mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-05-03 22:18:23 +00:00
* Add handson to ColossalAI. * Change names of handsons and edit sequence parallel example. * Edit wrong folder name * resolve conflict * delete readme
8 lines
105 B
Bash
8 lines
105 B
Bash
#!/usr/bin/env sh
|
|
|
|
for i in $(seq 0 7); do
|
|
python convert_ckpt.py $1 $2 ${i} &
|
|
done
|
|
|
|
wait $(jobs -p)
|