Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Sep 24, 2024
1 parent 111118f commit fb03de2
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: ${{ $USE_IPEX == '1' }}
if: ${{ env.USE_IPEX == '1' }}
uses: ./.github/actions/setup-pytorch
with:
repository: Stonepia/pytorch

- name: Setup PyTorch without IPEX
if: ${{ $USE_IPEX == '0' }}
if: ${{ env.USE_IPEX == '0' }}
uses: ./.github/actions/setup-pytorch
with:
repository: pytorch/pytorch

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

- name: Build Triton wheels
Expand Down

0 comments on commit fb03de2

Please sign in to comment.