-
Notifications
You must be signed in to change notification settings - Fork 31
42 lines (36 loc) · 1.27 KB
/
tpp-llvm.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
name: TPP-MLIR LLVM Build
on:
workflow_dispatch:
env:
NPROCS_LIMIT_LINK: 8
jobs:
TPP-MLIR-LLVM-Base:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: LLVM Base
run: |-
command: "scripts/buildkite/check_llvm.sh || \
${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=RelWithDebInfo COMPILER=clang \
${{ github.workspace }}/scripts/buildkite/build_llvm.sh'
TPP-MLIR-LLVM-CUDA:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: LLVM CUDA
run: |-
command: "scripts/buildkite/check_llvm.sh || \
${{ secrets.SRUN }} --partition=a100,v100 --time=0:30:00 -- \
'KIND=RelWithDebInfo COMPILER=clang GPU=cuda \
${{ github.workspace }}/scripts/buildkite/build_llvm.sh'
TPP-MLIR-LLVM-Vulkan:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: LLVM Vulkan
run: |-
command: "scripts/buildkite/check_llvm.sh || \
${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=RelWithDebInfo COMPILER=clang GPU=vulkan \
${{ github.workspace }}/scripts/buildkite/build_llvm.sh'