Skip to content

Commit

Permalink
Update tests to use Intel MPI 2021.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dalcinl committed Nov 24, 2023
1 parent 5e38550 commit 4cb1eb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .cibw/mpi4py_mpiabi.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,12 @@ def add_dllpath(*directory, dll=""):

def add_dllpath_impi(*rootdir):
if i_mpi_ofi_library_internal:
add_dllpath(*rootdir, "libfabric", "bin", dll="libfabric")
add_dllpath(*rootdir, "bin", "libfabric", dll="libfabric")
for subdir in (
("opt", "mpi", "libfabric", "bin"),
("libfabric", "bin"),
("bin", "libfabric"),
):
add_dllpath(*rootdir, *subdir, dll="libfabric")
if i_mpi_library_kind:
add_dllpath(*rootdir, "bin", i_mpi_library_kind, dll="impi")
add_dllpath(*rootdir, "bin", dll="impi")
Expand Down
4 changes: 2 additions & 2 deletions .cibw/setup-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
mpimap_linux = {
"mpi31-mpich": [
("mpich", ["3.2", "3.3", "3.4", "4.0", "4.1"]),
("impi_rt", ["2021.6.0", "2021.10.0"]),
("impi_rt", ["2021.6.0", "2021.11.0"]),
],
"mpi31-openmpi": [
("openmpi", ["3.1", "4.0", "4.1"]),
Expand All @@ -62,7 +62,7 @@
("msmpi", ["10.1.1"]),
],
"mpi31-impi": [
("impi_rt", ["2021.6.0", "2021.10.0"]),
("impi_rt", ["2021.6.0", "2021.11.0"]),
],
}
mpimap = {
Expand Down

0 comments on commit 4cb1eb6

Please sign in to comment.