Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/mpi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ function __init__()
global MPIImpl[] = :OpenMPI
elseif occursin(r"MPICH", versionString)
global MPIImpl[] = :MPICH3
elseif occursin("Intel(R) MPI", versionString)
global MPIImpl[] = :IntelMPI
else
error("don't know which MPI implemetation you are using here")
error("don't know which MPI implemetation you are using here: ", versionString)
end
end

Expand Down