From f27f49eeb32c4018521f1ceeea07ae84ec8b97ab Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Wed, 31 Jan 2024 14:19:29 +0000 Subject: [PATCH] fix --- .github/workflows/tpp-benchmark.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tpp-benchmark.yml b/.github/workflows/tpp-benchmark.yml index 5082cf462..b6e6d1cc1 100644 --- a/.github/workflows/tpp-benchmark.yml +++ b/.github/workflows/tpp-benchmark.yml @@ -26,7 +26,7 @@ jobs: 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" + if: ${RUN_SPR_BENCH} == "1" TPP-MLIR-SPR-OMP: runs-on: self-hosted @@ -36,6 +36,6 @@ jobs: 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" + if: ${RUN_SPR_BENCH} == "1"