From c915472b2d9bfcf93fa822a5bde0ab12a584d9a8 Mon Sep 17 00:00:00 2001 From: Alexandria Barghi Date: Mon, 14 Oct 2024 11:24:16 -0700 Subject: [PATCH] bump pytorch to 12.4 --- ci/test_wheel_cugraph-dgl.sh | 2 +- ci/test_wheel_cugraph-pyg.sh | 4 ++-- ci/test_wheel_pylibwholegraph.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/test_wheel_cugraph-dgl.sh b/ci/test_wheel_cugraph-dgl.sh index d7558d4..6483840 100755 --- a/ci/test_wheel_cugraph-dgl.sh +++ b/ci/test_wheel_cugraph-dgl.sh @@ -17,7 +17,7 @@ RAPIDS_PY_WHEEL_NAME="${package_name}_${RAPIDS_PY_CUDA_SUFFIX}" RAPIDS_PY_WHEEL_ PKG_CUDA_VER="$(echo ${CUDA_VERSION} | cut -d '.' -f1,2 | tr -d '.')" PKG_CUDA_VER_MAJOR=${PKG_CUDA_VER:0:2} if [[ "${PKG_CUDA_VER_MAJOR}" == "12" ]]; then - PYTORCH_CUDA_VER="121" + PYTORCH_CUDA_VER="124" else PYTORCH_CUDA_VER=$PKG_CUDA_VER fi diff --git a/ci/test_wheel_cugraph-pyg.sh b/ci/test_wheel_cugraph-pyg.sh index 2f508ee..972a761 100755 --- a/ci/test_wheel_cugraph-pyg.sh +++ b/ci/test_wheel_cugraph-pyg.sh @@ -18,8 +18,8 @@ if [[ "${CUDA_VERSION}" == "11.8.0" ]]; then PYTORCH_URL="https://download.pytorch.org/whl/cu118" PYG_URL="https://data.pyg.org/whl/torch-2.3.0+cu118.html" else - PYTORCH_URL="https://download.pytorch.org/whl/cu121" - PYG_URL="https://data.pyg.org/whl/torch-2.3.0+cu121.html" + PYTORCH_URL="https://download.pytorch.org/whl/cu124" + PYG_URL="https://data.pyg.org/whl/torch-2.3.0+cu124.html" fi # echo to expand wildcard before adding `[extra]` requires for pip diff --git a/ci/test_wheel_pylibwholegraph.sh b/ci/test_wheel_pylibwholegraph.sh index 60598bc..518da45 100755 --- a/ci/test_wheel_pylibwholegraph.sh +++ b/ci/test_wheel_pylibwholegraph.sh @@ -12,7 +12,7 @@ RAPIDS_PY_WHEEL_NAME="pylibwholegraph_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download- PKG_CUDA_VER="$(echo ${CUDA_VERSION} | cut -d '.' -f1,2 | tr -d '.')" PKG_CUDA_VER_MAJOR=${PKG_CUDA_VER:0:2} if [[ "${PKG_CUDA_VER_MAJOR}" == "12" ]]; then - INDEX_URL="https://download.pytorch.org/whl/cu121" + INDEX_URL="https://download.pytorch.org/whl/cu124" else INDEX_URL="https://download.pytorch.org/whl/cu${PKG_CUDA_VER}" fi