-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MPI platform tag and have LAMMPS use it (#4540)
* Add MPI platform tag * Make LAMMPS use the MPI platform tag * fixup! Add MPI platform tag * fixup! Add MPI platform tag * fixup! Make LAMMPS use the MPI platform tag * Update platforms/mpi.jl
- Loading branch information
Showing
2 changed files
with
77 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
module MPI | ||
|
||
const tag_name = "mpi" | ||
|
||
const augment = raw""" | ||
# Can't use Preferences since we might be running this very early with a non-existing Manifest | ||
MPIPreferences_UUID = Base.UUID("3da0fdf6-3ccc-4f1b-acd9-58baa6c99267") | ||
const preferences = Base.get_preferences(MPIPreferences_UUID) | ||
# Keep logic in sync with MPIPreferences.jl | ||
const binary = get(preferences, "binary", Sys.iswindows() ? "MicrosoftMPI_jll" : "MPICH_jll") | ||
const abi = if binary == "system" | ||
get(preferences, "abi") | ||
elseif binary == "MicrosoftMPI_jll" | ||
"MicrosoftMPI" | ||
elseif binary == "MPICH_jll" | ||
"MPICH" | ||
elseif binary == "OpenMPI_jll" | ||
"OpenMPI" | ||
elseif binary == "MPItrampoline_jll" | ||
"MPIwrapper" | ||
else | ||
error("Unknown binary: $binary") | ||
end | ||
function augment_mpi!(platform) | ||
if !haskey(platform, "mpi") | ||
platform["mpi"] = abi | ||
end | ||
return platform | ||
end | ||
""" | ||
|
||
using BinaryBuilder, Pkg | ||
using Base.BinaryPlatforms | ||
|
||
mpi_abis = ( | ||
("MPICH", PackageSpec(name="MPICH_jll"), "", !Sys.iswindows) , | ||
("OpenMPI", PackageSpec(name="OpenMPI_jll"), "", !Sys.iswindows), | ||
("MicrosoftMPI", PackageSpec(name="MicrosoftMPI_jll"), "", Sys.iswindows), | ||
("MPIwrapper", PackageSpec(name="MPItrampoline_jll"), "", !Sys.iswindows) | ||
) | ||
|
||
function augment_platforms(platforms) | ||
all_platforms = AbstractPlatform[] | ||
dependencies = [] | ||
for (abi, pkg, compat, f) in mpi_abis | ||
pkg_platforms = deepcopy(filter(f, platforms)) | ||
foreach(pkg_platforms) do p | ||
p[tag_name] = abi | ||
end | ||
append!(all_platforms, pkg_platforms) | ||
push!(dependencies, Dependency(pkg; compat, platforms=pkg_platforms)) | ||
end | ||
return all_platforms, dependencies | ||
end | ||
|
||
end |