Skip to content

Commit

Permalink
disable zen for now, simplify inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Feb 2, 2024
1 parent bbce5a8 commit d1808bd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 38 deletions.
60 changes: 26 additions & 34 deletions .github/workflows/tpp-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,19 @@ on:
RUN_SPR_BENCH:
description: "Run on Sapphire Rapids"
default: 1
required: true
type: string
RUN_ZEN_BENCH:
description: "Run on Zen4"
default: 0
required: true
type: string
# RUN_ZEN_BENCH:
# description: "Run on Zen4"
# default: 0
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:
branches: [ "ghactions" ]
# push:
# branches: [ "ghactions" ]
# pull_request:
# branches: [ "ghactions" ]

env:
NPROCS_LIMIT_LINK: 8
Expand Down Expand Up @@ -58,25 +50,25 @@ 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-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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tpp-mlir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: TPP-MLIR Base Tests

on:
workflow_dispatch:
push:
branches: [ "ghactions" ]
pull_request:
branches: [ "ghactions" ]
# push:
# branches: [ "ghactions" ]
# pull_request:
# branches: [ "ghactions" ]

env:
NPROCS_LIMIT_LINK: 8
Expand Down

0 comments on commit d1808bd

Please sign in to comment.