Skip to content

Commit

Permalink
Setting up IPEX for benchmarks depending on the USE_IPEX environment …
Browse files Browse the repository at this point in the history
  • Loading branch information
anmyachev authored Sep 24, 2024
1 parent f2b4b6d commit a164fe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/triton-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ jobs:
pip install wheel cmake
- name: Setup PyTorch with IPEX
if: ${{ github.event_name == 'schedule' || inputs.install_ipex }}
if: ${{ env.USE_IPEX == '1' }}
uses: ./.github/actions/setup-pytorch
with:
repository: Stonepia/pytorch

- name: Setup PyTorch without IPEX
if: ${{ !(github.event_name == 'schedule' || inputs.install_ipex) }}
if: ${{ env.USE_IPEX == '0' }}
uses: ./.github/actions/setup-pytorch
with:
repository: pytorch/pytorch

- name: Setup IPEX
if: ${{ github.event_name == 'schedule' || inputs.install_ipex }}
if: ${{ env.USE_IPEX == '1' }}
uses: ./.github/actions/setup-ipex

- name: Build Triton wheels
Expand Down

0 comments on commit a164fe6

Please sign in to comment.