1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# (c) 2012-2018 Los Alamos National Security, LLC. All rights reserved.
# Open MPI configuration for Cray XC v2.x GNU compiler,
# Lustre
if test "$CC" = "cc" ; then
echo "ERROR: Open MPI should not be compiled with Cray's wrapper compilers (cc/CC/ftn)"
exit 1
fi
source ./common
source ./common-optimized
# enable Lustre in romio
with_io_romio_flags="--with-file-system=ufs+nfs+lustre"
# Disable components not needed
enable_mca_no_build=routed-linear,pml-v,pml-example,pml-cm,ess-cnos,grpcomm-cnos,plm-rsh,btl-tcp,oob-ud,ras-simulator,mpool-fake
enable_mca_static=btl:ugni,btl:self,btl:vader,pml:ob1
# enable direct calling for ob1
enable_mca_direct=pml-ob1
# do not use torque
with_tm=no
enable_dlopen=yes
enable_orte_static_ports=no
enable_pty_support=no
|