-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'branch-24.12' into 2412-remove-libraft-instantiations
- Loading branch information
Showing
9 changed files
with
73 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ log | |
dask-worker-space/ | ||
*.egg-info/ | ||
*.bin | ||
bench/ann/data | ||
temporary_*.json | ||
|
||
## scikit-build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# ============================================================================= | ||
# Copyright (c) 2023-2024, NVIDIA CORPORATION. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
# in compliance with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed under the License | ||
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
# or implied. See the License for the specific language governing permissions and limitations under | ||
# the License. | ||
|
||
# Use RAPIDS_VERSION from cmake/thirdparty/fetch_rapids.cmake | ||
set(RAFT_VERSION "${RAPIDS_VERSION}") | ||
set(RAFT_FORK "rapidsai") | ||
set(RAFT_PINNED_TAG "branch-${RAPIDS_VERSION}") | ||
|
||
function(find_and_configure_raft) | ||
set(oneValueArgs VERSION FORK PINNED_TAG COMPILE_LIBRARY ENABLE_NVTX ENABLE_MNMG_DEPENDENCIES) | ||
cmake_parse_arguments(PKG "${options}" "${oneValueArgs}" | ||
"${multiValueArgs}" ${ARGN} ) | ||
|
||
set(RAFT_COMPONENTS "") | ||
if(PKG_COMPILE_LIBRARY) | ||
string(APPEND RAFT_COMPONENTS " compiled") | ||
endif() | ||
|
||
if(PKG_ENABLE_MNMG_DEPENDENCIES) | ||
string(APPEND RAFT_COMPONENTS " distributed") | ||
endif() | ||
|
||
#----------------------------------------------------- | ||
# Invoke CPM find_package() | ||
#----------------------------------------------------- | ||
# Since the RAFT_NVTX option is used by targets generated by | ||
# find_package(RAFT_NVTX) and when building from source we want to | ||
# make `RAFT_NVTX` a cache variable so we get consistent | ||
# behavior | ||
# | ||
set(RAFT_NVTX ${PKG_ENABLE_NVTX} CACHE BOOL "Enable raft nvtx logging" FORCE) | ||
rapids_cpm_find(raft ${PKG_VERSION} | ||
GLOBAL_TARGETS raft::raft | ||
BUILD_EXPORT_SET raft-template-exports | ||
INSTALL_EXPORT_SET raft-template-exports | ||
COMPONENTS ${RAFT_COMPONENTS} | ||
CPM_ARGS | ||
GIT_REPOSITORY https://github.com/${PKG_FORK}/raft.git | ||
GIT_TAG ${PKG_PINNED_TAG} | ||
SOURCE_SUBDIR cpp | ||
OPTIONS | ||
"BUILD_TESTS OFF" | ||
"BUILD_PRIMS_BENCH OFF" | ||
"RAFT_COMPILE_LIBRARY ${PKG_COMPILE_LIBRARY}" | ||
) | ||
endfunction() | ||
|
||
# Change pinned tag here to test a commit in CI | ||
# To use a different RAFT locally, set the CMake variable | ||
# CPM_raft_SOURCE=/path/to/local/raft | ||
find_and_configure_raft(VERSION ${RAFT_VERSION}.00 | ||
FORK ${RAFT_FORK} | ||
PINNED_TAG ${RAFT_PINNED_TAG} | ||
COMPILE_LIBRARY ON | ||
ENABLE_MNMG_DEPENDENCIES OFF | ||
ENABLE_NVTX OFF | ||
) |