-
Notifications
You must be signed in to change notification settings - Fork 46
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 fea/warn_when_override_has_inccorect…
…_case
- Loading branch information
Showing
6 changed files
with
92 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#============================================================================= | ||
# Copyright (c) 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. | ||
#============================================================================= | ||
include(${rapids-cmake-dir}/cpm/cccl.cmake) | ||
include(${rapids-cmake-dir}/cpm/init.cmake) | ||
include(${rapids-cmake-dir}/cpm/package_override.cmake) | ||
|
||
include(GNUInstallDirs) | ||
set(CMAKE_INSTALL_LIBDIR "lib") | ||
set(CMAKE_INSTALL_INCLUDEDIR "include") | ||
|
||
rapids_cpm_init() | ||
|
||
# Need to write out an override file | ||
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/override.json | ||
[=[ | ||
{ | ||
"packages": { | ||
"CCCL": { | ||
"version": "2.8.0", | ||
"git_shallow": false, | ||
"git_url": "https://github.com/NVIDIA/cccl.git", | ||
"git_tag": "fb4453dd632194dd2736772a9a0c19d200855ad7" | ||
} | ||
} | ||
} | ||
]=]) | ||
|
||
rapids_cpm_package_override(${CMAKE_CURRENT_BINARY_DIR}/override.json) | ||
|
||
rapids_cpm_cccl(INSTALL_EXPORT_SET export_set) | ||
|
||
# Install our project so we can verify `cccl`/`thrust` has preserved | ||
# the correct install location | ||
add_custom_target(install_project ALL | ||
COMMAND ${CMAKE_COMMAND} --install "${CMAKE_BINARY_DIR}" --prefix check_cccl/install/ | ||
) | ||
|
||
# Add a custom command that verifies that the expect files have | ||
# been installed for each component | ||
file(WRITE "${CMAKE_BINARY_DIR}/check_cccl/CMakeLists.txt" [=[ | ||
cmake_minimum_required(VERSION 3.20) | ||
project(verify_install_targets LANGUAGES CXX) | ||
|
||
# Verify include dirs | ||
set(include_dirs_to_verify include/rapids/cub | ||
include/rapids/libcudacxx/cuda | ||
include/rapids/libcudacxx/nv | ||
include/rapids/thrust) | ||
|
||
# Verify lib/cmake dirs | ||
set(cmake_dirs_to_verify lib/rapids/cmake/cccl | ||
lib/rapids/cmake/cub | ||
lib/rapids/cmake/libcudacxx | ||
lib/rapids/cmake/thrust) | ||
|
||
foreach(to_verify IN LISTS include_dirs_to_verify cmake_dirs_to_verify) | ||
set(path "${CMAKE_CURRENT_SOURCE_DIR}/install/${to_verify}") | ||
if(NOT EXISTS ${path}) | ||
message(FATAL_ERROR "Failed to find `${path}` location") | ||
endif() | ||
endforeach() | ||
]=]) | ||
|
||
|
||
add_custom_target(verify_thrust_header_search ALL | ||
COMMAND ${CMAKE_COMMAND} -E rm -rf "${CMAKE_BINARY_DIR}/check_cccl/build" | ||
COMMAND ${CMAKE_COMMAND} -S="${CMAKE_BINARY_DIR}/check_cccl" -B="${CMAKE_BINARY_DIR}/install/build" | ||
) | ||
add_dependencies(verify_thrust_header_search install_project) |