-
Notifications
You must be signed in to change notification settings - Fork 0
145 lines (125 loc) · 3.83 KB
/
impi.yml
File metadata and controls
145 lines (125 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: impi
on:
workflow_call:
inputs:
mpi4py-git:
description: 'mpi4py git'
default: mpi4py/mpi4py
required: false
type: string
mpi4py-ref:
description: 'mpi4py ref'
default: ''
required: false
type: string
workflow_dispatch:
inputs:
mpi4py-git:
description: 'mpi4py git'
default: mpi4py/mpi4py
required: false
type: string
mpi4py-ref:
description: 'mpi4py ref'
default: ''
required: false
type: string
push:
branches:
- ci/all
- ci/impi
schedule:
- cron: '0 0 * * 6'
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- windows-2025
steps:
- name: Configure hostname
run: echo 127.0.0.1 `hostname` | sudo tee -a /etc/hosts > /dev/null
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
- name: Install MPI
uses: mpi4py/setup-mpi@v1
with:
mpi: impi
- name: Tweak MPI
run: |
# Tweak MPI
echo "I_MPI_SPAWN=1" >> $GITHUB_ENV
echo "I_MPI_SPIN_COUNT=1" >> $GITHUB_ENV
echo "I_MPI_THREAD_YIELD=2" >> $GITHUB_ENV
echo "I_MPI_COMPATIBILITY=mpi-4.1" >> $GITHUB_ENV
shell: bash
- name: Show MPI
run: echo "$I_MPI_ROOT"
shell: bash
- name: Show MPICC
run: mpicc -show
- name: Use Python
uses: actions/setup-python@v6
with:
python-version: 3
architecture: x64
- name: Install Python packages (build)
run: python -m pip install --upgrade
setuptools pip wheel
- name: Install Python packages (test)
run: python -m pip install --upgrade
numpy cffi pyyaml
- name: Checkout mpi4py
uses: actions/checkout@v6
with:
repository: ${{ inputs.mpi4py-git || 'mpi4py/mpi4py' }}
ref: ${{ inputs.mpi4py-ref }}
- name: Install mpi4py
run: python -m pip install .
env:
CFLAGS: "-O0"
- name: Check ringtest
run: mpiexec -n 2 python -m mpi4py.bench ringtest
env: {I_MPI_DEBUG: 5}
- name: Test mpi4py (singleton)
run: python test/main.py -v
- 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
timeout-minutes: 10
- name: Test mpi4py (np=3)
run: mpiexec -n 3 python test/main.py -v -f
timeout-minutes: 10
- name: Test mpi4py (np=4)
run: mpiexec -n 4 python test/main.py -v -f
timeout-minutes: 10
- name: Test mpi4py (np=5)
run: mpiexec -n 5 python test/main.py -v -f
timeout-minutes: 10
if: ${{ false }}
- name: Test mpi4py.futures (singleton)
run: python demo/futures/test_futures.py -v
- name: Test mpi4py.futures (np=1)
run: mpiexec -n 1 python demo/futures/test_futures.py -v
- name: Test mpi4py.futures (np=2)
run: mpiexec -n 2 python demo/futures/test_futures.py -v
- name: Test mpi4py.futures (np=3)
run: mpiexec -n 3 python demo/futures/test_futures.py -v
- name: Test mpi4py.futures (np=1)
run: mpiexec -n 1 python -m mpi4py.futures demo/futures/test_futures.py -v
- name: Test mpi4py.futures (np=2)
run: mpiexec -n 2 python -m mpi4py.futures demo/futures/test_futures.py -v
- name: Test mpi4py.futures (np=3)
run: mpiexec -n 3 python -m mpi4py.futures demo/futures/test_futures.py -v
- name: Test mpi4py.run
run: python demo/test-run/test_run.py -v
- name: Test init-fini
run: bash demo/init-fini/run.sh
- name: Test check-mpiexec
run: bash demo/check-mpiexec/run.sh