Skip to content

Commit b3b2acc

Browse files
committed
Increased number of available tasks
1 parent a83b066 commit b3b2acc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ jobs:
214214
python -c "import gusto; print(f'gusto module: {gusto}')"
215215
- name: run pytest
216216
run: |
217+
export OMPI_UNIVERSE_SIZE=64
217218
. venv-pySDC/bin/activate
218219
firedrake-clean
219220
cd ./pySDC

pySDC/tests/test_tutorials/test_step_7.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_E_MPI():
143143
my_env['COVERAGE_PROCESS_START'] = 'pyproject.toml'
144144
cwd = '.'
145145
num_procs = 3
146-
cmd = f'mpiexec -np {num_procs} python pySDC/tutorial/step_7/E_pySDC_with_Firedrake.py --useMPIsweeper'.split()
146+
cmd = f'mpiexec -np {num_procs} --oversubscribe python pySDC/tutorial/step_7/E_pySDC_with_Firedrake.py --useMPIsweeper'.split()
147147

148148
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=my_env, cwd=cwd)
149149
p.wait()

0 commit comments

Comments
 (0)