no env #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 Benchmarks | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "ghactions" ] | ||
pull_request: | ||
branches: [ "ghactions" ] | ||
env: | ||
NPROCS_LIMIT_LINK: 8 | ||
RUN_SPR_BENCH: 1 | ||
jobs: | ||
Check_LLVM: | ||
runs-on: self-hosted | ||
steps: | ||
- name: Check LLVM | ||
run: "BUILD=1 scripts/buildkite/check_llvm.sh" | ||
TPP-MLIR-SPR-BASE: | ||
runs-on: self-hosted | ||
needs: Check_LLVM | ||
steps: | ||
- name: Sapphire Rapids Base | ||
run: "${SRUN} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \ | ||
'KIND=Release COMPILER=clang LINKER=lld \ | ||
scripts/buildkite/benchmark.sh -b -p'" | ||
if: ${{ RUN_SPR_BENCH }} == "1" | ||
Check failure on line 29 in .github/workflows/tpp-benchmark.yml GitHub Actions / TPP-MLIR BenchmarksInvalid workflow file
|
||
TPP-MLIR-SPR-OMP: | ||
runs-on: self-hosted | ||
needs: Check_LLVM | ||
steps: | ||
- name: Sapphire Rapids OpenMP | ||
run: "${SRUN} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \ | ||
'KIND=Release COMPILER=clang LINKER=lld \ | ||
scripts/buildkite/benchmark.sh -o'" | ||
if: ${{ RUN_SPR_BENCH }} == "1" | ||