From b4b7b1df51f45917a366a6574541801c63b708bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Sch=C3=BCtt?= Date: Sun, 27 Feb 2022 14:15:22 +0100 Subject: [PATCH] Docker: Run performance tests with -bind-to socket --- tools/docker/scripts/test_performance.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker/scripts/test_performance.sh b/tools/docker/scripts/test_performance.sh index f72fe71116..f63e1aa4c9 100755 --- a/tools/docker/scripts/test_performance.sh +++ b/tools/docker/scripts/test_performance.sh @@ -16,7 +16,7 @@ function run_benchmark { INPUT=$3 OUTPUT=$4 echo -n "Running ${INPUT} with ${OMP_THREADS} threads and ${MPI_RANKS} ranks... " - if OMP_NUM_THREADS="${OMP_THREADS}" mpiexec -np "${MPI_RANKS}" \ + if OMP_NUM_THREADS="${OMP_THREADS}" mpiexec -bind-to socket -np "${MPI_RANKS}" \ "/workspace/cp2k/exe/${ARCH}/cp2k.psmp" "${INPUT}" &> "${OUTPUT}"; then echo "done." else