File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
if [[ $EESSI_CVMFS_REPO == " /cvmfs/software.eessi.io" ]] && [[ $EESSI_VERSION == " 2023.06" ]]; then
4
4
echo " Running demo for OpenFOAM v11 ..."
5
- export OMPI_MCA_rmaps_base_oversubscribe=true
5
+
6
+ # Allow oversubscription in case we don't have enough available cores
7
+ export OMPI_MCA_rmaps_base_oversubscribe=${OMPI_MCA_rmaps_base_oversubscribe:- " true" }
8
+ # By default disable UCX and libfabric since we typically run these examples on demo nodes without fast interconnect
9
+ export OMPI_MCA_osc=${OMPI_MCA_osc:- " ^ucx" }
10
+ export OMPI_MCA_btl=${OMPI_MCA_btl:- " ^openib,ofi" }
11
+ export OMPI_MCA_pml=${OMPI_MCA_pml:- " ^ucx" }
12
+ export OMPI_MCA_mtl=${OMPI_MCA_mtl:- " ^ofi" }
13
+
6
14
./bike_OpenFOAM_v11.sh
7
15
else
8
16
echo " Don't know which OpenFOAM module to load for ${EESSI_CVMFS_REPO} /versions/${EESSI_VERSION} " >&2
You can’t perform that action at this time.
0 commit comments