-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
317 lines (271 loc) · 9.63 KB
/
CMakeLists.txt
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
###############################################################################
# Copyright (c) 2016-20, Lawrence Livermore National Security, LLC
# and RAJA project contributors. See the RAJA/COPYRIGHT file for details.
#
# SPDX-License-Identifier: (BSD-3-Clause)
###############################################################################
cmake_policy(SET CMP0042 NEW)
cmake_policy(SET CMP0048 NEW)
if (APPLE)
cmake_policy(SET CMP0025 NEW)
endif()
# Set version number
set(RAJA_VERSION_MAJOR 0)
set(RAJA_VERSION_MINOR 11)
set(RAJA_VERSION_PATCHLEVEL 0)
if (RAJA_LOADED AND (NOT RAJA_LOADED STREQUAL "${RAJA_VERSION_MAJOR}.${RAJA_VERSION_MINOR}.${RAJA_VERSION_PATCHLEVEL}"))
message(FATAL_ERROR "You are mixing RAJA versions. Loaded is ${RAJA_LOADED}, expected ${RAJA_VERSION_MAJOR}.${RAJA_VERSION_MINOR}.${RAJA_VERSION_PATCHLEVEL}")
endif()
if (RAJA_LOADED)
return() # Stop processing file, avoids nesting the whole file
endif()
set (RAJA_LOADED "${RAJA_VERSION_MAJOR}.${RAJA_VERSION_MINOR}.${RAJA_VERSION_PATCHLEVEL}")
# Promote RAJA_LOADED to PARENT_SCOPE if it exists, which is only if we are bringing
# in RAJA as a subproject to a larger CMake project
get_directory_property(hasParent PARENT_DIRECTORY)
if(hasParent)
set (RAJA_LOADED ${RAJA_LOADED} PARENT_SCOPE)
endif()
mark_as_advanced(RAJA_LOADED)
# C is required for googletest to find Threads
project(RAJA LANGUAGES CXX C
VERSION ${RAJA_LOADED})
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/thirdparty" ${CMAKE_MODULE_PATH})
# Build options
set(ENABLE_OPENMP On CACHE BOOL "Build OpenMP support")
set(ENABLE_CUDA Off CACHE BOOL "Build CUDA support")
set(ENABLE_COPY_HEADERS Off CACHE BOOL "")
set(ENABLE_WARNINGS_AS_ERRORS Off CACHE BOOL "")
set(ENABLE_GTEST_DEATH_TESTS On CACHE BOOL "Enable tests asserting failure.")
set(RAJA_CXX_STANDARD_FLAG "default" CACHE STRING "Specific c++ standard flag to use, default attempts to autodetect the highest available")
option(ENABLE_TBB "Build TBB support" Off)
option(ENABLE_CHAI "Build CHAI support" Off)
option(ENABLE_TARGET_OPENMP "Build OpenMP on target device support" Off)
option(ENABLE_CLANG_CUDA "Use Clang's native CUDA support" Off)
option(ENABLE_EXTERNAL_CUB "Use an external cub for scans" Off)
option(ENABLE_EXTERNAL_ROCPRIM "Use an external rocPRIM for scans" Off)
option(ENABLE_TESTS "Build tests" On)
option(ENABLE_REPRODUCERS "Build issue reproducers" Off)
option(ENABLE_EXAMPLES "Build simple examples" On)
option(ENABLE_EXERCISES "Build exercises " On)
option(ENABLE_MODULES "Enable modules in supporting compilers (clang)" On)
option(ENABLE_WARNINGS "Enable warnings as errors for CI" Off)
option(ENABLE_DOCUMENTATION "Build RAJA documentation" Off)
option(ENABLE_COVERAGE "Enable coverage (only supported with GCC)" Off)
option(ENABLE_FORCEINLINE_RECURSIVE "Enable Forceinline recursive (only supported with Intel compilers)" On)
option(ENABLE_BENCHMARKS "Build benchmarks" Off)
option(RAJA_DEPRECATED_TESTS "Test deprecated features" Off)
option(RAJA_ENABLE_BOUNDS_CHECK "Enable bounds checking in RAJA::Views/Layouts" Off)
option(RAJA_TEST_EXHAUSTIVE "Build RAJA exhaustive tests" Off)
set(TEST_DRIVER "" CACHE STRING "driver used to wrap test commands")
cmake_minimum_required(VERSION 3.9)
if (ENABLE_CUDA)
if (DEFINED CUDA_ARCH)
if (CUDA_ARCH MATCHES "^sm_*")
if ("${CUDA_ARCH}" STRLESS "sm_35")
message( FATAL_ERROR "RAJA requires minimum CUDA compute architecture of sm_35")
endif()
endif()
if (CUDA_ARCH MATCHES "^compute_*")
if ("${CUDA_ARCH}" STRLESS "compute_35")
message( FATAL_ERROR "RAJA requires minimum CUDA compute architecture of compute_35")
endif()
endif()
else()
message(STATUS "CUDA compute architecture set to RAJA default sm_35 since it was not specified")
set(CUDA_ARCH "sm_35" CACHE STRING "Set CUDA_ARCH to RAJA minimum supported" FORCE)
endif()
if (CMAKE_CXX_COMPILER_ID MATCHES GNU)
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
set (CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -Xcompiler -mno-float128")
endif ()
endif ()
endif()
# Detect C++ standard and add appropriate flag _before_ loading BLT
set(COMPILERS_KNOWN_TO_CMAKE33 AppleClang Clang GNU MSVC)
include(CheckCXXCompilerFlag)
if(RAJA_CXX_STANDARD_FLAG MATCHES default)
if("cxx_std_17" IN_LIST CMAKE_CXX_KNOWN_FEATURES)
#TODO set BLT_CXX_STANDARD
set(CMAKE_CXX_STANDARD 17)
elseif("cxx_std_14" IN_LIST CMAKE_CXX_KNOWN_FEATURES)
set(CMAKE_CXX_STANDARD 14)
elseif("${CMAKE_CXX_COMPILER_ID}" IN_LIST COMPILERS_KNOWN_TO_CMAKE33)
set(CMAKE_CXX_STANDARD 14)
else() #cmake has no idea what to do, do it ourselves...
foreach(flag_var "-std=c++17" "-std=c++1z" "-std=c++14" "-std=c++1y" "-std=c++11")
CHECK_CXX_COMPILER_FLAG(${flag_var} COMPILER_SUPPORTS_${flag_var})
if(COMPILER_SUPPORTS_${flag_var})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag_var}")
break()
endif()
endforeach(flag_var)
endif()
else(RAJA_CXX_STANDARD_FLAG MATCHES default)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${RAJA_CXX_STANDARD_FLAG}")
message("Using C++ standard flag: ${RAJA_CXX_STANDARD_FLAG}")
endif(RAJA_CXX_STANDARD_FLAG MATCHES default)
set(CMAKE_CXX_EXTENSIONS OFF)
if (NOT BLT_LOADED)
if (DEFINED BLT_SOURCE_DIR)
if (NOT EXISTS ${BLT_SOURCE_DIR}/SetupBLT.cmake)
message(FATAL_ERROR "Given BLT_SOURCE_DIR does not contain SetupBLT.cmake")
endif()
else ()
set (BLT_SOURCE_DIR ${PROJECT_SOURCE_DIR}/blt CACHE PATH "")
if (NOT EXISTS ${BLT_SOURCE_DIR}/SetupBLT.cmake)
message(FATAL_ERROR "\
The BLT submodule is not present. \
If in git repository run the following two commands:\n \
git submodule init\n \
git submodule update")
endif ()
endif ()
include(${BLT_SOURCE_DIR}/SetupBLT.cmake)
endif()
# Setup basic CMake options
include(cmake/SetupBasics.cmake)
# Find third-party packages
include(cmake/SetupPackages.cmake)
# Setup vendor-specific compiler flags
include(cmake/SetupCompilers.cmake)
# Setup internal RAJA configuration options
include(cmake/SetupRajaConfig.cmake)
# Macros for building executables and libraries
include (cmake/RAJAMacros.cmake)
set (raja_sources
src/AlignedRangeIndexSetBuilders.cpp
src/DepGraphNode.cpp
src/LockFreeIndexSetBuilders.cpp
src/MemUtils_CUDA.cpp
src/MemUtils_HIP.cpp
src/MemUtils_SYCL.cpp
src/PluginStrategy.cpp)
set (raja_depends)
if (ENABLE_OPENMP)
set (raja_depends
openmp)
endif()
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 17)
message(WARNING "RAJA::simd_exec support requires Intel-17 or greater")
endif()
if (ENABLE_CUDA)
set (raja_depends
${raja_depends}
cuda)
endif ()
if (ENABLE_CUDA)
if(ENABLE_EXTERNAL_CUB)
find_package(CUB)
if (CUB_FOUND)
blt_register_library(
NAME cub
INCLUDES ${CUB_INCLUDE_DIRS})
set(raja_depends
${raja_depends}
cub)
else()
message(WARNING "External CUB not found.")
set(ENABLE_EXTERNAL_CUB Off)
endif()
endif ()
endif ()
if (ENABLE_HIP)
set (raja_depends
${raja_depends}
hip)
endif ()
if (ENABLE_HIP)
if(ENABLE_EXTERNAL_ROCPRIM)
find_package(ROCPRIM)
if (ROCPRIM_FOUND)
blt_register_library(
NAME rocPRIM
INCLUDES ${ROCPRIM_INCLUDE_DIRS})
set(raja_depends
${raja_depends}
rocPRIM)
else()
message(WARNING "External rocPRIM not found.")
set(ENABLE_EXTERNAL_ROCPRIM Off)
endif()
endif ()
endif ()
if (ENABLE_SYCL)
set (raja_depends
${raja_depends}
sycl)
endif ()
if (ENABLE_CHAI)
set (raja_depends
${raja_depends}
chai)
endif ()
if (ENABLE_TBB)
set(raja_depends
${raja_depends}
tbb)
endif ()
set(EXTERNAL_CAMP_SOURCE_DIR "" CACHE FILEPATH "build with a specific external
camp source repository")
if (EXTERNAL_CAMP_SOURCE_DIR)
message(STATUS "Using external source CAMP from: " ${EXTERNAL_CAMP_SOURCE_DIR})
add_subdirectory(${EXTERNAL_CAMP_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}/tpl/camp)
else (EXTERNAL_CAMP_SOURCE_DIR)
find_package(camp QUIET)
if (NOT camp_FOUND)
message(STATUS "Using RAJA CAMP submodule.")
add_subdirectory(tpl/camp)
else (NOT camp_FOUND)
message(STATUS "Using installed CAMP from: ${camp_INSTALL_PREFIX}")
endif(NOT camp_FOUND)
endif (EXTERNAL_CAMP_SOURCE_DIR)
blt_add_library(
NAME RAJA
SOURCES ${raja_sources}
DEPENDS_ON ${raja_depends} camp)
install(TARGETS RAJA
EXPORT RAJA
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION lib
)
install(EXPORT RAJA DESTINATION share/raja/cmake/)
target_include_directories(RAJA
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/tpl/cub>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/tpl/rocPRIM/rocprim/include>
$<INSTALL_INTERFACE:include>)
install(DIRECTORY include/ DESTINATION include FILES_MATCHING PATTERN *.hpp)
if(NOT ENABLE_EXTERNAL_CUB)
install(DIRECTORY tpl/cub/ DESTINATION include FILES_MATCHING PATTERN *.cuh)
endif()
if(NOT ENABLE_EXTERNAL_ROCPRIM)
install(DIRECTORY tpl/rocPRIM/rocprim/include/ DESTINATION include FILES_MATCHING PATTERN *.hpp)
endif()
install(FILES
${PROJECT_BINARY_DIR}/include/RAJA/config.hpp
include/RAJA/module.modulemap
include/RAJA/module.private.modulemap
DESTINATION "include/RAJA/")
if(ENABLE_TESTS)
add_subdirectory(test)
endif()
if(ENABLE_REPRODUCERS)
add_subdirectory(reproducers)
endif()
if(ENABLE_EXAMPLES)
add_subdirectory(examples)
endif()
if(ENABLE_EXERCISES)
add_subdirectory(exercises)
endif()
if (ENABLE_DOCUMENTATION)
add_subdirectory(docs)
endif ()
if (ENABLE_BENCHMARKS)
add_subdirectory(benchmark)
endif ()