We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d1708 commit b5402c8Copy full SHA for b5402c8
.github/workflows/build.yml
@@ -45,4 +45,9 @@ jobs:
45
- name: Install pylops-mpi
46
run: pip install .
47
- name: Testing using pytest-mpi
48
- run: mpiexec -n ${{ matrix.rank }} pytest tests/ --with-mpi
+ run: |
49
+ if [ "${{ matrix.mpi }}" = "openmpi" ]; then
50
+ mpiexec --oversubscribe --mca btl ^openib --bind-to none -n ${{ matrix.rank }} pytest tests/ --with-mpi
51
+ else
52
+ mpiexec -n ${{ matrix.rank }} pytest tests/ --with-mpi
53
+ fi
0 commit comments