Skip to content

Commit

Permalink
echo inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Feb 2, 2024
1 parent 0cf736b commit 31dcb4a
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions .github/workflows/tpp-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Sapphire Rapids Base
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
${{ github.workspace }}/scripts/buildkite/benchmark.sh -b -p'"
run: echo "{{ inputs.RUN_SPR_BENCH }}"
# run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
# 'KIND=Release COMPILER=clang LINKER=lld \
# ${{ github.workspace }}/scripts/buildkite/benchmark.sh -b -p'"

TPP-MLIR-SPR-OMP:
runs-on: pcl-tiergarten
Expand All @@ -49,9 +50,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Sapphire Rapids OpenMP
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
${{ github.workspace }}/scripts/buildkite/benchmark.sh -o'"
run: echo "{{ inputs.RUN_SPR_BENCH }}"
# run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
# 'KIND=Release COMPILER=clang LINKER=lld \
# ${{ github.workspace }}/scripts/buildkite/benchmark.sh -o'"

# TPP-MLIR-ZEN-BASE:
# runs-on: pcl-tiergarten
Expand Down Expand Up @@ -82,9 +84,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Coffee Lake Base
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
${{ github.workspace }}/scripts/buildkite/benchmark.sh -b -p'"
run: echo "{{ inputs.RUN_CLX_BENCH }}"
# run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
# 'KIND=Release COMPILER=clang LINKER=lld \
# ${{ github.workspace }}/scripts/buildkite/benchmark.sh -b -p'"

TPP-MLIR-CLX-OMP:
runs-on: pcl-tiergarten
Expand All @@ -93,9 +96,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Coffee Lake OpenMP
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
${{ github.workspace }}/scripts/buildkite/benchmark.sh -o'"
run: echo "{{ inputs.RUN_CLX_BENCH }}"
# run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
# 'KIND=Release COMPILER=clang LINKER=lld \
# ${{ github.workspace }}/scripts/buildkite/benchmark.sh -o'"

TPP-MLIR-ADL-BASE:
runs-on: pcl-tiergarten
Expand All @@ -104,9 +108,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Raptor Lake Base
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
${{ github.workspace }}/scripts/buildkite/benchmark.sh -b -p'"
run: echo "{{ inputs.RUN_ADL_BENCH }}"
# run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
# 'KIND=Release COMPILER=clang LINKER=lld \
# ${{ github.workspace }}/scripts/buildkite/benchmark.sh -b -p'"

TPP-MLIR-ADL-OMP:
runs-on: pcl-tiergarten
Expand All @@ -115,6 +120,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Raptor Lake OpenMP
run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
${{ github.workspace }}/scripts/buildkite/benchmark.sh -o'"
run: echo "{{ inputs.RUN_ADL_BENCH }}"
# run: "${{ secrets.SRUN }} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
# 'KIND=Release COMPILER=clang LINKER=lld \
# ${{ github.workspace }}/scripts/buildkite/benchmark.sh -o'"

0 comments on commit 31dcb4a

Please sign in to comment.