-
Notifications
You must be signed in to change notification settings - Fork 255
261 lines (220 loc) · 6.76 KB
/
pytest-core-nompi.yaml
File metadata and controls
261 lines (220 loc) · 6.76 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
name: CI-core
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# Trigger the workflow on push or pull request, but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-nompi-basic:
name: ${{ matrix.name }}-${{ matrix.set }}
runs-on: "${{ matrix.os }}"
env:
DEVITO_ARCH: "${{ matrix.arch }}"
DEVITO_LANGUAGE: ${{ matrix.language }}
OMP_NUM_THREADS: 2
strategy:
# Prevent cancellation if a single workflow fails
fail-fast: false
matrix:
name: [
pytest-osx-py312-clang-omp,
pytest-ubuntu-py310-gcc14-omp,
pytest-ubuntu-py310-gcc9-omp,
pytest-ubuntu-py311-gcc10-noomp,
pytest-ubuntu-py311-gcc11-cxxnoomp,
pytest-ubuntu-py312-gcc12-cxxomp,
pytest-ubuntu-py312-gcc13-omp,
pytest-ubuntu-py313-gcc14-omp
]
set: [base, adjoint]
include:
- name: pytest-ubuntu-py311-gcc11-cxxnoomp
python-version: '3.11'
os: ubuntu-22.04
arch: "gcc-11"
language: "CXX"
sympy: "1.14"
- name: pytest-ubuntu-py312-gcc12-cxxomp
python-version: '3.12'
os: ubuntu-24.04
arch: "gcc-12"
language: "CXXopenmp"
sympy: "1.13"
- name: pytest-ubuntu-py310-gcc14-omp
python-version: '3.10'
os: ubuntu-24.04
arch: "gcc-14"
language: "openmp"
sympy: "1.12"
- name: pytest-ubuntu-py311-gcc10-noomp
python-version: '3.11'
os: ubuntu-22.04
arch: "gcc-10"
language: "C"
sympy: "1.14"
- name: pytest-ubuntu-py312-gcc13-omp
python-version: '3.12'
os: ubuntu-24.04
arch: "gcc-13"
language: "openmp"
sympy: "1.13"
- name: pytest-ubuntu-py310-gcc9-omp
python-version: '3.10'
os: ubuntu-22.04
arch: "custom"
language: "openmp"
sympy: "1.12"
- name: pytest-osx-py312-clang-omp
python-version: '3.12'
os: macos-latest
arch: "clang"
language: "openmp"
sympy: "1.12"
- name: pytest-ubuntu-py313-gcc14-omp
python-version: '3.13'
os: ubuntu-24.04
arch: "gcc-14"
language: "openmp"
sympy: "1.14"
- set: base
test-set: 'not adjoint'
- set: adjoint
test-set: 'adjoint'
exclude:
- name: pytest-osx-py312-clang-omp
set: adjoint
steps:
- name: Checkout devito
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install ${{ matrix.arch }} compiler
if: "runner.os == 'linux' && matrix.arch !='custom' "
run : |
sudo apt-get install -y ${{ matrix.arch }}
- name: Set tests (reduced number for OSX)
run : |
if [ "${{ runner.os }}" == 'macOS' ]; then
brew install llvm libomp
echo "/opt/homebrew/opt/llvm/bin" >> "$GITHUB_PATH"
fi
id: set-tests
- name: Set pip flags for latest python (3.12)
run: |
ver="${{ matrix.python-version }}"
major=${ver%%.*}
minor=${ver#*.}; minor=${minor%%.*}
if [ "$major" -eq 3 ] && [ "$minor" -ge 12 ]; then
echo "PIPFLAGS='--break-system-packages'" >> "$GITHUB_ENV"
fi
- name: Install dependencies
run: |
python3 -m pip install ${{ env.PIPFLAGS }} --upgrade pip
python3 -m pip install ${{ env.PIPFLAGS }} -e ".[tests,extras]"
python3 -m pip install ${{ env.PIPFLAGS }} sympy==${{matrix.sympy}}
- name: Backward compat for numpy 1.26
if: matrix.name == 'pytest-ubuntu-py310-gcc14-omp'
run: python3 -m pip install ${{ env.PIPFLAGS }} numpy==1.26
- name: Check configuration
run: |
python3 \
-c "from devito import configuration; \
print(''.join(['%s: %s \n' % (k, v) for (k, v) in configuration.items()]))"
- name: Test with pytest
run: |
pytest \
-v \
-k "${{ matrix.test-set }}" \
-m "not parallel" \
--cov \
--cov-config=.coveragerc \
--cov-report=xml \
tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: ${{ matrix.name }}
test-nompi-docker:
name: ${{ matrix.name }}-${{ matrix.set }}
runs-on: "${{ matrix.os }}"
env:
DEVITO_ARCH: "${{ matrix.arch }}"
DEVITO_LANGUAGE: ${{ matrix.language }}
OMP_NUM_THREADS: 2
strategy:
# Prevent cancellation if a single workflow fails
fail-fast: false
matrix:
name: [
pytest-docker-py310-gcc-omp,
pytest-docker-py310-gcc-omp-arm64,
pytest-docker-py310-icx-omp,
]
set: [base, adjoint]
include:
- name: pytest-docker-py310-gcc-omp
python-version: '3.10'
os: ubuntu-latest
arch: "gcc"
language: "openmp"
sympy: "1.13"
- name: pytest-docker-py310-gcc-omp-arm64
python-version: '3.10'
os: ubuntu-24.04-arm
arch: "gcc"
language: "openmp"
sympy: "1.13"
- name: pytest-docker-py310-icx-omp
python-version: '3.10'
os: ubuntu-latest
arch: "icx"
language: "openmp"
sympy: "1.13"
- set: base
test-set: 'not adjoint'
- set: adjoint
test-set: 'adjoint'
steps:
- name: Checkout devito
uses: actions/checkout@v6
- id: build
name: Build docker image
uses: ./.github/actions/docker-build
with:
file: docker/Dockerfile.devito
tag: ${{ matrix.name }}
base: devitocodes/bases:cpu-${{ matrix.arch }}
- name: Test with pytest
uses: ./.github/actions/docker-run
with:
uid: ${{ steps.build.outputs.unique }}
tag: ${{ matrix.name }}
env: |
CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}
command: |
pytest \
-v \
-k "${{ matrix.test-set }}" \
-m "not parallel" \
--cov \
--cov-config=.coveragerc \
--cov-report=xml \
tests/
- name: Cleanup docker image
if: always()
uses: ./.github/actions/docker-clean
with:
uid: ${{ steps.build.outputs.unique }}
tag: ${{ matrix.name }}