forked from milvus-io/knowhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
249 lines (206 loc) · 9.49 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
#-------------------------------------------------------------------------------
# Copyright (C) 2019-2020 Zilliz. All rights reserved.
#
# 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.
#-------------------------------------------------------------------------------
cmake_minimum_required(VERSION 3.18)
message( STATUS "------------------------------KNOWHERE-----------------------------------" )
message( STATUS "Building using CMake version: ${CMAKE_VERSION}" )
set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake" )
include( KnowhereUtils )
#******************* Build time, type and code version *****************
get_current_time( BUILD_TIME )
message( STATUS "Build time = ${BUILD_TIME}" )
get_build_type( TARGET BUILD_TYPE
DEFAULT "Release" )
message( STATUS "Build type = ${BUILD_TYPE}" )
get_knowhere_version( TARGET KNOWHERE_VERSION
DEFAULT "0.1.0" )
message( STATUS "Build version = ${KNOWHERE_VERSION}" )
get_last_commit_id( LAST_COMMIT_ID )
message( STATUS "LAST_COMMIT_ID = ${LAST_COMMIT_ID}" )
#configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/src/version.h.in
# ${CMAKE_CURRENT_SOURCE_DIR}/src/version.h @ONLY )
# unset(CMAKE_EXPORT_COMPILE_COMMANDS CACHE)
set( CMAKE_EXPORT_COMPILE_COMMANDS ON )
#******************************* Project *******************************
project( knowhere VERSION "${KNOWHERE_VERSION}" )
project( knowhere LANGUAGES C CXX )
set( CMAKE_CXX_STANDARD 17 )
set( CMAKE_CXX_STANDARD_REQUIRED on )
set( KNOWHERE_SOURCE_DIR ${PROJECT_SOURCE_DIR} )
set( KNOWHERE_BINARY_DIR ${PROJECT_BINARY_DIR} )
set( KNOWHERE_THIRDPARTY_SRC ${PROJECT_SOURCE_DIR}/thirdparty )
# This will set RPATH to all excutable TARGET
# self-installed dynamic libraries will be correctly linked by excutable
set( CMAKE_INSTALL_RPATH "/usr/lib" "${CMAKE_INSTALL_PREFIX}/lib" )
set( CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE )
set( CMAKE_CUDA_COMPILER "/usr/local/cuda/bin/nvcc" )
include( CheckCXXCompilerFlag )
if ( ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
message( STATUS "============== OSX Environment ================" )
set( MACOS TRUE )
# Adjust accordingly if libomp is not install here.
set( CMAKE_CXX_COMPILER "/usr/local/opt/llvm/bin/clang++" )
set( CMAKE_CXX_FLAGS "-I/usr/local/opt/libomp/include" )
check_cxx_compiler_flag( -std=c++11 HAS_STD_CPP11_FLAG )
if ( HAS_STD_CPP11_FLAG )
add_compile_options( -std=c++11 )
endif ()
elseif ( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" )
message( STATUS "============== Linux Environment ===============" )
set( LINUX TRUE )
else ()
message( FATAL_ERROR "Unsupported platform!" )
endif ()
#***************************** Dependencies ****************************
include( GNUInstallDirs )
include( DefineOptionsCore )
include( BuildUtilsCore )
include( ExternalProject )
if ( LINUX )
include( ThirdPartyPackagesCore )
endif ()
using_ccache_if_defined( KNOWHERE_USE_CCACHE )
#************************** Compiler arguments *************************
if ( KNOWHERE_GPU_VERSION )
message( STATUS "Building Knowhere GPU version" )
add_compile_definitions( "KNOWHERE_GPU_VERSION" )
enable_language( CUDA )
find_package( CUDA 10 REQUIRED )
include_directories( ${CUDA_INCLUDE_DIRS} )
link_directories( ${CUDA_TOOLKIT_ROOT_DIR}/lib64 )
set( CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -Xcompiler -fPIC -std=c++11 -D_FORCE_INLINES --expt-extended-lambda" )
if ( CCACHE_FOUND )
set( CMAKE_CUDA_COMPILER_LAUNCHER "${CCACHE_FOUND}" )
endif ()
else ()
message( STATUS "Building Knowhere CPU version" )
endif ()
if ( KNOWHERE_SUPPORT_SPTAG )
message( STATUS "Building Knowhere with SPTAG supported" )
add_compile_definitions( "KNOWHERE_SUPPORT_SPTAG" )
endif ()
if ( CMAKE_BUILD_TYPE STREQUAL "Release" )
append_flags( CMAKE_CXX_FLAGS FLAGS "-O3" )
append_flags( CUDA_NVCC_FLAGS FLAGS "-O3" )
else ()
append_flags( CMAKE_CXX_FLAGS FLAGS "-O0" "-g" )
append_flags( CUDA_NVCC_FLAGS FLAGS "-O0" "-g" )
endif ()
append_flags( CMAKE_CXX_FLAGS
FLAGS
"-fPIC"
"-DELPP_THREAD_SAFE"
"-fopenmp"
)
# option "-rdynamic" is to print out detailed backtrace info for debug-ease
if ( LINUX )
append_flags( CMAKE_CXX_FLAGS FLAGS "-Werror" "-rdynamic" )
endif ()
#*********************** Coding style check tools **********************
find_package( Python COMPONENTS Interpreter Development )
find_package( ClangTools )
set( BUILD_SUPPORT_DIR "${CMAKE_SOURCE_DIR}/build-support" )
if ( "$ENV{CMAKE_EXPORT_COMPILE_COMMANDS}" STREQUAL "1" OR CLANG_TIDY_FOUND )
# Generate a Clang compile_commands.json "compilation database" file for use
# with various development tools, such as Vim's YouCompleteMe plugin.
# See http://clang.llvm.org/docs/JSONCompilationDatabase.html
set( CMAKE_EXPORT_COMPILE_COMMANDS ON )
set( CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES ${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES} )
endif ()
#
# "make lint" target
#
if ( NOT KNOWHERE_VERBOSE_LINT )
set( KNOWHERE_LINT_QUIET "--quiet" )
endif ()
if ( NOT LINT_EXCLUSIONS_FILE )
# source files matching a glob from a line in this file
# will be excluded from linting (cpplint, clang-tidy, clang-format)
set( LINT_EXCLUSIONS_FILE ${BUILD_SUPPORT_DIR}/lint_exclusions.txt )
endif ()
if ( NOT IGNORE_CHECKS_FILE )
set( IGNORE_CHECKS_FILE ${BUILD_SUPPORT_DIR}/ignore_checks.txt )
endif ()
find_program( CPPLINT_BIN NAMES cpplint cpplint.py HINTS ${BUILD_SUPPORT_DIR} )
message( STATUS "Found cpplint executable at ${CPPLINT_BIN}" )
#
# "make lint-knowhere" targets
#
add_custom_target( lint-knowhere
${PYTHON_EXECUTABLE} ${BUILD_SUPPORT_DIR}/run_cpplint.py
--cpplint_binary ${CPPLINT_BIN}
--exclude_globs ${LINT_EXCLUSIONS_FILE}
--source_dir ${CMAKE_CURRENT_SOURCE_DIR}
${KNOWHERE_LINT_QUIET}
)
#
# "make clang-format" and "make check-clang-format" targets
#
if ( ${CLANG_FORMAT_FOUND} )
# runs clang format and updates files in place.
add_custom_target( clang-format-knowhere
${PYTHON_EXECUTABLE} ${BUILD_SUPPORT_DIR}/run_clang_format.py
--clang_format_binary ${CLANG_FORMAT_BIN}
--exclude_globs ${LINT_EXCLUSIONS_FILE}
--source_dir ${CMAKE_CURRENT_SOURCE_DIR}/src
--fix
${KNOWHERE_LINT_QUIET} )
# runs clang format and exits with a non-zero exit code if any files need to be reformatted
add_custom_target( check-clang-format-knowhere
${PYTHON_EXECUTABLE} ${BUILD_SUPPORT_DIR}/run_clang_format.py
--clang_format_binary ${CLANG_FORMAT_BIN}
--exclude_globs ${LINT_EXCLUSIONS_FILE}
--source_dir ${CMAKE_CURRENT_SOURCE_DIR}/src
${KNOWHERE_LINT_QUIET} )
endif ()
#
# "make clang-tidy" and "make check-clang-tidy" targets
#
if ( ${CLANG_TIDY_FOUND} )
# runs clang-tidy and attempts to fix any warning automatically
add_custom_target( clang-tidy-knowhere
${PYTHON_EXECUTABLE} ${BUILD_SUPPORT_DIR}/run_clang_tidy.py
--clang_tidy_binary ${CLANG_TIDY_BIN}
--exclude_globs ${LINT_EXCLUSIONS_FILE}
--compile_commands ${CMAKE_BINARY_DIR}/compile_commands.json
--source_dir ${CMAKE_CURRENT_SOURCE_DIR}/src
--fix
${KNOWHERE_LINT_QUIET} )
# runs clang-tidy and exits with a non-zero exit code if any errors are found.
add_custom_target( check-clang-tidy-knowhere
${PYTHON_EXECUTABLE} ${BUILD_SUPPORT_DIR}/run_clang_tidy.py
--clang_tidy_binary ${CLANG_TIDY_BIN}
--exclude_globs ${LINT_EXCLUSIONS_FILE}
--ignore_checks ${IGNORE_CHECKS_FILE}
--compile_commands ${CMAKE_BINARY_DIR}/compile_commands.json
--source_dir ${CMAKE_CURRENT_SOURCE_DIR}/src
${KNOWHERE_LINT_QUIET} )
endif ()
#
# Validate and print out Milvus configuration options
#
config_summary()
#***************************** Source files ****************************
add_subdirectory( knowhere/knowhere/utils )
add_subdirectory( thirdparty )
add_subdirectory( knowhere )
if ( KNOWHERE_BUILD_TESTS )
if ( BUILD_COVERAGE STREQUAL "ON" )
append_flags( CMAKE_CXX_FLAGS
FLAGS
"-fprofile-arcs"
"-ftest-coverage"
)
endif ()
append_flags( CMAKE_CXX_FLAGS FLAGS "-DELPP_DISABLE_LOGS")
add_subdirectory( unittest )
endif ()