Skip to content

Commit

Permalink
Update validate_binaries.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
henrylhtsang authored Jan 30, 2024
1 parent 431d6cb commit 7c266e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/validate_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ conda create -y -n build_binary python="${MATRIX_PYTHON_VERSION}"

conda run -n build_binary python --version

conda run -n build_binary python -m pip cache purge
conda run -n build_binary pip cache purge

# Install pytorch, torchrec and fbgemm as per
# installation instructions on following page
Expand Down Expand Up @@ -63,7 +63,7 @@ else
conda run -n build_binary pip install torch --index-url "$PYTORCH_URL"

# install fbgemm
conda run -n build_binary pip install fbgemm-gpu --index-url "$PYTORCH_URL"
conda run -n build_binary pip install --no-cache-dir fbgemm-gpu --extra-index-url "$PYTORCH_URL"

# install requirements from pypi
conda run -n build_binary pip install torchmetrics==1.0.3
Expand Down

0 comments on commit 7c266e6

Please sign in to comment.