Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github act/mpi4py disable multi proc runs #12302

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 18 additions & 14 deletions .github/workflows/ompi_mpi4py.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,20 +92,24 @@ jobs:
if: ${{ true }}
- name: Test mpi4py (np=1)
run: mpiexec -n 1 python test/main.py -v
- name: Test mpi4py (np=2)
run: mpiexec -n 2 python test/main.py -v -f
- name: Test mpi4py (np=3)
run: mpiexec -n 3 python test/main.py -v -f
if: ${{ true }}
timeout-minutes: 20
- name: Test mpi4py (np=4)
run: mpiexec -n 4 python test/main.py -v -f
if: ${{ true }}
timeout-minutes: 20
- name: Test mpi4py (np=5)
run: mpiexec -n 5 python test/main.py -v -f
if: ${{ true }}
timeout-minutes: 20
#
# unfortunately these multi-rank tests aren't reliable enough to
# run in github actions right now.
#
# - name: Test mpi4py (np=2)
# run: mpiexec -n 2 python test/main.py -v -f
# - name: Test mpi4py (np=3)
# run: mpiexec -n 3 python test/main.py -v -f
# if: ${{ true }}
# timeout-minutes: 20
# - name: Test mpi4py (np=4)
# run: mpiexec -n 4 python test/main.py -v -f
# if: ${{ true }}
# timeout-minutes: 20
# - name: Test mpi4py (np=5)
# run: mpiexec -n 5 python test/main.py -v -f
# if: ${{ true }}
# timeout-minutes: 20
- name: Test mpi4py.run
run: python demo/test-run/test_run.py -v
if: ${{ true }}
Expand Down
Loading