Skip to content
Snippets Groups Projects
Unverified Commit 90193c27 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

duneci-standard-tests: OpenMPI: allow oversubscription, force degraded mode

parent ef63edab
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -21,6 +21,17 @@ if [[ -v DUNECI_PARALLEL ]]; then
parallel_opts="-j${DUNECI_PARALLEL}"
fi
# Allow oversubscription (tests might want to try having more ranks
# than environment has processors) and force degraded mode (as we
# might run multiple tests in parallel and this is not good with
# OpenMPI's agressive mode)
# References:
# - https://bugs.debian.org/850229
# - https://gitlab.dune-project.org/core/dune-grid/issues/67
# - https://www.open-mpi.org/faq/?category=running#oversubscribing
export OMPI_MCA_rmaps_base_oversubscribe=1
export OMPI_MCA_mpi_yield_when_idle=1
set -x
${DUNECONTROL} --current "${@}" vcsetup
${DUNECONTROL} --current "${@}" configure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment