From a38e5ae829487686ef1a0ea76dc2bf53dab51984 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 17 Dec 2024 13:24:07 -0800 Subject: [PATCH] use libraft from PR --- ci/build_wheel_cugraph.sh | 7 +++++++ ci/build_wheel_libcugraph.sh | 7 +++++++ ci/build_wheel_pylibcugraph.sh | 7 +++++++ ci/test_wheel_cugraph.sh | 12 ++++++++++++ ci/test_wheel_pylibcugraph.sh | 12 ++++++++++++ 5 files changed, 45 insertions(+) diff --git a/ci/build_wheel_cugraph.sh b/ci/build_wheel_cugraph.sh index 0423a6ac80..c12fc3851a 100755 --- a/ci/build_wheel_cugraph.sh +++ b/ci/build_wheel_cugraph.sh @@ -17,9 +17,16 @@ RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})" LIBCUGRAPH_WHEELHOUSE=$(RAPIDS_PY_WHEEL_NAME="libcugraph_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 cpp /tmp/libcugraph_dist) PYLIBCUGRAPH_WHEELHOUSE=$(RAPIDS_PY_WHEEL_NAME="pylibcugraph_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 python /tmp/pylibcugraph_dist) +# TODO(jameslamb): remove this stuff from https://github.com/rapidsai/raft/pull/2531 +RAFT_COMMIT="f492d59978af3390e418796228aedb2601d03efc" +LIBRAFT_CHANNEL=$( + RAPIDS_PY_WHEEL_NAME="libraft_${RAPIDS_PY_CUDA_SUFFIX}" rapids-get-pr-wheel-artifact raft 2531 cpp "${RAFT_COMMIT:0:7}" +) + cat > ./constraints.txt <> /tmp/requirements-build.txt + rapids-logger "Installing build requirements" python -m pip install \ -v \ diff --git a/ci/build_wheel_pylibcugraph.sh b/ci/build_wheel_pylibcugraph.sh index f1f3ceacd0..db10f54b7b 100755 --- a/ci/build_wheel_pylibcugraph.sh +++ b/ci/build_wheel_pylibcugraph.sh @@ -16,8 +16,15 @@ RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})" # are used when creating the isolated build environment LIBCUGRAPH_WHEELHOUSE=$(RAPIDS_PY_WHEEL_NAME="libcugraph_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 cpp /tmp/libcugraph_dist) +# TODO(jameslamb): remove this stuff from https://github.com/rapidsai/raft/pull/2531 +RAFT_COMMIT="f492d59978af3390e418796228aedb2601d03efc" +LIBRAFT_CHANNEL=$( + RAPIDS_PY_WHEEL_NAME="libraft_${RAPIDS_PY_CUDA_SUFFIX}" rapids-get-pr-wheel-artifact raft 2531 cpp "${RAFT_COMMIT:0:7}" +) + cat > ./constraints.txt < ./constraints.txt < ./constraints.txt <