From 93df7687a0f00fdc4d479e5a02ab305813a957b4 Mon Sep 17 00:00:00 2001 From: Pavel Chekin Date: Fri, 27 Dec 2024 02:56:51 -0600 Subject: [PATCH] Remove workflow input to select PTDB (#3071) There is no PTDB on the runners, removing unsupported option. Fixes #2701. --- .github/workflows/triton-benchmarks.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/triton-benchmarks.yml b/.github/workflows/triton-benchmarks.yml index 66ee0821c6..84082bbe77 100644 --- a/.github/workflows/triton-benchmarks.yml +++ b/.github/workflows/triton-benchmarks.yml @@ -31,13 +31,6 @@ on: description: Use Python built with pyenv type: boolean default: false - oneapi_bundle: - description: oneAPI bundle - type: choice - options: - - PTDB - - DLE - default: DLE schedule: - cron: "5 23 * * *" @@ -71,14 +64,6 @@ jobs: ${{ toJSON(inputs) }} EOF - - name: Use DLE - if: ${{ (github.oneapi_bundle || 'DLE') == 'DLE' }} - shell: bash - run: | - if [[ -e /opt/intel/dle ]]; then - sudo ln -sfT /opt/intel/dle /opt/intel/oneapi - fi - - name: Checkout repository uses: actions/checkout@v4