forked from uxlfoundation/oneMath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
170 lines (146 loc) · 4.75 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
#===============================================================================
# Copyright 2020-2021 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions
# and limitations under the License.
#
#
# SPDX-License-Identifier: Apache-2.0
#===============================================================================
cmake_minimum_required (VERSION 3.13)
# Set flags from Conan if Conan is used
if(EXISTS "${CMAKE_BINARY_DIR}/conanbuildinfo.cmake")
include("${CMAKE_BINARY_DIR}/conanbuildinfo.cmake" REQUIRED)
conan_basic_setup()
endif()
# Define build type
set(DEFAULT_BUILD_TYPE "Release")
if("${CMAKE_BUILD_TYPE}" STREQUAL "")
message(STATUS "CMAKE_BUILD_TYPE: None, set to ${DEFAULT_BUILD_TYPE} by default")
set(CMAKE_BUILD_TYPE ${DEFAULT_BUILD_TYPE} CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel RelWithAssert" FORCE)
else()
message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
endif()
project(oneMKL VERSION 0.1.0 LANGUAGES CXX)
option(BUILD_SHARED_LIBS "Build dynamic libraries" ON)
## Backends
option(ENABLE_MKLCPU_BACKEND "" ON)
option(ENABLE_MKLGPU_BACKEND "" ON)
if(ENABLE_MKLCPU_BACKEND)
option(ENABLE_MKLCPU_THREAD_TBB "" ON)
endif()
option(ENABLE_CUBLAS_BACKEND "" OFF)
option(ENABLE_CURAND_BACKEND "" OFF)
option(ENABLE_NETLIB_BACKEND "" OFF)
## Domains
set(DOMAINS_LIST "")
if(ENABLE_MKLCPU_BACKEND
OR ENABLE_MKLGPU_BACKEND
OR ENABLE_CUBLAS_BACKEND
OR ENABLE_NETLIB_BACKEND)
list(APPEND DOMAINS_LIST "blas")
endif()
if(ENABLE_MKLCPU_BACKEND
OR ENABLE_MKLGPU_BACKEND
OR ENABLE_CURAND_BACKEND)
list(APPEND DOMAINS_LIST "rng")
endif()
if(NOT TARGET_DOMAINS OR TARGET_DOMAINS STREQUAL "None")
# Set to all by default
set(TARGET_DOMAINS ${DOMAINS_LIST})
else()
# Make sure the input was converted to list
string(REPLACE " " ";" TARGET_DOMAINS ${TARGET_DOMAINS})
set(NOT_FOUND 0)
foreach(domain ${TARGET_DOMAINS})
if(NOT ${domain} IN_LIST DOMAINS_LIST)
set(NOT_FOUND 1)
break()
endif()
endforeach()
if(NOT_FOUND)
message(STATUS "TARGET_DOMAINS contains unsupported options, reset to all")
set(TARGET_DOMAINS ${DOMAINS_LIST})
endif()
endif()
message(STATUS "TARGET_DOMAINS: ${TARGET_DOMAINS}")
## Testing
option(BUILD_FUNCTIONAL_TESTS "" ON)
## Documentation
option(BUILD_DOC "" OFF)
# Set compilation flags
if(UNIX)
set(CMAKE_CXX_STANDARD 11)
else()
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-function")
foreach (flag_var
CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
string(REGEX REPLACE "/M[TD]+[d]*" "" ${flag_var} "${${flag_var}}")
endforeach()
endif()
set(CMAKE_CXX_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Set output directories for the project
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
# Add CMake Finders
add_subdirectory(cmake)
# Include general cmake config files
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
# Find necessary packages
find_package(Compiler REQUIRED)
# Add source directory and output to bin/
add_subdirectory(src bin)
# Functional Tests
if(BUILD_FUNCTIONAL_TESTS)
enable_testing()
add_subdirectory(tests)
endif()
if(BUILD_DOC)
add_subdirectory(docs)
endif()
install(DIRECTORY include/
DESTINATION include
COMPONENT Devel
)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/oneMKLConfigVersion.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY AnyNewerVersion
)
export(EXPORT oneMKLTargets
FILE "${CMAKE_CURRENT_BINARY_DIR}/oneMKLTargets.cmake"
NAMESPACE ONEMKL::
)
configure_file("${PROJECT_SOURCE_DIR}/cmake/oneMKLConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/oneMKLConfig.cmake"
COPYONLY
)
set(config_package_location "lib/cmake/${PROJECT_NAME}")
install(EXPORT oneMKLTargets
FILE oneMKLTargets.cmake
NAMESPACE MKL::
DESTINATION ${config_package_location}
)
install(
FILES
"${PROJECT_SOURCE_DIR}/cmake/oneMKLConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/oneMKLConfigVersion.cmake"
DESTINATION ${config_package_location}
COMPONENT Devel
)