From e16549fbdd256ed8911e38a4aadd93dc3e316c7c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 31 Jan 2021 13:10:44 -0600 Subject: [PATCH 1/2] Tell mpiexec to oversubscribe during test --- test/test_partition.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_partition.py b/test/test_partition.py index 3ca5e389..77e27137 100644 --- a/test/test_partition.py +++ b/test/test_partition.py @@ -517,7 +517,9 @@ def test_mpi_communication(num_partitions, order): from subprocess import check_call import sys check_call([ - "mpiexec", "-np", str(num_ranks), + "mpiexec", + "--oversubscribe", + "-np", str(num_ranks), "-x", "RUN_WITHIN_MPI=1", "-x", "order=%d" % order, -- GitLab From ee82f2d6c3e6b24d64d044a762c8b54ace4af5c7 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 31 Jan 2021 13:39:20 -0600 Subject: [PATCH 2/2] Drop hwloc=1 constraint for CI --- .test-conda-env-py3.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.test-conda-env-py3.yml b/.test-conda-env-py3.yml index b8f649e0..55ccfcd4 100644 --- a/.test-conda-env-py3.yml +++ b/.test-conda-env-py3.yml @@ -7,7 +7,6 @@ dependencies: - python=3 - git - numpy -- libhwloc=1 - pocl - mako - pyopencl -- GitLab