We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How long does distributed training initialization take? dist.init_process_group( backend=backend, world_size=world_size, rank=rank, )
The text was updated successfully, but these errors were encountered:
Very quick. If you stuck in this process, usually there's a mistake in your script.
Sorry, something went wrong.
#!/bin/bash #SBATCH --job-name=long-clip #SBATCH --nodes=1 #SBATCH --ntasks=32 #SBATCH --gres=gpu:1 #SBATCH --time=96:00:00 #SBATCH --comment pris718bobo
source ~/.bashrc
export CUDA_VISIBLE_DEVICES=0 torchrun --nproc_per_node=1 train.py
What needs to be modified? Could you please provide some help. @beichenzbc
#!/bin/bash #SBATCH --job-name=long-clip #SBATCH --nodes=1 #SBATCH --ntasks=32 #SBATCH --gres=gpu:1 #SBATCH --time=96:00:00 #SBATCH --comment pris718bobo source ~/.bashrc export CUDA_VISIBLE_DEVICES=0 torchrun --nproc_per_node=1 train.py What needs to be modified? Could you please provide some help. @beichenzbc
Do you resolve this problem? I also get into the same case.
No branches or pull requests
How long does distributed training initialization take?
dist.init_process_group(
backend=backend,
world_size=world_size,
rank=rank,
)
The text was updated successfully, but these errors were encountered: