TPP-MLIR LLVM Build #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |