forked from libocca/occa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
309 lines (244 loc) · 9.13 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
cmake_minimum_required (VERSION 3.21 FATAL_ERROR)
#---[ CMake Config ]--------------------
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set (CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
message(STATUS "Using CMake version ${CMAKE_VERSION}")
cmake_policy(SET CMP0054 NEW)
cmake_policy(SET CMP0056 NEW)
#=======================================
#---[ Build Config ]--------------------
project(OCCA
VERSION 2.0.0
DESCRIPTION "JIT Compilation for Multiple Architectures: C++, OpenMP, CUDA, HIP, OpenCL, Metal"
HOMEPAGE_URL "https://github.com/libocca/occa"
LANGUAGES C CXX)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build type" FORCE)
endif()
# CMake will decay to a previous C++ standard if a compiler does not support C++17
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
option(OCCA_ENABLE_OPENMP "Build with OpenMP if available" ON)
option(OCCA_ENABLE_CUDA "Build with CUDA if available" ON)
option(OCCA_ENABLE_OPENCL "Build with OpenCL if available" ON)
option(OCCA_ENABLE_HIP "Build with HIP if available" ON)
option(OCCA_ENABLE_METAL "Build with Metal if available" ON)
option(OCCA_ENABLE_DPCPP "Build with SYCL/DPCPP if available" ON)
option(OCCA_ENABLE_TESTS "Build tests" OFF)
option(OCCA_ENABLE_EXAMPLES "Build simple examples" OFF)
option(OCCA_ENABLE_FORTRAN "Enable Fortran interface" OFF)
if(OCCA_ENABLE_FORTRAN)
enable_language(Fortran)
endif()
option(ENABLE_SHARABLE_DEVICE "Enable sharable device by multiple threads" OFF)
if (ENABLE_SHARABLE_DEVICE)
set(OCCA_THREAD_SHARABLE_ENABLED 1)
message("-- OCCA sharable by multi-threads : Enabled")
else()
set(OCCA_THREAD_SHARABLE_ENABLED 0)
endif()
set(OCCA_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(OCCA_BUILD_DIR ${CMAKE_BINARY_DIR})
include(CodeGen)
set(OCCA_USING_VS OFF)
set(OCCA_UNSAFE OFF)
# Test Apple first because UNIX==true for Apple and Linux.
if(APPLE)
set(OCCA_OS "OCCA_MACOS_OS")
elseif(UNIX)
set(OCCA_OS "OCCA_LINUX_OS")
else()
set(OCCA_OS "OCCA_WINDOWS_OS")
endif()
include(SetCompilerFlags)
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag("-fno-strict-aliasing" COMPILER_SUPPORTS_NO_STRICT_ALIASING)
if(COMPILER_SUPPORTS_NO_STRICT_ALIASING)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-strict-aliasing")
endif()
string(TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_UPPER)
message("-- System : ${CMAKE_SYSTEM}")
message("-- Build type : ${CMAKE_BUILD_TYPE}")
message("-- C flags : ${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UPPER}}")
message("-- CXX flags : ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_${CMAKE_BUILD_TYPE_UPPER}}")
if(OCCA_ENABLE_FORTRAN)
message("-- F90 flags : ${CMAKE_Fortran_FLAGS} ${CMAKE_Fortran_FLAGS_${CMAKE_BUILD_TYPE_UPPER}}")
endif()
if(OCCA_ENABLE_FORTRAN)
set(CMAKE_Fortran_MODULE_DIRECTORY ${OCCA_BUILD_DIR}/mod)
endif()
#=======================================
#---[ libocca.so ]----------------------
add_library(libocca SHARED)
# Without this, CMake will create liblibocca.so
set_target_properties(libocca PROPERTIES
OUTPUT_NAME occa
LIBRARY_OUTPUT_DIRECTORY ${OCCA_BUILD_DIR}/lib)
# Find needed and requested packages
find_package(Threads REQUIRED)
# Use the provided imported target Threads::Threads, to make our package relocatable
target_link_libraries(libocca PRIVATE
Threads::Threads ${CMAKE_DL_LIBS})
target_include_directories(libocca PUBLIC
$<BUILD_INTERFACE:${OCCA_SOURCE_DIR}/include>
$<BUILD_INTERFACE:${OCCA_BUILD_DIR}/include>
$<INSTALL_INTERFACE:include>)
target_include_directories(libocca PRIVATE
$<BUILD_INTERFACE:${OCCA_SOURCE_DIR}/src>)
target_compile_definitions(libocca PRIVATE -DUSE_CMAKE)
#=======================================
#---[ OpenMP ]--------------------------
if(OCCA_ENABLE_OPENMP)
find_package(OpenMP)
if(OPENMP_CXX_FOUND)
set(OCCA_OPENMP_ENABLED 1)
message("-- OpenMP include dirs: ${OpenMP_CXX_INCLUDE_DIRS}")
message("-- OpenMP libraries: ${OpenMP_CXX_LIBRARIES}")
# Use the provided imported target OpenMP::OpenMP_CXX,
# (which wraps the CXX_INCLUDE_DIRS and CXX_LIBRARIES,) to make our package relocatable
target_link_libraries(libocca PRIVATE OpenMP::OpenMP_CXX)
else()
set(OCCA_OPENMP_ENABLED 0)
endif()
endif()
#=======================================
#---[ CUDA ]----------------------------
if(OCCA_ENABLE_CUDA)
find_package(CUDAToolkit)
if(CUDAToolkit_FOUND)
set(OCCA_CUDA_ENABLED 1)
message("-- CUDA include dirs: ${CUDAToolkit_INCLUDE_DIRS}")
message("-- CUDA driver library: ${CUDAToolkit_LIBRARY_DIR}")
# Use the provided imported target CUDA::cuda_driver, to make our package relocatable
target_link_libraries(libocca PUBLIC CUDA::cuda_driver)
else()
set(OCCA_CUDA_ENABLED 0)
endif()
endif()
#=======================================
#---[ OpenCL ]--------------------------
if(OCCA_ENABLE_OPENCL)
find_package(OpenCLWrapper)
if(OpenCL_FOUND)
set(OCCA_OPENCL_ENABLED 1)
message("-- OpenCL include dirs: ${OpenCL_INCLUDE_DIRS}")
message("-- OpenCL libraries: ${OpenCL_LIBRARIES}")
# Use the provided imported target OpenCL::OpenCL,
# (which wraps the _INCLUDE_DIRS and _LIBRARIES,) to make our package relocatable
target_link_libraries(libocca PRIVATE OpenCL::OpenCL)
else()
set(OCCA_OPENCL_ENABLED 0)
endif()
endif()
#=======================================
#---[ SYCL/DPCPP ]-----------------------
if(OCCA_ENABLE_DPCPP)
find_package(DPCPP)
if(DPCPP_FOUND)
set(OCCA_DPCPP_ENABLED 1)
message("-- DPCPP flags: ${SYCL_FLAGS}")
message("-- DPCPP include dirs: ${SYCL_INCLUDE_DIRS}")
message("-- DPCPP libraries: ${SYCL_LIBRARIES}")
# Use our wrapper imported target OCCA::depends::DPCPP,
# (which wraps the _INCLUDE_DIRS and _LIBRARIES,) to make our package relocatable
target_link_libraries(libocca PRIVATE OCCA::depends::DPCPP)
else()
set(OCCA_DPCPP_ENABLED 0)
endif()
endif()
#=======================================
#---[ HIP ]-----------------------------
if(OCCA_ENABLE_HIP)
find_package(HIP)
if(HIP_FOUND)
set(OCCA_HIP_ENABLED 1)
message("-- HIP version: ${HIP_VERSION_STRING}")
message("-- HIP platform: ${HIP_PLATFORM}")
message("-- HIP include dirs: ${HIP_INCLUDE_DIRS}")
message("-- HIP libraries: ${HIP_LIBRARIES}")
# Use our wrapper imported target OCCA::depends::HIP,
# (which wraps the _COMPILE_DEFINITIONS, _INCLUDE_DIRS and _LIBRARIES,) to make our package relocatable
target_link_libraries(libocca PRIVATE OCCA::depends::HIP)
else (HIP_FOUND)
set(OCCA_HIP_ENABLED 0)
endif(HIP_FOUND)
endif()
#=======================================
#---[ Metal ]---------------------------
if(OCCA_ENABLE_METAL AND APPLE)
find_package(METAL)
if(METAL_FOUND)
set(OCCA_METAL_ENABLED 1)
message("-- METAL libraries: ${METAL_LIBRARY}")
message("-- METAL core services: ${CORE_SERVICES}")
message("-- METAL app kit: ${APP_KIT}")
# Use our wrapper imported target OCCA::depends::METAL,
# (which wraps the three libraries variables,) to make our package relocatable
target_link_libraries(libocca PRIVATE OCCA::depends::METAL)
else()
set(OCCA_METAL_ENABLED 0)
endif()
endif()
#=======================================
if(NOT OCCA_IS_TOP_LEVEL)
# OCCA is being built as a subdirectory in another project
set(OCCA_OPENMP_ENABLED ${OCCA_OPENMP_ENABLED} PARENT_SCOPE)
set(OCCA_CUDA_ENABLED ${OCCA_CUDA_ENABLED} PARENT_SCOPE)
set(OCCA_HIP_ENABLED ${OCCA_HIP_ENABLED} PARENT_SCOPE)
set(OCCA_DPCPP_ENABLED ${OCCA_DPCPP_ENABLED} PARENT_SCOPE)
set(OCCA_OPENCL_ENABLED ${OCCA_OPENCL_ENABLED} PARENT_SCOPE)
set(OCCA_METAL_ENABLED ${OCCA_METAL_ENABLED} PARENT_SCOPE)
endif()
# Generate CompiledDefines from libraries we found
configure_file(
scripts/build/compiledDefinesTemplate.hpp.in
${OCCA_BUILD_DIR}/include/occa/defines/compiledDefines.hpp)
install(
FILES ${OCCA_BUILD_DIR}/include/occa/defines/compiledDefines.hpp
DESTINATION include/occa/defines)
# Find source files
file(
GLOB_RECURSE OCCA_SRC_cpp
RELATIVE ${OCCA_SOURCE_DIR} "src/*.cpp")
if(OCCA_ENABLE_FORTRAN)
file(GLOB_RECURSE OCCA_SRC_f90
RELATIVE ${OCCA_SOURCE_DIR} "src/*.f90")
install(CODE
"file(GLOB public-modules ${CMAKE_Fortran_MODULE_DIRECTORY}/*.mod)\n
file(INSTALL DESTINATION
${CMAKE_INSTALL_PREFIX}/include
TYPE FILE
FILES \${public-modules})")
set_target_properties(libocca PROPERTIES
LINKER_LANGUAGE C)
endif()
if(OCCA_METAL_ENABLED)
file(GLOB_RECURSE OCCA_SRC_metal
RELATIVE ${OCCA_SOURCE_DIR} "src/*.mm")
endif()
set(OCCA_SRC
${OCCA_SRC_cpp}
${OCCA_SRC_f90}
${OCCA_SRC_metal})
target_sources(libocca PRIVATE ${OCCA_SRC})
install(TARGETS libocca EXPORT occaExport DESTINATION lib)
install(DIRECTORY include/ DESTINATION include)
if(OCCA_ENABLE_TESTS)
include(CTest)
add_subdirectory(tests)
endif()
if(OCCA_ENABLE_EXAMPLES)
add_subdirectory(examples)
endif()
add_subdirectory(bin)
# Create a package config and associated files.
include(ExportAndPackageConfig)
install(CODE
"configure_file(
${OCCA_SOURCE_DIR}/modulefiles/occa
${CMAKE_INSTALL_PREFIX}/modulefiles/occa
@ONLY
)"
)