## 🐛 Bug Doesn't run on CPUs when `accelerator="ddp_cpu"` is selected for Trainer on TPUs <!-- A clear and concise description of what the bug is. --> ### To Reproduce ```python model = BoringModel() trainer = Trainer( accelerator="ddp_cpu", tpu_cores=8, max_epochs=5, ) ```