Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for Parastation MPICH toolchains with Intel compilers #1072

Merged
merged 2 commits into from
Dec 12, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Empty file modified easybuild/toolchains/iimpi.py
100755 → 100644
Empty file.
2 changes: 0 additions & 2 deletions easybuild/toolchains/intel-para.py
Expand Up @@ -39,6 +39,4 @@ class IntelPara(Ipsmpi, IntelMKL, IntelFFTW):
Intel Math Kernel Library (MKL) and Intel FFTW wrappers.
"""
NAME = 'intel-para'
# Parastation MPI needs to be matched with the IntelMPI blacs library
BLACS_LIB = ["mkl_blacs_intelmpi%(lp64)s"]

Empty file modified easybuild/toolchains/intel.py
100755 → 100644
Empty file.
Empty file modified easybuild/toolchains/ipsmpi.py
100755 → 100644
Empty file.
3 changes: 2 additions & 1 deletion easybuild/toolchains/linalg/intelmkl.py
Expand Up @@ -126,7 +126,8 @@ def _set_blacs_variables(self):
"OpenMPI": '_openmpi',
"IntelMPI": '_intelmpi',
"MVAPICH2": '_intelmpi',
"MPICH2":'',
"MPICH2": '_intelmpi',
"MPICH": '_intelmpi',
}
try:
self.BLACS_LIB_MAP.update({'mpi': mpimap[self.MPI_FAMILY]})
Expand Down