Skip to content

Commit

Permalink
make similar changes as in rapidsai#4436 to resolve wheel test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed May 24, 2024
1 parent f7a54c9 commit c8f66e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/test_wheel_cugraph-dgl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ PYTORCH_URL="https://download.pytorch.org/whl/cu${PYTORCH_CUDA_VER}"
DGL_URL="https://data.dgl.ai/wheels/cu${PYTORCH_CUDA_VER}/repo.html"

rapids-logger "Installing PyTorch and DGL"
rapids-retry python -m pip install torch --index-url ${PYTORCH_URL}
rapids-retry python -m pip install --no-cache-dir torch --index-url ${PYTORCH_URL}
rapids-retry python -m pip install dgl==2.0.0 --find-links ${DGL_URL}

python -m pip uninstall -y torch torchvision torchaudio
python -m pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118

python -m pytest python/cugraph-dgl/tests

0 comments on commit c8f66e4

Please sign in to comment.