Skip to content

Commit

Permalink
copy tpp-mlir
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Jan 31, 2024
1 parent a8a1cab commit dd8c8f6
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/tpp-mlir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Basic TPP-MLIR Builder

# For now, we do it manually, but this will need to be on commit
on:
workflow_dispatch:
push:
branches: [ "ghactions" ]
pull_request:
branches: [ "ghactions" ]

jobs:
runs-on: self-hosted
Check_LLVM:
run: "BUILD=1 scripts/buildkite/check_llvm.sh"

TPP-MLIR-gcc-rel:
needs: Check_LLVM
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

TPP-MLIR-gcc-deb:
needs: Check_LLVM
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

TPP-MLIR-clang-rel:
needs: Check_LLVM
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=clang LINKER=lld CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

- label: "TPP-MLIR-clang-deb"
needs: Check_LLVM
command: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=clang LINKER=lld SANITIZERS=1 CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

0 comments on commit dd8c8f6

Please sign in to comment.