Skip to content

Commit ffe8e2d

Browse files
committed
Update after changes in Intel MPI 2021.15 install layout
1 parent fbb25b5 commit ffe8e2d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.cibw/mpi4py_mpiabi.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,10 @@ def search_impi_libfabric(rootdir):
109109
suffix = ".dll"
110110
for subdir in (
111111
("opt", "mpi", "libfabric", libdir),
112-
(libdir, "libfabric"),
113112
("libfabric", libdir),
114-
("libfabric"),
113+
("libfabric", ),
114+
(libdir, "libfabric"),
115+
(libdir, ),
115116
):
116117
ofi_libdir = os.path.join(rootdir, *subdir)
117118
ofi_filename = os.path.join(ofi_libdir, f"libfabric{suffix}")
@@ -135,9 +136,9 @@ def dlopen_impi_libfabric(libdir):
135136
return None
136137
if "FI_PROVIDER_PATH" not in os.environ:
137138
ofi_libdir = os.path.dirname(ofi_filename)
138-
ofi_provider_path = os.path.join(ofi_libdir, "prov")
139-
if os.path.isdir(ofi_provider_path):
140-
os.environ["FI_PROVIDER_PATH"] = ofi_provider_path
139+
ofi_prov = os.path.join(ofi_libdir, "prov")
140+
ofi_path = ofi_prov if os.path.isdir(ofi_prov) else ofi_libdir
141+
os.environ["FI_PROVIDER_PATH"] = ofi_path
141142
lib = ct.CDLL(ofi_filename, mode)
142143
_verbose_info(f"OFI library from {ofi_filename!r}")
143144
return lib

0 commit comments

Comments
 (0)