mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2026-05-14 14:06:53 +08:00
- Added Python samples for CUDA Python 1.0 release - Renamed top-level `Samples` directory to `cpp` to accommodate Python samples.
54 lines
2.0 KiB
CMake
54 lines
2.0 KiB
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/Modules")
|
|
|
|
project(UnifiedMemoryStreams LANGUAGES C CXX CUDA)
|
|
|
|
find_package(CUDAToolkit REQUIRED)
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
set(CMAKE_CUDA_ARCHITECTURES 75 80 86 87 89 90 100 110 120)
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -Wno-deprecated-gpu-targets")
|
|
if(ENABLE_CUDA_DEBUG)
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (may significantly affect performance on some targets)
|
|
else()
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -lineinfo") # add line information to all builds for debug tools (exclusive to -G option)
|
|
endif()
|
|
|
|
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# This sample is not supported on QNX
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "QNX")
|
|
message(STATUS "Will not build sample ${PROJECT_NAME} - not supported on QNX")
|
|
return()
|
|
endif()
|
|
|
|
# FindOpenMP: request COMPONENTS CXX only. From CMake 3.31 on, a bare find_package(OpenMP) also
|
|
# probes OpenMP for CUDA when the project enables CUDA; that check can fail even when C++ OpenMP
|
|
# works, and this sample only needs the C++ OpenMP package. Link OpenMP::OpenMP_CXX for libs/headers.
|
|
find_package(OpenMP COMPONENTS CXX)
|
|
|
|
if(OpenMP_CXX_FOUND)
|
|
# Add target for UnifiedMemoryStreams
|
|
add_executable(UnifiedMemoryStreams UnifiedMemoryStreams.cu)
|
|
|
|
target_compile_options(UnifiedMemoryStreams PRIVATE $<$<COMPILE_LANGUAGE:CUDA>:--extended-lambda>)
|
|
|
|
target_compile_features(UnifiedMemoryStreams PRIVATE cxx_std_17 cuda_std_17)
|
|
|
|
set_target_properties(UnifiedMemoryStreams PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|
|
|
|
target_link_libraries(UnifiedMemoryStreams PUBLIC
|
|
CUDA::cublas
|
|
OpenMP::OpenMP_CXX
|
|
)
|
|
else()
|
|
message(STATUS "OpenMP not found - will not build sample 'UnifiedMemoryStreams'")
|
|
endif()
|
|
|
|
# Include installation configuration
|
|
include(${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/InstallSamples.cmake)
|
|
setup_samples_install()
|