-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turn off cuco dependency in RAFT. Re-establish explicit
cuco
and `l…
…ibcuxx` cmake dependencies (#2132) Note: This PR depends on rapidsai/raft#540 and should work once it is merged. Authors: - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Chuck Hastings (https://github.com/ChuckHastings) - Rick Ratzel (https://github.com/rlratzel) URL: #2132
- Loading branch information
Showing
4 changed files
with
70 additions
and
4 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
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,34 @@ | ||
#============================================================================= | ||
# Copyright (c) 2021-2022, 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. | ||
#============================================================================= | ||
|
||
function(find_and_configure_cuco VERSION) | ||
|
||
rapids_cpm_find(cuco ${VERSION} | ||
GLOBAL_TARGETS cuco::cuco | ||
BUILD_EXPORT_SET cugraph-exports | ||
CPM_ARGS | ||
EXCLUDE_FROM_ALL TRUE | ||
GIT_REPOSITORY https://github.com/NVIDIA/cuCollections.git | ||
GIT_TAG 0ca860b824f5dc22cf8a41f09912e62e11f07d82 | ||
OPTIONS "BUILD_TESTS OFF" | ||
"BUILD_BENCHMARKS OFF" | ||
"BUILD_EXAMPLES OFF" | ||
) | ||
|
||
endfunction() | ||
|
||
# cuCollections doesn't have a version yet | ||
find_and_configure_cuco(0.0) |
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,24 @@ | ||
# ============================================================================= | ||
# Copyright (c) 2020-2022, 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. | ||
# ============================================================================= | ||
|
||
# This function finds libcudacxx and sets any additional necessary environment variables. | ||
function(find_and_configure_libcudacxx) | ||
include(${rapids-cmake-dir}/cpm/libcudacxx.cmake) | ||
|
||
rapids_cpm_libcudacxx(BUILD_EXPORT_SET cugraph-exports | ||
INSTALL_EXPORT_SET cugraph-exports) | ||
|
||
endfunction() | ||
|
||
find_and_configure_libcudacxx() |
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