Skip to content

Commit

Permalink
Fix dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
casper-hansen committed Feb 14, 2024
1 parent f3581d6 commit 952969f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ jobs:
python -m pip install --upgrade build setuptools wheel
if [[ "${{ matrix.rocm }}" == "5.7.1" ]]; then
python -m torch==2.2.0+rocm57 --index-url https://download.pytorch.org/whl/rocm5.7
python -m pip install torch==2.2.0+rocm57 --index-url https://download.pytorch.org/whl/rocm5.7
elif [[ "${{ matrix.rocm }}" == "5.6.1" ]]; then
python -m torch==2.2.0+rocm56 --index-url https://download.pytorch.org/whl/rocm5.6
python -m pip install torch==2.2.0+rocm56 --index-url https://download.pytorch.org/whl/rocm5.6
else
echo Unknown rocm version for python install
exit 1
Expand Down

0 comments on commit 952969f

Please sign in to comment.