Skip to content
Snippets Groups Projects
Unverified Commit abecc4df authored by Andreas Klöckner's avatar Andreas Klöckner Committed by GitHub
Browse files

Merge pull request #108 from inducer/oversubscribe-mpi-tests

Tell mpiexec to oversubscribe during test
parents be1bcc9d ee82f2d6
No related branches found
No related tags found
1 merge request!110Tell mpiexec to oversubscribe during test
Pipeline #125628 passed
......@@ -7,7 +7,6 @@ dependencies:
- python=3
- git
- numpy
- libhwloc=1
- pocl
- mako
- pyopencl
......
......@@ -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,
......
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