CMakeLists.txt 8.9 KB
Newer Older
J
jinhai 已提交
1
#-------------------------------------------------------------------------------
J
jinhai 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you 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.
J
jinhai 已提交
18 19
#-------------------------------------------------------------------------------

J
jinhai 已提交
20

Z
zhiru 已提交
21 22
cmake_minimum_required(VERSION 3.14)
message(STATUS "Building using CMake version: ${CMAKE_VERSION}")
J
jinhai 已提交
23

24 25
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

26 27 28 29 30 31 32 33 34 35 36 37 38
MACRO (GET_CURRENT_TIME CURRENT_TIME)
    execute_process(COMMAND "date" +"%Y-%m-%d %H:%M.%S" OUTPUT_VARIABLE ${CURRENT_TIME})
ENDMACRO (GET_CURRENT_TIME)

GET_CURRENT_TIME(BUILD_TIME)
string(REGEX REPLACE "\n" "" BUILD_TIME ${BUILD_TIME})
message(STATUS "Build time = ${BUILD_TIME}")

MACRO (GET_GIT_BRANCH_NAME GIT_BRANCH_NAME)
    execute_process(COMMAND "git" symbolic-ref --short HEAD OUTPUT_VARIABLE ${GIT_BRANCH_NAME})
ENDMACRO (GET_GIT_BRANCH_NAME)

GET_GIT_BRANCH_NAME(GIT_BRANCH_NAME)
G
groot 已提交
39 40 41
if(NOT GIT_BRANCH_NAME STREQUAL "")
    string(REGEX REPLACE "\n" "" GIT_BRANCH_NAME ${GIT_BRANCH_NAME})
endif()
42

G
groot 已提交
43 44
set(MILVUS_VERSION "${GIT_BRANCH_NAME}")
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]" MILVUS_VERSION "${MILVUS_VERSION}")
45

46 47 48
find_package(ClangTools)
set(BUILD_SUPPORT_DIR "${CMAKE_SOURCE_DIR}/build-support")

49
if(CMAKE_BUILD_TYPE STREQUAL "Release")
Z
zhiru 已提交
50
    set(BUILD_TYPE "Release")
51
else()
Z
zhiru 已提交
52
    set(BUILD_TYPE "Debug")
53 54 55
endif()
message(STATUS "Build type = ${BUILD_TYPE}")

G
groot 已提交
56 57
project(milvus VERSION "${MILVUS_VERSION}")
project(milvus_engine LANGUAGES CUDA CXX)
X
xj.lin 已提交
58

G
groot 已提交
59 60 61
unset(CMAKE_EXPORT_COMPILE_COMMANDS CACHE)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

G
groot 已提交
62 63 64
set(MILVUS_VERSION_MAJOR "${milvus_VERSION_MAJOR}")
set(MILVUS_VERSION_MINOR "${milvus_VERSION_MINOR}")
set(MILVUS_VERSION_PATCH "${milvus_VERSION_PATCH}")
Z
zhiru 已提交
65

G
groot 已提交
66 67 68
if(MILVUS_VERSION_MAJOR STREQUAL ""
        OR MILVUS_VERSION_MINOR STREQUAL ""
        OR MILVUS_VERSION_PATCH STREQUAL "")
G
groot 已提交
69
    message(WARNING "Failed to determine Milvus version from git branch name")
70
    set(MILVUS_VERSION "0.5.0")
Z
zhiru 已提交
71 72
endif()

G
groot 已提交
73
message(STATUS "Build version = ${MILVUS_VERSION}")
G
groot 已提交
74 75
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.h.macro ${CMAKE_CURRENT_SOURCE_DIR}/version.h)

G
groot 已提交
76 77 78
message(STATUS "Milvus version: "
        "${MILVUS_VERSION_MAJOR}.${MILVUS_VERSION_MINOR}.${MILVUS_VERSION_PATCH} "
        "(full: '${MILVUS_VERSION}')")
Z
zhiru 已提交
79

J
jinhai 已提交
80
set(CMAKE_CXX_STANDARD 14)
Z
zhiru 已提交
81
set(CMAKE_CXX_STANDARD_REQUIRED on)
J
jinhai 已提交
82 83

if(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86)|(X86)|(amd64)|(AMD64)")
Z
zhiru 已提交
84
    message(STATUS "Building milvus_engine on x86 architecture")
G
groot 已提交
85
    set(MILVUS_BUILD_ARCH x86_64)
J
jinhai 已提交
86
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "(ppc)")
Z
zhiru 已提交
87
    message(STATUS "Building milvus_engine on ppc architecture")
G
groot 已提交
88
    set(MILVUS_BUILD_ARCH ppc64le)
J
jinhai 已提交
89
else()
Z
zhiru 已提交
90
    message(WARNING "Unknown processor type")
Z
zhiru 已提交
91
    message(WARNING "CMAKE_SYSTEM_PROCESSOR=${CMAKE_SYSTEM_PROCESSOR}")
G
groot 已提交
92
    set(MILVUS_BUILD_ARCH unknown)
J
jinhai 已提交
93 94
endif()

95 96
find_package (Python COMPONENTS Interpreter Development)

Z
update  
zhiru 已提交
97 98 99
find_package(CUDA)
set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -Xcompiler -fPIC -std=c++11 -D_FORCE_INLINES --expt-extended-lambda")

J
jinhai 已提交
100
if(CMAKE_BUILD_TYPE STREQUAL "Release")
Z
zhiru 已提交
101
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -fPIC -DELPP_THREAD_SAFE -fopenmp")
Z
zhiru 已提交
102
    set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -O3")
J
jinhai 已提交
103
else()
Z
zhiru 已提交
104
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 -g -fPIC -DELPP_THREAD_SAFE -fopenmp")
Z
zhiru 已提交
105
    set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -O0 -g")
J
jinhai 已提交
106 107
endif()

Z
zhiru 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
# Ensure that a default make is set
if("${MAKE}" STREQUAL "")
    if(NOT MSVC)
        find_program(MAKE make)
    endif()
endif()

find_path(MYSQL_INCLUDE_DIR
            NAMES "mysql.h"
            PATH_SUFFIXES "mysql")
if (${MYSQL_INCLUDE_DIR} STREQUAL "MYSQL_INCLUDE_DIR-NOTFOUND")
    message(FATAL_ERROR "Could not found MySQL include directory")
else()
    include_directories(${MYSQL_INCLUDE_DIR})
endif()

set(MILVUS_SOURCE_DIR ${PROJECT_SOURCE_DIR})
set(MILVUS_BINARY_DIR ${PROJECT_BINARY_DIR})
set(MILVUS_ENGINE_SRC ${PROJECT_SOURCE_DIR}/src)

X
xiaojun.lin 已提交
128 129 130 131
if (CUSTOMIZATION)
    add_definitions(-DCUSTOMIZATION)
endif (CUSTOMIZATION)

Z
zhiru 已提交
132 133 134 135 136
include(ExternalProject)
include(DefineOptions)
include(BuildUtils)
include(ThirdPartyPackages)

Z
zhiru 已提交
137
config_summary()
J
jinhai 已提交
138

Z
zhiru 已提交
139
add_subdirectory(src)
J
jinhai 已提交
140

G
groot 已提交
141
if (BUILD_UNIT_TEST STREQUAL "ON")
Z
zhiru 已提交
142 143 144
    if (BUILD_COVERAGE STREQUAL "ON")
        set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
    endif()
J
jinhai 已提交
145
    add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/unittest)
G
groot 已提交
146
endif()
Y
yu yunfeng 已提交
147

G
groot 已提交
148
add_custom_target(Clean-All COMMAND ${CMAKE_BUILD_TOOL} clean)
149

G
groot 已提交
150 151
if("${MILVUS_DB_PATH}" STREQUAL "")
    set(MILVUS_DB_PATH "/tmp/milvus")
G
groot 已提交
152
endif()
G
groot 已提交
153 154 155
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/conf/server_config.template ${CMAKE_CURRENT_SOURCE_DIR}/conf/server_config.yaml)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/conf/log_config.template ${CMAKE_CURRENT_SOURCE_DIR}/conf/log_config.conf)

156
install(DIRECTORY scripts/
157
        DESTINATION scripts
158
        FILE_PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
159 160 161
        GROUP_EXECUTE GROUP_READ
        WORLD_EXECUTE WORLD_READ
        FILES_MATCHING PATTERN "*.sh")
162 163
install(FILES
        conf/server_config.yaml
G
groot 已提交
164
        conf/log_config.conf
165 166
        DESTINATION
        conf)
167

168 169 170 171 172 173 174 175 176 177 178 179 180 181

#
# "make lint" target
#
if(NOT MILVUS_VERBOSE_LINT)
  set(MILVUS_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()

182 183 184
find_program(CPPLINT_BIN NAMES cpplint cpplint.py HINTS ${BUILD_SUPPORT_DIR})
message(STATUS "Found cpplint executable at ${CPPLINT_BIN}")

185 186 187
#
# "make lint" targets
#
188 189 190 191 192 193 194 195
add_custom_target(lint
                  ${PYTHON_EXECUTABLE}
                  ${BUILD_SUPPORT_DIR}/run_cpplint.py
                  --cpplint_binary
                  ${CPPLINT_BIN}
                  --exclude_globs
                  ${LINT_EXCLUSIONS_FILE}
                  --source_dir
G
groot 已提交
196
                  ${CMAKE_CURRENT_SOURCE_DIR}
197 198
                  ${MILVUS_LINT_QUIET})

199
#
200
# "make clang-format" and "make check-clang-format" targets
201 202 203
#
if(${CLANG_FORMAT_FOUND})
  # runs clang format and updates files in place.
204
  add_custom_target(clang-format
205 206 207 208 209 210 211 212 213 214 215 216
                    ${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
                    ${MILVUS_LINT_QUIET})

  # runs clang format and exits with a non-zero exit code if any files need to be reformatted
217
  add_custom_target(check-clang-format
218 219 220 221 222 223 224 225 226 227
                    ${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
                    ${MILVUS_LINT_QUIET})
endif()
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
#
# "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
                    ${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
                    ${MILVUS_LINT_QUIET})

  # runs clang-tidy and exits with a non-zero exit code if any errors are found.
  add_custom_target(check-clang-tidy
                    ${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
                    ${MILVUS_LINT_QUIET})
endif()