-
Notifications
You must be signed in to change notification settings - Fork 31
55 lines (48 loc) · 1.59 KB
/
tpp-mlir.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
name: TPP-MLIR Base Tests
on:
workflow_dispatch:
push:
pull_request:
env:
NPROCS_LIMIT_LINK: 8
SRUN: ${HOME}/srun.sh
jobs:
Check_LLVM:
uses: ./.github/workflows/tpp-llvm.yml
secrets: inherit
TPP-MLIR-gcc-rel:
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: GCC Release
run: "${{ env.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=gcc CHECK=1 ONEDNN=1 \
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"
TPP-MLIR-gcc-deb:
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: GCC Debug
run: "${{ env.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=gcc CHECK=1 ONEDNN=1 \
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"
TPP-MLIR-clang-rel:
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: Clang Release
run: "${{ env.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=clang LINKER=lld CHECK=1 ONEDNN=1 \
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"
TPP-MLIR-clang-deb:
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: Clang Debug Sanitizers
run: "${{ env.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=clang LINKER=lld SANITIZERS=1 CHECK=1 ONEDNN=1 \
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"