-
Notifications
You must be signed in to change notification settings - Fork 39
288 lines (247 loc) · 7.6 KB
/
build-and-test.yml
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build-and-test-cpu-cli:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
compiler: [g++, clang++, cl]
redistributable: [OFF, ON]
exclude:
- os: ubuntu-latest
compiler: cl
- os: macos-latest
compiler: cl
- os: macos-latest
compiler: g++
- os: windows-latest
compiler: g++
- os: windows-latest
compiler: clang++
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Prep Build
shell: bash
run: |
set -e
echo "CXX=${{ matrix.compiler }}" >> $GITHUB_ENV
echo "SCAMP_ENABLE_BINARY_DISTRIBUTION=${{ matrix.redistributable }}" >> $GITHUB_ENV
- name: Build SCAMP
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE
mkdir build && cd build
cmake ..
cmake --build . --config Release --parallel 2
if [ -f "./Release/SCAMP.exe" ]; then
cp ./Release/SCAMP.exe .
fi
- name: Basic Tests SCAMP
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE/test
./run_tests.sh ../build/SCAMP /dev/null "--no_gpu=true --num_cpu_workers=2"
- name: Extended Tests SCAMP
shell: bash
run: |
set -e
python3 -m pip install numpy pandas tqdm
cd $GITHUB_WORKSPACE/test
python3 ./run_tests.py --executable "../build/SCAMP" --extra_args "--no_gpu --num_cpu_workers=2"
build-and-test-arch-emulation:
strategy:
fail-fast: false
matrix:
# TODO(zpzim): Windows is disabled for now because it is flaky.
#os: [ubuntu-latest, windows-latest]
#compiler: [g++, clang++, cl]
os: [ubuntu-latest]
compiler: [g++, clang++]
#exclude:
# - os: ubuntu-latest
# compiler: cl
# - os: windows-latest
# compiler: g++
# - os: windows-latest
# compiler: clang++
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Setup SDE binaries
uses: petarpetrovt/setup-sde@v2.3
with:
sdeVersion: 9.27.0
- name: Prep Build
shell: bash
run: |
set -e
echo "CXX=${{ matrix.compiler }}" >> $GITHUB_ENV
echo "SCAMP_ENABLE_BINARY_DISTRIBUTION=ON" >> $GITHUB_ENV
if [ "${{ matrix.os }}" = "windows-latest" ]; then
SDE_PATH=`cygpath -u $SDE_PATH`
echo $SDE_PATH
echo "SDE_BINARY_PATH=${SDE_PATH}/sde.exe" >> $GITHUB_ENV
else
echo "SDE_BINARY_PATH=${SDE_PATH}/sde64" >> $GITHUB_ENV
fi
- name: Build SCAMP
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE
mkdir build && cd build
cmake ..
cmake --build . --config Release --parallel 2
if [ -f "./Release/SCAMP.exe" ]; then
cp ./Release/SCAMP.exe .
fi
- name: Intel x86 Emulation Tests
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE/test
./run_intel_emulation_tests.sh "../build/SCAMP" ${SDE_BINARY_PATH}
build-and-test-cpu-distributed:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
compiler: [g++, clang++]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Prep Build
run: |
echo "CXX=${{ matrix.compiler }}" >> $GITHUB_ENV
if [ "${{ matrix.compiler }}" = "g++" ]; then
echo "CC=gcc" >> $GITHUB_ENV
elif [ "${{ matrix.compiler }}" = "clang++" ]; then
echo "CC=clang" >> $GITHUB_ENV
fi
- name: Build SCAMP Distributed
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE
mkdir build && cd build
cmake -DBUILD_CLIENT_SERVER=1 ..
cmake --build . --config Release --parallel 2
- name: Distributed Tests SCAMP
shell: bash
run: |
set -e
python3 -m pip install numpy pandas tqdm
cd $GITHUB_WORKSPACE/test
../build/src/distributed/SCAMPserver &
../build/src/distributed/SCAMPclient &
sleep 10
./run_tests.sh ../build/src/distributed/SCAMP_distributed /dev/null
python3 ./run_tests.py --executable ../build/src/distributed/SCAMP_distributed --matrix_sizes --window_sizes 100 --extra_args "--no_gpu --num_cpu_workers=1 --distributed_tile_size=1500"
build-and-test-cpu-pyscamp:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
redistributable: [OFF, ON]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Prep Build
shell: bash
run: |
set -e
echo "SCAMP_ENABLE_BINARY_DISTRIBUTION=${{ matrix.redistributable }}" >> $GITHUB_ENV
- name: Build pyscamp
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE
python3 -m pip install numpy pandas tqdm setuptools
python3 setup.py sdist
python3 -m pip install -v dist/*
- name: pyscamp Test
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE/test
python3 test_pyscamp.py
python3 ./run_tests.py --executable pyscamp
build-cuda-cli:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
compiler: [g++, clang++, cl]
exclude:
- os: ubuntu-latest
compiler: cl
- os: windows-latest
compiler: g++
- os: windows-latest
compiler: clang++
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- uses: Jimver/cuda-toolkit@v0.2.6
id: cuda-toolkit
with:
cuda: '11.7.0'
- name: Prep Build
run: echo "CXX=${{ matrix.compiler }}" >> $GITHUB_ENV
- name: Build SCAMP
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE
mkdir build && cd build
cmake -DFORCE_CUDA=1 ..
cmake --build . --config Release --parallel 2
build-and-test-cuda:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Build SCAMP with CUDA
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE
mkdir build && cd build
cmake -DFORCE_CUDA=1 ..
cmake --build . --config Release --parallel 2
- name: Basic CUDA Tests SCAMP
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE/test
./run_tests.sh ../build/SCAMP /dev/null "--num_cpu_workers=0"
- name: Extended Tests SCAMP
shell: bash
run: |
set -e
cd $GITHUB_WORKSPACE/test
python3 ./run_tests.py --executable "../build/SCAMP" --force_gpu --extra_args " --num_cpu_workers=0"