1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
set(_gt_gridtools_setup_targets_dir ${CMAKE_CURRENT_LIST_DIR})
set(GT_NAMESPACE "GridTools::")
# _gt_depends_on()
# Note: This function relies on the unique name of a dependency. If libraries get a namespace prefix in exported
# context, this function may fail. Therefore, use of this function with care!
function(_gt_depends_on dst lib dependency)
if (NOT TARGET ${dependency})
message(AUTHOR_WARNING "_gt_depends_on() argument ${dependency} is not a target.")
elseif (lib STREQUAL dependency)
set(${dst} ON PARENT_SCOPE)
return()
elseif (TARGET ${lib})
get_target_property(tgt_type ${lib} TYPE)
set(deps)
if(NOT tgt_type STREQUAL "INTERFACE_LIBRARY")
get_target_property(deps ${lib} LINK_LIBRARIES)
endif()
get_target_property(deps_interface ${lib} INTERFACE_LINK_LIBRARIES)
if (deps OR deps_interface)
foreach(dep IN LISTS deps deps_interface)
_gt_depends_on(child ${dep} ${dependency})
if (child)
set(${dst} ON PARENT_SCOPE)
return()
endif()
endforeach()
endif()
endif()
set(${dst} OFF PARENT_SCOPE)
endfunction()
function(_gt_depends_on_cuda dst tgt)
if(TARGET _gridtools_cuda)
_gt_depends_on(result ${tgt} _gridtools_cuda)
set(${dst} ${result} PARENT_SCOPE)
else()
set(${dst} OFF PARENT_SCOPE)
endif()
endfunction()
function(_gt_depends_on_nvcc dst tgt)
if(TARGET _gridtools_nvcc)
_gt_depends_on(result ${tgt} _gridtools_nvcc)
set(${dst} ${result} PARENT_SCOPE)
else()
set(${dst} OFF PARENT_SCOPE)
endif()
endfunction()
function(_gt_depends_on_gridtools dst tgt)
if(TARGET gridtools)
_gt_depends_on(result ${tgt} gridtools)
elseif(TARGET GridTools::gridtools)
_gt_depends_on(result ${tgt} GridTools::gridtools)
else()
message(AUTHOR_WARNING "No GridTools targets are defined. This is a GridTools CMake implementation issue.")
endif()
if(result)
set(${dst} TRUE PARENT_SCOPE)
else()
set(${dst} FALSE PARENT_SCOPE)
endif()
endfunction()
set(_GT_INCLUDER_IN ${CMAKE_CURRENT_LIST_DIR}/includer.in CACHE INTERNAL "")
function(_gt_convert_to_cuda_source dst srcfile)
get_filename_component(extension ${srcfile} LAST_EXT)
if(extension STREQUAL ".cu")
set(${dst} ${srcfile} PARENT_SCOPE)
else()
set(INCLUDER_SRC ${CMAKE_CURRENT_SOURCE_DIR}/${srcfile})
configure_file(${_GT_INCLUDER_IN} ${srcfile}.cu)
set(${dst} ${CMAKE_CURRENT_BINARY_DIR}/${srcfile}.cu PARENT_SCOPE)
endif()
endfunction()
function(_gt_convert_to_cxx_source srcfile)
get_filename_component(extension ${srcfile} LAST_EXT)
if(extension STREQUAL ".cu")
set_source_files_properties(${srcfile} PROPERTIES LANGUAGE CXX)
endif()
endfunction()
function(_gt_normalize_source_names lib dst)
_gt_depends_on_nvcc(nvcc_cuda ${lib})
if (nvcc_cuda)
foreach(srcfile IN LISTS ARGN)
_gt_convert_to_cuda_source(converted ${srcfile})
list(APPEND acc ${converted})
endforeach()
set(${dst} ${acc} PARENT_SCOPE)
else()
foreach(srcfile IN LISTS ARGN)
_gt_convert_to_cxx_source(${srcfile})
endforeach()
set(${dst} ${ARGN} PARENT_SCOPE)
endif()
endfunction()
function(_gt_normalize_target_sources tgt)
# SOURCES
get_target_property(_sources ${tgt} SOURCES)
if(_sources)
_gt_normalize_source_names(${tgt} normalized_sources ${_sources})
set_target_properties(${tgt} PROPERTIES SOURCES "${normalized_sources}")
endif()
# INTERFACE_SOURCES
get_target_property(_interface_sources ${tgt} INTERFACE_SOURCES)
if(_interface_sources)
_gt_normalize_source_names(${tgt} normalized_sources ${_interface_sources})
set_target_properties(${tgt} PROPERTIES INTERFACE_SOURCES "${normalized_sources}")
endif()
endfunction()
function(gt_cuda_arch_to_cuda_arch_version gt_cuda_arch outvar)
if(NOT gt_cuda_arch)
set(_gtca2cv_result OFF)
elseif(gt_cuda_arch MATCHES "compute_[0-9]+")
string(SUBSTRING ${gt_cuda_arch} 8 -1 _gtca2cv_result)
elseif(gt_cuda_arch MATCHES "sm_[0-9]+")
string(SUBSTRING ${gt_cuda_arch} 3 -1 _gtca2cv_result)
else()
message(FATAL_ERROR "Couldn't parse CUDA architecture: ${gt_cuda_arch}")
endif()
set(${outvar} ${_gtca2cv_result} PARENT_SCOPE)
endfunction()
# _gt_add_library()
# In config mode (called from GridToolsConfig.cmake), we create an IMPORTED target with namespace
# In normal mode (called from main CMakeLists.txt), we create a target without namespace and an alias
# This function should only be used to create INTERFACE targets in the context of gridtools_setup_targets().
function(_gt_add_library _config_mode name)
if(${_config_mode})
add_library(${GT_NAMESPACE}${name} INTERFACE IMPORTED)
else()
add_library(${name} INTERFACE)
add_library(${GT_NAMESPACE}${name} ALIAS ${name})
endif()
list(APPEND _gt_available_targets ${name})
set(_gt_available_targets ${_gt_available_targets} PARENT_SCOPE)
endfunction()
# gridtools_setup_targets()
# This macro is used in the main CMakeLists.txt (_config_mode == FALSE) and for setting up the targets in the
# GridToolsConfig.cmake, i.e. from a GridTools installation (_config_mode == TRUE).
#
# For this reason some restrictions apply to commands in this macro:
# - All targets created in this macro need to be created with _gt_add_library() which will create proper namespace
# prefix and aliases.
# - Within this macro, all references to targets created with _gt_add_library() need to be prefixed with
# ${_gt_namespace}, e.g. target_link_libraries(${_gt_namespace}my_tgt INTERFACE ${_gt_namespace}_my_other_tgt).
macro(_gt_setup_targets _config_mode clang_cuda_mode)
set(_gt_available_targets)
include(detect_features)
detect_cuda_type(GT_CUDA_TYPE "${clang_cuda_mode}")
if(${_config_mode})
set(_gt_namespace ${GT_NAMESPACE})
set(_gt_imported "IMPORTED")
else()
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
# Do not enable the language if we are included from a super-project.
# It is up to the super-project to enable CUDA/HIP.
if(GT_CUDA_TYPE STREQUAL NVCC-CUDA)
enable_language(CUDA)
elseif(GT_CUDA_TYPE STREQUAL HIPCC-AMDGPU)
enable_language(HIP)
endif()
endif()
endif()
# Add the _gridtools_nvcc proxy if the CUDA language is enabled
if (GT_CUDA_TYPE STREQUAL NVCC-CUDA)
get_property(languages GLOBAL PROPERTY ENABLED_LANGUAGES)
if("CUDA" IN_LIST languages)
add_library(_gridtools_nvcc INTERFACE ${_gt_imported})
# allow to call constexpr __host__ from constexpr __device__, e.g. call std::max in constexpr context
target_compile_options(_gridtools_nvcc INTERFACE $<$<COMPILE_LANGUAGE:CUDA>:--expt-relaxed-constexpr>)
else()
message(WARNING "CUDA is available, but was not enabled. If you want CUDA support, please enable the language in your project")
set(GT_CUDA_TYPE NOTFOUND)
endif()
endif()
find_package(MPI COMPONENTS CXX)
include(workaround_mpi)
_fix_mpi_flags()
if(NOT (CMAKE_CXX_COMPILER_ID STREQUAL AppleClang AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.0))
find_package(OpenMP COMPONENTS CXX)
endif()
if (GT_CUDA_TYPE STREQUAL NVCC-CUDA)
set(GT_CUDA_ARCH_FLAG "-arch" CACHE INTERNAL "")
elseif (GT_CUDA_TYPE STREQUAL Clang-CUDA)
set(GT_CUDA_ARCH_FLAG "--cuda-gpu-arch" CACHE INTERNAL "")
elseif (GT_CUDA_TYPE STREQUAL HIPCC-AMDGPU)
set(GT_CUDA_ARCH_FLAG "--amdgpu-target" CACHE INTERNAL "")
endif()
function(gridtools_cuda_setup type)
if (type STREQUAL NVCC-CUDA)
target_link_libraries(_gridtools_cuda INTERFACE _gridtools_nvcc)
find_package(CUDAToolkit)
if(CUDAToolkit_FOUND)
target_link_libraries(_gridtools_cuda INTERFACE CUDA::cudart)
else()
message(FATAL_ERROR "NVCC was found, but the CUDAToolkit was not found."
"This should not happen. Please report this issue at https://github.com/GridTools/gridtools."
)
endif()
elseif(type STREQUAL Clang-CUDA)
set(_gt_setup_root_dir ${CUDAToolkit_BIN_DIR}/..)
target_compile_options(_gridtools_cuda INTERFACE $<$<COMPILE_LANGUAGE:CXX>:-xcuda --cuda-path=${_gt_setup_root_dir}>)
target_link_libraries(_gridtools_cuda INTERFACE CUDA::cudart)
elseif(type STREQUAL HIPCC-AMDGPU)
find_package(hip REQUIRED)
target_compile_options(_gridtools_cuda INTERFACE $<$<COMPILE_LANGUAGE:CXX>:-xhip>)
target_link_libraries(_gridtools_cuda INTERFACE hip::host)
endif()
endfunction()
if (GT_CUDA_TYPE)
add_library(_gridtools_cuda INTERFACE ${_gt_imported})
gridtools_cuda_setup(${GT_CUDA_TYPE})
endif()
_gt_add_library(${_config_mode} storage_cpu_kfirst)
target_link_libraries(${_gt_namespace}storage_cpu_kfirst INTERFACE ${_gt_namespace}gridtools)
_gt_add_library(${_config_mode} storage_cpu_ifirst)
target_link_libraries(${_gt_namespace}storage_cpu_ifirst INTERFACE ${_gt_namespace}gridtools)
_gt_add_library(${_config_mode} stencil_naive)
target_link_libraries(${_gt_namespace}stencil_naive INTERFACE ${_gt_namespace}gridtools)
_gt_add_library(${_config_mode} reduction_naive)
target_link_libraries(${_gt_namespace}reduction_naive INTERFACE ${_gt_namespace}gridtools)
_gt_add_library(${_config_mode} fn_naive)
target_link_libraries(${_gt_namespace}fn_naive INTERFACE ${_gt_namespace}gridtools)
set(_required_nlohmann_json_version "3.10.4")
include(get_nlohmann_json)
get_nlohmann_json(${_required_nlohmann_json_version})
if(TARGET nlohmann_json::nlohmann_json)
_gt_add_library(${_config_mode} stencil_dump)
target_link_libraries(${_gt_namespace}stencil_dump INTERFACE ${_gt_namespace}gridtools nlohmann_json::nlohmann_json)
endif()
set(GT_STENCILS naive)
set(GT_REDUCTIONS naive)
set(GT_FN_BACKENDS naive)
set(GT_STORAGES cpu_kfirst cpu_ifirst)
set(GT_GCL_ARCHS)
if (TARGET _gridtools_cuda)
_gt_add_library(${_config_mode} stencil_gpu)
target_link_libraries(${_gt_namespace}stencil_gpu INTERFACE ${_gt_namespace}gridtools _gridtools_cuda)
list(APPEND GT_STENCILS gpu)
_gt_add_library(${_config_mode} stencil_gpu_horizontal)
target_link_libraries(${_gt_namespace}stencil_gpu_horizontal INTERFACE ${_gt_namespace}gridtools _gridtools_cuda)
list(APPEND GT_STENCILS gpu_horizontal)
_gt_add_library(${_config_mode} reduction_gpu)
target_link_libraries(${_gt_namespace}reduction_gpu INTERFACE ${_gt_namespace}gridtools _gridtools_cuda)
list(APPEND GT_REDUCTIONS gpu)
_gt_add_library(${_config_mode} fn_gpu)
target_link_libraries(${_gt_namespace}fn_gpu INTERFACE ${_gt_namespace}gridtools _gridtools_cuda)
list(APPEND GT_FN_BACKENDS gpu)
if(MPI_CXX_FOUND)
option(GT_GCL_GPU "Disable if your MPI implementation is not CUDA-aware" ON)
if(GT_GCL_GPU)
_gt_add_library(${_config_mode} gcl_gpu)
target_link_libraries(${_gt_namespace}gcl_gpu INTERFACE ${_gt_namespace}gridtools _gridtools_cuda MPI::MPI_CXX)
endif()
endif()
_gt_add_library(${_config_mode} boundaries_gpu)
target_link_libraries(${_gt_namespace}boundaries_gpu INTERFACE ${_gt_namespace}gridtools _gridtools_cuda)
_gt_add_library(${_config_mode} layout_transformation_gpu)
target_link_libraries(${_gt_namespace}layout_transformation_gpu INTERFACE ${_gt_namespace}gridtools _gridtools_cuda)
list(APPEND GT_GCL_ARCHS gpu)
endif()
find_package(CUDAToolkit)
if(CUDAToolkit_FOUND OR GT_CUDA_TYPE STREQUAL HIPCC-AMDGPU)
_gt_add_library(${_config_mode} storage_gpu)
target_link_libraries(${_gt_namespace}storage_gpu INTERFACE ${_gt_namespace}gridtools)
if(GT_CUDA_TYPE STREQUAL HIPCC-AMDGPU)
find_package(hip REQUIRED)
target_link_libraries(${_gt_namespace}storage_gpu INTERFACE hip::host)
target_compile_definitions(${_gt_namespace}storage_gpu INTERFACE GT_HIP_RUNTIME)
else()
target_link_libraries(${_gt_namespace}storage_gpu INTERFACE CUDA::cudart)
endif()
list(APPEND GT_STORAGES gpu)
endif()
if (OpenMP_CXX_FOUND)
target_link_libraries(${_gt_namespace}fn_naive INTERFACE OpenMP::OpenMP_CXX)
_gt_add_library(${_config_mode} stencil_cpu_kfirst)
target_link_libraries(${_gt_namespace}stencil_cpu_kfirst INTERFACE ${_gt_namespace}gridtools OpenMP::OpenMP_CXX)
_gt_add_library(${_config_mode} stencil_cpu_ifirst)
target_link_libraries(${_gt_namespace}stencil_cpu_ifirst INTERFACE ${_gt_namespace}gridtools OpenMP::OpenMP_CXX)
_gt_add_library(${_config_mode} reduction_cpu)
target_link_libraries(${_gt_namespace}reduction_cpu INTERFACE ${_gt_namespace}gridtools OpenMP::OpenMP_CXX)
if(MPI_CXX_FOUND)
_gt_add_library(${_config_mode} gcl_cpu)
target_link_libraries(${_gt_namespace}gcl_cpu INTERFACE ${_gt_namespace}gridtools OpenMP::OpenMP_CXX MPI::MPI_CXX)
endif()
_gt_add_library(${_config_mode} boundaries_cpu)
target_link_libraries(${_gt_namespace}boundaries_cpu INTERFACE ${_gt_namespace}gridtools OpenMP::OpenMP_CXX)
_gt_add_library(${_config_mode} layout_transformation_cpu)
target_link_libraries(${_gt_namespace}layout_transformation_cpu INTERFACE ${_gt_namespace}gridtools OpenMP::OpenMP_CXX)
if(GT_CUDA_TYPE STREQUAL HIPCC-AMDGPU)
# workaround for undefind _OPENMP in HIP device code even when OpenMP is enabled
target_compile_definitions(${_gt_namespace}stencil_cpu_kfirst INTERFACE -DGT_HIP_OPENMP_WORKAROUND)
target_compile_definitions(${_gt_namespace}stencil_cpu_ifirst INTERFACE -DGT_HIP_OPENMP_WORKAROUND)
if(MPI_CXX_FOUND)
target_compile_definitions(${_gt_namespace}gcl_cpu INTERFACE -DGT_HIP_OPENMP_WORKAROUND)
endif()
target_compile_definitions(${_gt_namespace}boundaries_cpu INTERFACE -DGT_HIP_OPENMP_WORKAROUND)
target_compile_definitions(${_gt_namespace}layout_transformation_cpu INTERFACE -DGT_HIP_OPENMP_WORKAROUND)
endif()
list(APPEND GT_GCL_ARCHS cpu)
list(APPEND GT_STENCILS cpu_kfirst cpu_ifirst)
list(APPEND GT_REDUCTIONS cpu)
endif()
find_package(HPX 1.5.0 QUIET NO_MODULE)
mark_as_advanced(GT_AVAILABLE_TARGETS)
if (HPX_FOUND)
_gt_add_library(${_config_mode} threadpool_hpx)
target_link_libraries(${_gt_namespace}threadpool_hpx INTERFACE ${_gt_namespace}gridtools HPX::hpx)
endif()
set(GT_AVAILABLE_TARGETS ${_gt_available_targets} CACHE STRING "Available GridTools targets" FORCE)
mark_as_advanced(GT_AVAILABLE_TARGETS)
endmacro()
function(_gt_print_configuration_summary)
list(TRANSFORM GT_AVAILABLE_TARGETS PREPEND "${GT_NAMESPACE}" OUTPUT_VARIABLE namespaced_targets)
message(STATUS "GridTools configuration summary")
message(STATUS " Available targets: ${namespaced_targets}")
message(STATUS " GPU mode: ${GT_CUDA_TYPE}") # Note that the CMake tests rely on the string "GPU mode: <mode>"
# to be present in the CMake configure output
endfunction()
# gridtools_set_gpu_arch_on_target()
# Sets the cuda architecture using the the compiler-dependant flag.
# Ignores the call if the target doesn't link to _gridtools_cuda.
# Note: Only set the architecture using this function, otherwise your setup might not be portable between Clang-CUDA
# and nvcc.
function(gridtools_set_gpu_arch_on_target tgt arch)
if(arch)
_gt_depends_on_cuda(need_cuda ${tgt})
if(need_cuda)
_gt_depends_on_nvcc(need_nvcc ${tgt})
if(need_nvcc)
# TODO
# - set Clang as CUDA compiler instead of using the current manual setup
# (currently we set it as CXX compiler and enable cuda mode ourselves)
# - only manage HIP ourselves
gt_cuda_arch_to_cuda_arch_version(${arch} _cuda_arch_version)
set_property(TARGET ${tgt} PROPERTY CUDA_ARCHITECTURES ${_cuda_arch_version})
else()
target_compile_options(${tgt} PUBLIC $<$<COMPILE_LANGUAGE:CXX>:${GT_CUDA_ARCH_FLAG}=${arch}>)
endif()
endif()
endif()
endfunction()
# gridtools_setup_target()
# Applying this function to a target will allow the same .cpp or .cu file to be compiled with CUDA and CXX in the same
# CMake project.
# Example: Compile a file copy_stencil.cpp for CUDA with stencil_cuda and for CPU with stencil_cpu_ifirst. In plain CMake this
# is not possible as you need to specify exactly one language to the file (either implicitly by file suffix or
# explicitly by setting the language). This function will wrap .cpp files in a .cu if the given target links to
# _gridtools_cuda.
function(gridtools_setup_target tgt)
set(options)
set(one_value_args CUDA_ARCH)
set(multi_value_args)
cmake_parse_arguments(ARGS "${options}" "${one_value_args}" "${multi_value_args}" ${ARGN})
_gt_depends_on_gridtools(links_to_a_gt_backend ${tgt})
if(NOT links_to_a_gt_backend)
message(FATAL_ERROR "gridtools_setup_target() needs to be called after a backend library is linked to the target")
endif()
_gt_normalize_target_sources(${tgt})
gridtools_set_gpu_arch_on_target(${tgt} "${ARGS_CUDA_ARCH}")
endfunction()
|