-
Notifications
You must be signed in to change notification settings - Fork 385
525 lines (522 loc) · 18.9 KB
/
build.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
name: Build and Run Tests
on:
workflow_call:
inputs:
run-tests:
description: 'Whether to also run unit tests where possible.'
default: true
required: false
type: boolean
update-caches:
description: 'Whether to update the `ccache` or `bazel` caches, where possible.'
default: false
required: false
type: boolean
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ inputs.update-caches }}
cancel-in-progress: true
jobs:
cmake-linux-x86_64:
runs-on: ubuntu-22.04-8core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Configure and build
run: scripts/build-local.sh
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
run: ctest --output-on-failure --parallel $(nproc)
working-directory: ${{ github.workspace }}/build/local
cmake-linux-aarch64:
runs-on: arm-ubuntu-arm-22.04-8core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Configure and build
run: scripts/build-local.sh
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
run: ctest --output-on-failure --parallel $(nproc)
working-directory: ${{ github.workspace }}/build/local
cmake-linux-armhf:
runs-on: arm-ubuntu-arm-22.04-8core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Install armhf cross-toolchain
run: sudo apt install crossbuild-essential-armhf
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Configure and build
run: scripts/build-linux-armhf.sh -DCMAKE_BUILD_TYPE=Release
working-directory: ${{ github.workspace }}
- name: Link the armhf loader to run the test binaries
run: sudo ln -s /usr/arm-linux-gnueabihf/lib/ld-linux-armhf.so.3 /usr/lib/ld-linux-armhf.so.3
- name: Run tests
if: ${{ inputs.run-tests }}
env:
LD_LIBRARY_PATH: /usr/arm-linux-gnueabihf/lib/:${{ env.LD_LIBRARY_PATH }}
run: ctest --output-on-failure --parallel $(nproc)
working-directory: ${{ github.workspace }}/build/linux/armhf
cmake-linux-riscv64:
runs-on: ubuntu-22.04-16core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Install riscv64 cross-toolchain
run: sudo apt install crossbuild-essential-riscv64
- name: Install qemu-riscv64
run: sudo apt install qemu-user
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Configure and build
run: scripts/build-linux-riscv64.sh -DCMAKE_BUILD_TYPE=Release -DXNNPACK_ENABLE_RISCV_VECTOR=OFF
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
run: ctest --output-on-failure --parallel $(nproc)
working-directory: ${{ github.workspace }}/build/linux/riscv64
cmake-linux-riscv64-rvv:
runs-on: ubuntu-22.04-16core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Download and Install riscv64 cross-toolchain tarball
run: |
wget -nv https://github.com/riscv-collab/riscv-gnu-toolchain/releases/download/2024.09.03/riscv64-glibc-ubuntu-22.04-llvm-nightly-2024.09.03-nightly.tar.gz
tar xzf riscv64-glibc-ubuntu-22.04-llvm-nightly-2024.09.03-nightly.tar.gz
working-directory: ${{ github.workspace }}
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Configure and build
run: |
scripts/build-linux-riscv64.sh \
-DCMAKE_BUILD_TYPE=Release \
-DXNNPACK_ENABLE_RISCV_VECTOR=ON \
-DUSE_GNU_SOURCE=ON \
-DRISCV_TOOLCHAIN_ROOT=${{ github.workspace }}/riscv/ \
-DRISCV_QEMU_ROOT=${{ github.workspace }}/riscv/
working-directory: ${{ github.workspace }}
- name: Run tests (no operator tests)
if: ${{ inputs.run-tests }}
run: ctest --output-on-failure -LE operator --parallel $(nproc)
working-directory: ${{ github.workspace }}/build/linux/riscv64
cmake-windows-arm64:
runs-on: windows-2022-32core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Setup build environment
shell: bash
run: |
echo "VCVARSALL=$(vswhere -products \* -latest -property installationPath)\\VC\\Auxiliary\\Build\\vcvarsall.bat" >> $GITHUB_ENV
- name: Configure and build
run: scripts/build-windows-arm64.cmd
shell: cmd
working-directory: ${{ github.workspace }}
env:
CFLAGS: "/UNDEBUG"
CXXFLAGS: "/UNDEBUG"
cmake-windows-x64:
runs-on: windows-2022-32core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Setup build environment
shell: bash
run: |
echo "VCVARSALL=$(vswhere -products \* -latest -property installationPath)\\VC\\Auxiliary\\Build\\vcvarsall.bat" >> $GITHUB_ENV
- name: Configure and build
run: scripts/build-windows-x64.cmd
shell: cmd
working-directory: ${{ github.workspace }}
env:
CFLAGS: "/UNDEBUG"
CXXFLAGS: "/UNDEBUG"
- name: Run tests
if: ${{ inputs.run-tests }}
run: ctest -C Release --output-on-failure --parallel $NUMBER_OF_PROCESSORS
working-directory: ${{ github.workspace }}/build/windows/x64
cmake-windows-x86:
runs-on: windows-2022-32core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Setup build environment
shell: bash
run: |
echo "VCVARSALL=$(vswhere -products \* -latest -property installationPath)\\VC\\Auxiliary\\Build\\vcvarsall.bat" >> $GITHUB_ENV
- name: Configure and build
run: scripts/build-windows-x86.cmd
shell: cmd
working-directory: ${{ github.workspace }}
env:
CFLAGS: "/UNDEBUG"
CXXFLAGS: "/UNDEBUG"
- name: Run tests
if: ${{ inputs.run-tests }}
run: ctest -C Release --output-on-failure --parallel $NUMBER_OF_PROCESSORS
working-directory: ${{ github.workspace }}/build/windows/x86
cmake-macos-arm64:
runs-on: macos-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Install ninja
run: brew install ninja
- name: Create output directory
run: mkdir -p build/macos/arm64
working-directory: ${{ github.workspace }}
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Generate CMake project
run: |
cmake \
-G Ninja \
-DCMAKE_CONFIGURATION_TYPES=Release \
-DCMAKE_OSX_ARCHITECTURES=arm64 \
-DHAVE_STD_REGEX=TRUE \
../../..
working-directory: ${{ github.workspace }}/build/macos/arm64
- name: Build with Xcode
run: |
cmake \
--build \
build/macos/arm64 \
-j$((2*$(sysctl -n hw.ncpu)))
working-directory: ${{ github.workspace }}
cmake-android:
strategy:
matrix:
arch: [arm64, armv7, x86]
runs-on: ubuntu-22.04-8core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install ninja
run: sudo apt install ninja-build
- name: Setup Android NDK
id: setup-ndk
uses: nttld/setup-ndk@v1
with:
ndk-version: r26d
add-to-path: false
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}-${{ matrix.arch }}
max-size: "500M"
save: ${{ inputs.update-caches }}
- name: Force compiler binary mtime
# The nttld/setup-ndk action downloads the compiler binaries and copies them to the
# tools-cache, where their mtimes are set to the current time. This is bad since ccache
# uses the compiler binary mtime to determine whether two compilations match. We solve
# this problem by coercing the mtime of the compiler binaries to a fixed value. Note that
# if the compiler does indeed change, this will also cause the path to change as it would
# imply using a different NDK version.
run: |
find ${{ steps.setup-ndk.outputs.ndk-path }} -wholename '*/bin/clang*' -executable -type f,l -exec touch -h -t 202408130000 {} +
- name: Configure and build
run: scripts/build-android-${{ matrix.arch }}.sh
working-directory: ${{ github.workspace }}
env:
ANDROID_NDK: ${{ steps.setup-ndk.outputs.ndk-path }}
cmake-ios-arm64:
runs-on: macos-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Create output directory
run: mkdir -p build/ios/arm64
working-directory: ${{ github.workspace }}
- name: Generate CMake project
run: cmake -G Xcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64 -DXNNPACK_BUILD_BENCHMARKS=OFF -DXNNPACK_BUILD_TESTS=OFF ../../..
working-directory: ${{ github.workspace }}/build/ios/arm64
- name: Build with Xcode
run: cmake --build build/ios/arm64 --parallel $(sysctl -n hw.ncpu) -- -quiet
working-directory: ${{ github.workspace }}
cmake-ios-x86_64:
runs-on: macos-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Create output directory
run: mkdir -p build/ios/x86_64
working-directory: ${{ github.workspace }}
- name: Generate CMake project
run: cmake -G Xcode -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=x86_64 -DXNNPACK_BUILD_BENCHMARKS=OFF -DXNNPACK_BUILD_TESTS=OFF ../../..
working-directory: ${{ github.workspace }}/build/ios/x86_64
- name: Build with Xcode
run: cmake --build build/ios/x86_64 --parallel $(sysctl -n hw.ncpu) -- -sdk iphonesimulator -quiet
working-directory: ${{ github.workspace }}
bazel-linux-x86_64-clang-18:
runs-on: ubuntu-22.04-8core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install clang-18
working-directory: ${{ github.workspace }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
- name: Restore bazel cache
uses: actions/cache/restore@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}
restore-keys: |
${{ github.job }}-
- name: Build tests
env:
CC: clang-18
CXX: clang++-18
run: |
bazel build test:all
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
env:
CC: clang-18
CXX: clang++-18
run: |
bazel test --test_output=errors test:all
working-directory: ${{ github.workspace }}
- name: Compress disk cache
# Bazel's `--disk-cache` currently grows without bounds, so we remove files
# that haven't been accessed in 7+ days manually.
if: ${{ inputs.update-caches }}
run: find $HOME/.cache/bazel -type f -atime +7 -delete
- name: Save bazel cache
if: ${{ inputs.update-caches }}
uses: actions/cache/save@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}
bazel-linux-x86_64-gcc-9:
runs-on: ubuntu-22.04-8core
timeout-minutes: 60
env:
CC: gcc-9
CXX: g++-9
BAZEL_DEFINES: --define=xnn_enable_avxvnni=false --define=xnn_enable_avx256vnni=false --define=xnn_enable_avxvnniint8=false --define=xnn_enable_avx512amx=false --define=xnn_enable_avx512fp16=false --define=xnn_enable_avx512bf16=false
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install gcc-9
working-directory: ${{ github.workspace }}
run: |
sudo apt install gcc-9 g++-9
- name: Restore bazel cache
uses: actions/cache/restore@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}
restore-keys: |
${{ github.job }}-
- name: Build tests
run: |
bazel build ${BAZEL_DEFINES} test:all
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
run: |
bazel test ${BAZEL_DEFINES} --test_output=errors test:all
working-directory: ${{ github.workspace }}
- name: Compress disk cache
# Bazel's `--disk-cache` currently grows without bounds, so we remove files
# that haven't been accessed in 7+ days manually.
if: ${{ inputs.update-caches }}
run: find $HOME/.cache/bazel -type f -atime +7 -delete
- name: Save bazel cache
if: ${{ inputs.update-caches }}
uses: actions/cache/save@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}
bazel-linux-aarch64-clang18:
runs-on: arm-ubuntu-arm-22.04-4core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install clang-18
working-directory: ${{ github.workspace }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
- name: Restore bazel cache
uses: actions/cache/restore@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}
restore-keys: |
${{ github.job }}-
- name: Build tests
env:
CC: clang-18
CXX: clang++-18
run: |
bazel build test:all
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
env:
CC: clang-18
CXX: clang++-18
run: |
# We only test the KleidiAI integration for now.
bazel test \
--test_output=all \
--test_filter=*QP8* \
test:qp8_f32_qc4w_gemm_minmax_test \
test:fully_connected_nc_test \
test:fully_connected_test
working-directory: ${{ github.workspace }}
- name: Compress disk cache
# Bazel's `--disk-cache` currently grows without bounds, so we remove files
# that haven't been accessed in 7+ days manually.
if: ${{ inputs.update-caches }}
run: find $HOME/.cache/bazel -type f -atime +7 -delete
- name: Save bazel cache
if: ${{ inputs.update-caches }}
uses: actions/cache/save@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}
bazel-linux-aarch64-gcc13:
# This ensures we have solid test coverage for _Float16
runs-on: arm-ubuntu-arm-22.04-4core
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Add repository ppa:ubuntu-toolchain-r/test for gcc-13 and g++-13
working-directory: ${{ github.workspace }}
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
- name: Install gcc-13 (cached)
uses: awalsh128/[email protected]
with:
packages: gcc-13 g++-13
version: 1.0
- name: Restore bazel cache
uses: actions/cache/restore@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}
restore-keys: |
${{ github.job }}-
- name: Build tests
env:
CC: gcc-13
CXX: g++-13
run: |
bazel build test:all
working-directory: ${{ github.workspace }}
- name: Run tests
if: ${{ inputs.run-tests }}
env:
CC: gcc-13
CXX: g++-13
run: |
# We only test the KleidiAI integration for now.
bazel test \
--test_output=all \
--test_filter=*QP8* \
test:qp8_f32_qc4w_gemm_minmax_test \
test:fully_connected_nc_test \
test:fully_connected_test
working-directory: ${{ github.workspace }}
- name: Compress disk cache
# Bazel's `--disk-cache` currently grows without bounds, so we remove files
# that haven't been accessed in 7+ days manually.
if: ${{ inputs.update-caches }}
run: find $HOME/.cache/bazel -type f -atime +7 -delete
- name: Save bazel cache
if: ${{ inputs.update-caches }}
uses: actions/cache/save@v4
with:
path: "/home/runner/.cache/bazel"
key: ${{ github.job }}-${{ github.sha }}