Skip to content

Commit

Permalink
add cuda-toolkit for GPU (facebookresearch#4057)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: facebookresearch#4057

Reviewed By: bshethmeta

Differential Revision: D66790793

Pulled By: junjieqi

fbshipit-source-id: d43073d3c209b556afe95c9f45c62e841bcb7f1a
  • Loading branch information
junjieqi authored and facebook-github-bot committed Dec 5, 2024
1 parent 80a8ff5 commit 82f8e64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build_cmake/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ runs:
:
# regular CUDA for GPU builds
elif [ "${{ inputs.gpu }}" = "ON" ] && [ "${{ inputs.cuvs }}" = "OFF" ]; then
conda install -y -q cuda-toolkit -c "nvidia/label/cuda-12.4.0"
conda install -y -q cuda-toolkit=12.4 -c "nvidia/label/cuda-12.4.0"
# and CUDA from cuVS channel for cuVS builds
elif [ "${{ inputs.cuvs }}" = "ON" ]; then
conda install -y -q libcuvs=24.08 cuda-version=12.4 cuda-toolkit gxx_linux-64=12.4 -c rapidsai -c conda-forge -c "nvidia/label/cuda-12.4.0"
conda install -y -q libcuvs=24.08 cuda-version=12.4 cuda-toolkit=12.4.1 gxx_linux-64=12.4 -c rapidsai -c conda-forge -c "nvidia/label/cuda-12.4.0"
fi
# install test packages
Expand Down

0 comments on commit 82f8e64

Please sign in to comment.