Skip to content

Commit

Permalink
fix test dependencies on CUDA 12
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Nov 4, 2024
1 parent 5152fd8 commit 57bc48f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ if [[ "${RUNNER_ARCH}" != "ARM64" ]]; then
conda activate test_cugraph_dgl
set -u

if [[ "${RAPIDS_CUDA_VERSION%%.*}" == "11" ]]; then
DGL_CHANNEL="dglteam/label/th23_cu118"
else
DGL_CHANNEL="dglteam/label/th23_cu121"
fi


# TODO: remove the '>=24.12.00a1000' once we start publishing nightly packages
# from the 'cugraph-gnn' repo and stop publishing them from
# the 'cugraph' / 'wholegraph' repos
Expand All @@ -65,7 +72,7 @@ if [[ "${RUNNER_ARCH}" != "ARM64" ]]; then
--channel "${PYTHON_CHANNEL}" \
--channel pytorch \
--channel conda-forge \
--channel dglteam/label/th23_cu118 \
--channel "${DGL_CHANNEL}" \
--channel nvidia \
"pylibwholegraph=${RAPIDS_VERSION},>=24.12.00a1000" \
"cugraph-dgl=${RAPIDS_VERSION},>=24.12.00a1000" \
Expand Down
1 change: 1 addition & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ files:
- cuda_version
- depends_on_cugraph
- depends_on_cudf
- depends_on_dgl
- depends_on_pytorch
- py_version
- test_python_common
Expand Down

0 comments on commit 57bc48f

Please sign in to comment.