Closed pjox closed 2 years ago
Since the update of Pytorch Lightning, ddp is no longer accepted as an accelerator (https://pytorch-lightning.readthedocs.io/en/stable/api/pytorch_lightning.accelerators.Accelerator.html). So when before I was using:
ddp
--accelerator ddp \ --n-gpus 4 \ --n-workers 4 \
I'm now using
--accelerator gpu \ --strategy ddp \ --num-devices 4 \ --num-workers 4 \ --num-nodes 128 \
Is this correct?
Thanks in advance for the help 😄
Yes, that's correct, fixing it in the readme now!
Since the update of Pytorch Lightning,
ddp
is no longer accepted as an accelerator (https://pytorch-lightning.readthedocs.io/en/stable/api/pytorch_lightning.accelerators.Accelerator.html). So when before I was using:I'm now using
Is this correct?
Thanks in advance for the help 😄