21 lines
1 KiB
Bash
21 lines
1 KiB
Bash
|
#!/bin/bash
|
||
|
export NODE_RANK=${SLURM_NODEID}
|
||
|
echo "##########################################"
|
||
|
echo MASTER_ADDR=${MASTER_ADDR}
|
||
|
echo MASTER_PORT=${MASTER_PORT}
|
||
|
echo NODE_RANK=${NODE_RANK}
|
||
|
echo WORLD_SIZE=${WORLD_SIZE}
|
||
|
echo "##########################################"
|
||
|
# debug environment worked great so we stick with it
|
||
|
# no magic there, just a miniconda python=3.9, pytorch=1.12, cudatoolkit=11.3
|
||
|
# env with pip dependencies from stable diffusion's requirements.txt
|
||
|
eval "$(/fsx/stable-diffusion/debug/miniconda3/bin/conda shell.bash hook)"
|
||
|
conda activate stable
|
||
|
cd /fsx/stable-diffusion/stable-diffusion
|
||
|
|
||
|
CONFIG=configs/stable-diffusion/txt2img-1p4B-multinode-clip-encoder-high-res-512-improvedaesthetic.yaml
|
||
|
EXTRA="model.params.ckpt_path=/fsx/stable-diffusion/stable-diffusion/logs/2022-07-07T16-15-18_txt2img-1p4B-multinode-clip-encoder-high-res-512/checkpoints/last.ckpt"
|
||
|
DEBUG="-d True lightning.callbacks.image_logger.params.batch_frequency=5"
|
||
|
|
||
|
python main.py --base $CONFIG --gpus 0,1,2,3,4,5,6,7 -t --num_nodes ${WORLD_SIZE} --scale_lr False $EXTRA #$DEBUG
|