-
Notifications
You must be signed in to change notification settings - Fork 22
/
CMakeLists.txt
229 lines (191 loc) · 7.73 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
cmake_minimum_required(VERSION 3.12)
project(LinAlg
VERSION 0.0.1
LANGUAGES CXX
)
################################################################################
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
################################################################################
option(LINALG_ENABLE_TESTS "Enable tests." Off)
option(LINALG_ENABLE_EXAMPLES "Build examples." Off)
#option(LINALG_ENABLE_BENCHMARKS "Enable benchmarks." Off)
#option(LINALG_ENABLE_COMP_BENCH "Enable compilation benchmarks." Off)
# Option to override which C++ standard to use
set(LINALG_CXX_STANDARD DETECT CACHE STRING "Override the default CXX_STANDARD to compile with.")
set_property(CACHE LINALG_CXX_STANDARD PROPERTY STRINGS DETECT 14 17 20 23)
option(LINALG_ENABLE_CONCEPTS "Try to enable concepts support by giving extra flags." On)
option(LINALG_ENABLE_ATOMIC_REF "Try to enable atomic_ref support" OFF)
option(LINALG_FIX_TRANSPOSED_FOR_PADDED_LAYOUTS "Enable implementation of P3222 (Fix transposed for P2642 padded layouts). OFF by default, though this will change if P3222 is voted into the C++ Standard Working Draft." OFF)
option(LINALG_FIX_CONJUGATED_FOR_NONCOMPLEX "Enable implementation of P3050 (Fix conjugated for noncomplex value types). OFF by default, though this will change if P3050 is voted into the C++ Standard Working Draft." OFF)
################################################################################
# Decide on the standard to use
if(LINALG_CXX_STANDARD STREQUAL "17")
if("cxx_std_17" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
message(STATUS "Using C++17 standard")
set(CMAKE_CXX_STANDARD 17)
else()
message(FATAL_ERROR "Requested LINALG_CXX_STANDARD \"17\" not supported by provided C++ compiler")
endif()
elseif(LINALG_CXX_STANDARD STREQUAL "14")
if("cxx_std_14" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
message(STATUS "Using C++14 standard")
set(CMAKE_CXX_STANDARD 14)
else()
message(FATAL_ERROR "Requested LINALG_CXX_STANDARD \"14\" not supported by provided C++ compiler")
endif()
elseif(LINALG_CXX_STANDARD STREQUAL "20")
if("cxx_std_20" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
message(STATUS "Using C++20 standard")
set(CMAKE_CXX_STANDARD 20)
else()
message(FATAL_ERROR "Requested LINALG_CXX_STANDARD \"20\" not supported by provided C++ compiler")
endif()
elseif(LINALG_CXX_STANDARD STREQUAL "23")
if("cxx_std_23" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
message(STATUS "Using C++23 standard")
set(CMAKE_CXX_STANDARD 23)
else()
message(FATAL_ERROR "Requested LINALG_CXX_STANDARD \"23\" not supported by provided C++ compiler")
endif()
else()
if("cxx_std_23" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
set(CMAKE_CXX_STANDARD 23)
message(STATUS "Detected support for C++23 standard")
elseif("cxx_std_20" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
set(CMAKE_CXX_STANDARD 20)
message(STATUS "Detected support for C++20 standard")
elseif("cxx_std_17" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
set(CMAKE_CXX_STANDARD 17)
message(STATUS "Detected support for C++17 standard")
elseif("cxx_std_14" IN_LIST CMAKE_CXX_COMPILE_FEATURES)
set(CMAKE_CXX_STANDARD 14)
message(STATUS "Detected support for C++14 standard")
else()
message(FATAL_ERROR "Cannot detect CXX_STANDARD of C++14 or newer.")
endif()
endif()
################################################################################
if(LINALG_ENABLE_CONCEPTS)
if(CMAKE_CXX_STANDARD GREATER_EQUAL 20)
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag("-fconcepts" COMPILER_SUPPORTS_FCONCEPTS)
if(COMPILER_SUPPORTS_FCONCEPTS)
message(STATUS "Using \"-fconcepts\" to enable concepts support")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fconcepts")
else()
check_cxx_compiler_flag("-fconcepts-ts" COMPILER_SUPPORTS_FCONCEPTS_TS)
if(COMPILER_SUPPORTS_FCONCEPTS)
message(STATUS "Using \"-fconcepts-ts\" to enable concepts support")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fconcepts-ts")
endif()
endif()
# Otherwise, it's possible that the compiler supports concepts without flags,
# but if it doesn't, they just won't be used, which is fine
endif()
endif()
if(LINALG_ENABLE_ATOMIC_REF)
# check_linker_flag requires CMake 3.18.
set(LINK_OPTIONS "${LINK_OPTIONS} -latomic")
endif()
################################################################################
find_package(mdspan QUIET)
if (NOT mdspan_FOUND)
message(STATUS "No installed mdspan found, fetching from Github")
include(FetchContent)
FetchContent_Declare(
mdspan
GIT_REPOSITORY https://github.com/kokkos/mdspan.git
GIT_TAG stable
)
FetchContent_GetProperties(mdspan)
if(NOT mdspan_POPULATED)
FetchContent_Populate(mdspan)
add_subdirectory(${mdspan_SOURCE_DIR} ${mdspan_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()
endif()
find_package(BLAS)
option(LINALG_ENABLE_BLAS
"Assume that we are linking with a BLAS library."
${BLAS_FOUND})
find_package(TBB)
option(LINALG_ENABLE_TBB
"Enable TBB. Default: autodetect TBB installation."
${TBB_FOUND})
if(LINALG_ENABLE_TBB)
find_package(TBB REQUIRED)
endif()
find_package(KokkosKernels)
option(LINALG_ENABLE_KOKKOS
"Enable Kokkos-based implementation. Default: autodetect Kokkos installation."
${KokkosKernels_FOUND})
if(LINALG_ENABLE_KOKKOS)
find_package(Kokkos REQUIRED)
find_package(KokkosKernels REQUIRED)
endif()
################################################################################
CONFIGURE_FILE(include/experimental/__p1673_bits/linalg_config.h.in
include/experimental/__p1673_bits/linalg_config.h)
include_directories(${CMAKE_CURRENT_BINARY_DIR}/include/experimental)
message(STATUS "Build include directory: ${CMAKE_CURRENT_BINARY_DIR}/include/experimental")
################################################################################
add_library(linalg INTERFACE)
add_library(std::linalg ALIAS linalg)
target_link_libraries(linalg INTERFACE std::mdspan)
if(LINALG_ENABLE_TBB)
target_link_libraries(linalg INTERFACE TBB::tbb)
endif()
if(LINALG_ENABLE_KOKKOS)
target_link_libraries(linalg INTERFACE Kokkos::kokkos)
target_link_libraries(linalg INTERFACE Kokkos::kokkoskernels)
target_include_directories(linalg INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/tpl-implementations/include>
)
endif()
target_include_directories(linalg INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
################################################################################
install(TARGETS linalg EXPORT linalgTargets
INCLUDES DESTINATION include
)
install(EXPORT linalgTargets
FILE linalgTargets.cmake
NAMESPACE std::
DESTINATION cmake
)
export(TARGETS linalg
NAMESPACE std::
FILE linalgTargets.cmake
)
install(DIRECTORY include/experimental DESTINATION include)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/experimental/__p1673_bits/linalg_config.h
DESTINATION include/experimental/__p1673_bits
)
include(CMakePackageConfigHelpers)
configure_package_config_file(cmake/LinAlgConfig.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/LinAlgConfig.cmake
INSTALL_DESTINATION cmake
)
write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/LinAlgConfigVersion.cmake
COMPATIBILITY SameMajorVersion
)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/LinAlgConfig.cmake ${CMAKE_CURRENT_BINARY_DIR}/LinAlgConfigVersion.cmake
DESTINATION cmake
)
################################################################################
if(LINALG_ENABLE_TESTS)
enable_testing()
add_subdirectory(tests)
add_subdirectory(compilation_tests)
endif()
if(LINALG_ENABLE_EXAMPLES)
add_subdirectory(examples)
endif()
#if(LINALG_ENABLE_BENCHMARKS)
# add_subdirectory(benchmarks)
#endif()
#
#if(LINALG_ENABLE_COMP_BENCH)
# add_subdirectory(comp_bench)
#endif()