We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55821ca commit 96f630fCopy full SHA for 96f630f
src/lightning/fabric/CHANGELOG.md
@@ -25,7 +25,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
25
26
### Fixed
27
28
--
+- Fix issue with partial mpi4py installation ([#21353](https://github.com/Lightning-AI/pytorch-lightning/pull/21353))
29
30
31
---
src/lightning/fabric/plugins/environments/mpi.py
@@ -74,6 +74,7 @@ def detect() -> bool:
74
return False
75
76
try:
77
+ # mpi4py may be installed without MPI being present
78
from mpi4py import MPI
79
except ImportError:
80
0 commit comments