Skip to content

Commit

Permalink
Test against raft logger
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Dec 17, 2024
1 parent e03986c commit d7f1790
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ rapids-print-env

rapids-logger "Begin cpp build"

RAPIDS_PACKAGE_VERSION=$(rapids-generate-version) rapids-conda-retry mambabuild conda/recipes/libcugraph
LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2530 cpp)

RAPIDS_PACKAGE_VERSION=$(rapids-generate-version) rapids-conda-retry mambabuild \
--channel "${LIBRAFT_CHANNEL}" \
conda/recipes/libcugraph

sccache --show-adv-stats

Expand Down
6 changes: 3 additions & 3 deletions cpp/cmake/thirdparty/get_raft.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ endfunction()
# To use a different RAFT locally, set the CMake variable
# CPM_raft_SOURCE=/path/to/local/raft
find_and_configure_raft(VERSION ${CUGRAPH_MIN_VERSION_raft}
FORK rapidsai
PINNED_TAG branch-${CUGRAPH_BRANCH_VERSION_raft}
FORK vyasr
PINNED_TAG feat/logger

# When PINNED_TAG above doesn't match cugraph,
# force local raft clone in build directory
# even if it's already installed.
CLONE_ON_PIN ON
CLONE_ON_PIN OFF
USE_RAFT_STATIC ${USE_RAFT_STATIC}
COMPILE_RAFT_LIB ${CUGRAPH_COMPILE_RAFT_LIB}
)

0 comments on commit d7f1790

Please sign in to comment.