Skip to content

TPP-MLIR Base Tests #10

TPP-MLIR Base Tests

TPP-MLIR Base Tests #10

Workflow file for this run

name: TPP-MLIR Base Tests
on:
workflow_dispatch:
# push:
# branches: [ "ghactions" ]
# pull_request:
# branches: [ "ghactions" ]
env:
NPROCS_LIMIT_LINK: 8
jobs:
Check_LLVM:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: Check LLVM
run: "BUILD=1 scripts/buildkite/check_llvm.sh"
TPP-MLIR-gcc-rel:
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: GCC Release
run: "${{ secrets.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: "${{ secrets.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: "${{ secrets.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: "${{ secrets.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'"