You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
brew install openmpi # Horovod on macOS requires OpenMPI, Gloo not currently supported
44
45
45
-
# TODO: remove after https://github.com/pytorch/pytorch/issues/32186 is resolved
46
46
- name: Setup Windows
47
+
if: runner.os == 'windows'
48
+
run: |
49
+
python -c "lines = [line for line in open('requirements-extra.txt').readlines() if not line.startswith('horovod')] ; open('requirements-extra.txt', 'w').writelines(lines)"
50
+
51
+
# TODO: remove after https://github.com/pytorch/pytorch/issues/32186 is resolved
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
24
24
25
25
- Added `ddp_cpu` backend for testing ddp without GPUs ([#1158](https://github.com/PyTorchLightning/pytorch-lightning/pull/1158))
26
26
27
+
- Added [Horovod](http://horovod.ai) support as a distributed backend `Trainer(distributed_backend='horovod')` ([#1529](https://github.com/PyTorchLightning/pytorch-lightning/pull/1529))
0 commit comments