Skip to content

Commit

Permalink
added libmpi_cray.so.12 to so files to attempt detection
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederickDeny committed Jul 15, 2024
1 parent ed431df commit 5e27e13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions e4s_cl/scripts/e4s_cl_mpi_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def bind_ompi(lib: ctypes.CDLL) -> MPIHandles:
SONAMES = [
("libmpi.so.12", bind_mpich),
("libmpi.so.40", bind_ompi),
("libmpi_cray.so.12", bind_mpich),
]


Expand Down Expand Up @@ -141,6 +142,7 @@ def main():
try:
#pylint: disable=invalid-name
if args.library is not None:
logging.info("Using library '%s'", path)
MPI = bind_library(Path(args.library))
else:
MPI = select_bind_library()
Expand Down

0 comments on commit 5e27e13

Please sign in to comment.