forked from IAS-Astrophysics/athenak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
208 lines (181 loc) · 7.23 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
# Master CMakeLists.txt file for Athena++ (Kokkos version)
#
#------ start with setting various compiler, environment, and build defaults -------------
cmake_minimum_required(VERSION 3.10)
project(athena VERSION 0.1 LANGUAGES C CXX)
# Disable in-source builds to prevent source tree corruption.
if( "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}" )
message(FATAL_ERROR "FATAL: In-source builds disabled. Please create a separate build directory in which to run cmake, e.g. mkdir build; cd build; cmake ../" )
endif()
# Athena++ (and Kokkos) require C++17 standard as minimum
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Force flag to denote C++ standard, as deprecated c++1z is not supported by nvcc.
set(CMAKE_CXX17_STANDARD_COMPILE_OPTION "-std=c++17")
# Kokkos recommends NOT using default compiler extensions
set(CMAKE_CXX_EXTENSIONS OFF)
# following policy required to enable target_link_libraries() below
cmake_policy(SET CMP0079 NEW)
# Use 'Release' as default build type. Use 'Debug' for testing.
if(NOT CMAKE_BUILD_TYPE)
message(STATUS "Setting build type to 'Release' as none was specified.")
set(CMAKE_BUILD_TYPE Release)
endif()
#------ default values for compile time options -----------------------------------------
option(Athena_SINGLE_PRECISION "Compile for single precision" OFF)
option(Athena_ENABLE_MPI "Compile with MPI parallelism enabled" OFF)
option(Athena_ENABLE_OPENMP "Compile with OpenMP parallelism enabled" OFF)
set(PROBLEM built_in_pgens CACHE STRING "Name of problem generator function")
#------ set macros exported to config.hpp ------------------------------------------------
# set single precision macro (true/false)
if (Athena_SINGLE_PRECISION)
set(SINGLE_PRECISION_ENABLED 1)
else()
set(SINGLE_PRECISION_ENABLED 0)
endif()
# set MPI macro (true/false)
set(ENABLE_MPI OFF)
if (Athena_ENABLE_MPI)
find_package(MPI COMPONENTS CXX)
if (NOT MPI_FOUND)
message(FATAL_ERROR "MPI package required but could not be found.")
endif()
set(ENABLE_MPI ON)
set(Kokkos_ENABLE_MPI ON CACHE BOOL "Compile Kokkos with MPI")
endif()
if (ENABLE_MPI)
set(MPI_PARALLEL_ENABLED 1)
else ()
set(MPI_PARALLEL_ENABLED 0)
endif()
# set OpenMP macro (true/false)
set(ENABLE_OPENMP OFF)
if (Athena_ENABLE_OPENMP)
find_package(OpenMP COMPONENTS CXX)
if (NOT OpenMP_FOUND)
message(FATAL_ERROR "OpenMP package is required but could not be found.")
endif()
set(ENABLE_OPENMP ON)
set(Kokkos_ENABLE_OPENMP ON CACHE BOOL "Compile Kokkos with OpenMP")
endif()
if (ENABLE_OPENMP)
set(OPENMP_PARALLEL_ENABLED 1)
else()
set(OPENMP_PARALLEL_ENABLED 0)
endif()
#set user problem generator flag
if (NOT ${PROBLEM} STREQUAL "built_in_pgens")
message(STATUS "Including user-specified problem generator file: ${PROBLEM}")
set(USER_PROBLEM_ENABLED 1)
else()
set(USER_PROBLEM_ENABLED 0)
endif()
#------ set various Kokkos option --------------------------------------------------------
# Tell Kokkos to vectorize aggressively
# Kokkos prefers this capitalization for debugging reasons
SET (Kokkos_ENABLE_AGGRESSIVE_VECTORIZATION ON CACHE BOOL
"Kokkos aggressive vectorization")
# Tell Kokkos we need lambdas in Cuda.
if (Kokkos_ENABLE_CUDA)
SET (Kokkos_ENABLE_CUDA_LAMBDA ON CACHE BOOL "Enable lambda expressions in CUDA")
endif()
# If this is a debug build, set kokkos debug on
if (${CMAKE_BUILD_TYPE} STREQUAL "Debug")
message(STATUS "Enabling Kokkos debug mode")
set(Kokkos_ENABLE_DEBUG ON CACHE BOOL "Most general debug settings")
set(Kokkos_ENABLE_DEBUG_BOUNDS_CHECK ON CACHE BOOL
"Bounds checking on Kokkos views")
set(Kokkos_ENABLE_DEBUG_DUALVIEW_MODIFY_CHECK ON CACHE BOOL
"Sanity checks on Kokkos DualView")
endif()
#------ create configuration header file from template in /src directory -----------------
# add subdirectories for source code and include files
add_subdirectory(src)
add_subdirectory(kokkos)
include_directories(${Kokkos_INCLUDE_DIRS_RET})
target_link_libraries(athena PUBLIC Kokkos::kokkos)
if (ENABLE_MPI)
target_link_libraries(athena PUBLIC MPI::MPI_CXX)
endif()
if (ENABLE_OPENMP)
target_link_libraries(athena PUBLIC OpenMP::OpenMP_CXX)
endif()
if (${PROBLEM} STREQUAL "z4c_two_puncture")
target_include_directories(athena PRIVATE ${CMAKE_SOURCE_DIR}/twopuncturesc/include)
target_link_libraries(athena PUBLIC ${CMAKE_SOURCE_DIR}/twopuncturesc/lib/libTwoPunctures.a)
#target_include_directories(athena PRIVATE ${CMAKE_SOURCE_DIR}/gsl/include)
#target_link_libraries(athena PUBLIC ${CMAKE_SOURCE_DIR}/gsl/lib/libgsl.a)
#target_link_libraries(athena PUBLIC ${CMAKE_SOURCE_DIR}/gsl/lib/libgslcblas.a)
find_package(GSL REQUIRED)
target_link_libraries(athena PUBLIC GSL::gsl GSL::gslcblas)
set(TWO_PUNCTURES 1)
else()
set(TWO_PUNCTURES 0)
endif()
if (${PROBLEM} STREQUAL "z4c_spectre_bbh")
# Load binary black hole initial data from the SpECTRE code:
# https://spectre-code.org
#
# Uses the `BundledExporter` library from SpECTRE to read the initial data.
# You can help CMake find the library by setting
# `-D SPECTRE_ROOT=path/to/spectre/build` to the path where SpECTRE is
# installed.
find_library(
SPECTRE_EXPORTER_LIB
NAMES BundledExporter
PATH_SUFFIXES lib
PATHS ${SPECTRE_ROOT})
find_path(
SPECTRE_EXPORTER_INCLUDE_DIR
NAMES spectre/Exporter.hpp
PATH_SUFFIXES include
PATHS ${SPECTRE_ROOT})
add_library(spectre::Exporter UNKNOWN IMPORTED)
set_target_properties(
spectre::Exporter
PROPERTIES IMPORTED_LOCATION ${SPECTRE_EXPORTER_LIB}
INTERFACE_INCLUDE_DIRECTORIES ${SPECTRE_EXPORTER_INCLUDE_DIR})
target_link_libraries(athena PRIVATE spectre::Exporter)
endif()
if (${PROBLEM} STREQUAL "elliptica_bns")
target_include_directories(athena PRIVATE
${CMAKE_SOURCE_DIR}/Elliptica_ID_Reader/include)
target_link_libraries(athena PUBLIC
${CMAKE_SOURCE_DIR}/Elliptica_ID_Reader/lib/libelliptica_id_reader.a)
if (Athena_ENABLE_OPENMP)
else ()
find_package(OpenMP COMPONENTS CXX)
target_link_libraries(athena PUBLIC OpenMP::OpenMP_CXX)
endif()
endif()
if (${PROBLEM} STREQUAL "sgrid_bns")
target_link_libraries(athena PUBLIC
${CMAKE_SOURCE_DIR}/sgrid/lib/libsgrid.a)
endif()
if (${PROBLEM} STREQUAL "lorene_bns")
# FIXME(user): The way the Fortran libraries here are linked is not great. Because these
# are implicit libraries, we shouldn't have to add them manually, but at least on some
# machines this seems to be necessary. We should find out if there's a better way to
# do this.
enable_language(Fortran)
include(FortranCInterface)
FortranCInterface_VERIFY(CXX)
find_package(BLAS REQUIRED)
find_package(LAPACK REQUIRED)
find_package(GSL REQUIRED)
target_include_directories(athena PRIVATE
${CMAKE_SOURCE_DIR}/Lorene/Export/C++/Include
${CMAKE_SOURCE_DIR}/Lorene/C++/Include)
target_link_libraries(athena PUBLIC
${CMAKE_SOURCE_DIR}/Lorene/Lib/liblorene_export.a
${CMAKE_SOURCE_DIR}/Lorene/Lib/liblorene.a
${CMAKE_SOURCE_DIR}/Lorene/Lib/liblorenef77.a
${BLAS_LIBRARIES} ${LAPACK_LIBRARIES}
GSL::gsl ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES})
endif()
# enable include of header files created in build directories
target_include_directories(athena PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
configure_file(config.hpp.in config.hpp)