Skip to content

Commit

Permalink
zen/clx/adl
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Jan 31, 2024
1 parent 5c31ac9 commit 61ad6f7
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/tpp-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ on:
default: 1
required: true
type: string
RUN_ZEN_BENCH:
description: "Run on Zen4"
default: 0
required: true
type: string
RUN_ADL_BENCH:
description: "Run on Raptor Lake"
default: 0
required: true
type: string
RUN_CLX_BENCH:
description: "Run on Coffee Lake"
default: 0
required: true
type: string
push:
branches: [ "ghactions" ]
pull_request:
Expand Down Expand Up @@ -43,4 +58,64 @@ jobs:
scripts/buildkite/benchmark.sh -o'"
if: ${{ inputs.RUN_SPR_BENCH }} == "1"

TPP-MLIR-ZEN-BASE:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Zen4 Base
run: "${{ secrets.SRUN }} --partition=zen4 --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -b -p'"
if: ${{ inputs.RUN_ZEN_BENCH }} == "1"

TPP-MLIR-ZEN-OMP:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Zen4 OpenMP
run: "${{ secrets.SRUN }} --partition=zen4 --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -o'"
if: ${{ inputs.RUN_ZEN_BENCH }} == "1"

TPP-MLIR-CLX-BASE:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Coffee Lake Base
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -b -p'"
if: ${{ inputs.RUN_CLX_BENCH }} == "1"

TPP-MLIR-CLX-OMP:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Coffee Lake OpenMP
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -o'"
if: ${{ inputs.RUN_CLX_BENCH }} == "1"

TPP-MLIR-ADL-BASE:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Raptor Lake Base
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -b -p'"
if: ${{ inputs.RUN_ADL_BENCH }} == "1"

TPP-MLIR-ADL-OMP:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Raptor Lake OpenMP
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -o'"
if: ${{ inputs.RUN_ADL_BENCH }} == "1"


0 comments on commit 61ad6f7

Please sign in to comment.