CMakeLists.txt 7.7 KB
Newer Older
L
liaogang 已提交
1
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
2
#
L
liaogang 已提交
3 4 5
# 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
6
#
L
liaogang 已提交
7
# http://www.apache.org/licenses/LICENSE-2.0
8
#
L
liaogang 已提交
9 10 11 12 13 14
# 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

15
cmake_minimum_required(VERSION 3.0)
16
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
17 18
set(PADDLE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(PADDLE_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
19

20 21
include(system)

L
liaogang 已提交
22
project(paddle CXX C Go)
23

Z
zhangjinchao01 已提交
24
find_package(Sphinx)
25 26 27
if(NOT CMAKE_CROSSCOMPILING)
    find_package(CUDA QUIET)
endif(NOT CMAKE_CROSSCOMPILING)
L
liaogang 已提交
28 29
find_package(Git REQUIRED)
find_package(Threads REQUIRED)
Z
zlx 已提交
30
if(NOT ANDROID AND NOT IOS)
31 32
    find_package(Boost QUIET)
endif()
L
liaogang 已提交
33 34 35

include(simd)

L
liaogang 已提交
36
################################ Configurations #######################################
L
liaogang 已提交
37 38
option(WITH_GPU         "Compile PaddlePaddle with NVIDIA GPU"          ${CUDA_FOUND})
option(WITH_AVX         "Compile PaddlePaddle with AVX intrinsics"      ${AVX_FOUND})
39
option(WITH_MKL         "Compile PaddlePaddle with MKL support."        ${AVX_FOUND})
L
liaogang 已提交
40
option(WITH_DSO         "Compile PaddlePaddle with dynamic linked CUDA" ON)
L
liaogang 已提交
41 42 43 44 45 46 47 48 49
option(WITH_TESTING     "Compile PaddlePaddle with unit testing"        ON)
option(WITH_SWIG_PY     "Compile PaddlePaddle with inference api"       ON)
option(WITH_STYLE_CHECK "Compile PaddlePaddle with style check"         ON)
option(WITH_PYTHON      "Compile PaddlePaddle with python interpreter"  ON)
option(WITH_DOUBLE      "Compile PaddlePaddle with double precision"    OFF)
option(WITH_RDMA        "Compile PaddlePaddle with RDMA support"        OFF)
option(WITH_TIMER       "Compile PaddlePaddle with stats timer"         OFF)
option(WITH_PROFILER    "Compile PaddlePaddle with GPU profiler"        OFF)
option(WITH_DOC         "Compile PaddlePaddle with documentation"       OFF)
50
option(WITH_COVERAGE    "Compile PaddlePaddle with code coverage"       OFF)
L
liaogang 已提交
51 52
option(COVERALLS_UPLOAD "Package code coverage data to coveralls"       OFF)
option(ON_TRAVIS        "Exclude special unit test on Travis CI"        OFF)
Y
Yu Yang 已提交
53
option(WITH_C_API       "Compile PaddlePaddle with C-API(Prediction)"   OFF)
Q
qiaolongfei 已提交
54
option(WITH_GOLANG      "Compile PaddlePaddle with GOLANG"              OFF)
W
wuyi05 已提交
55
option(GLIDE_INSTALL    "Download and install go dependencies "         ON)
56
option(USE_NNPACK       "Compile PaddlePaddle with NNPACK library"      OFF)
H
hedaoyuan 已提交
57
option(USE_EIGEN_FOR_BLAS   "Use matrix multiplication in Eigen"        OFF)
Y
Yu Yang 已提交
58 59 60 61 62 63 64 65

# CMAKE_BUILD_TYPE
if(NOT CMAKE_BUILD_TYPE)
    set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
      "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel"
      FORCE)
endif()

66
if(ANDROID OR IOS)
67
    if(ANDROID)
H
hedaoyuan 已提交
68
        if(${CMAKE_SYSTEM_VERSION} VERSION_LESS "16")
69 70 71 72 73
            message(FATAL_ERROR "Unsupport standalone toolchains with Android API level lower than 16")
        elseif(${CMAKE_SYSTEM_VERSION} VERSION_LESS "21")
            # TODO: support glog for Android api 16 ~ 19 in the future
            message(WARNING "Using the unofficial git repository <https://github.com/Xreki/glog.git> instead")
        endif()
74 75
    endif()

76
    set(WITH_GPU OFF CACHE STRING
77
        "Disable GPU when cross-compiling for Android and iOS" FORCE)
78
    set(WITH_AVX OFF CACHE STRING
79
        "Disable AVX when cross-compiling for Android and iOS" FORCE)
80
    set(WITH_PYTHON OFF CACHE STRING
81
        "Disable PYTHON when cross-compiling for Android and iOS" FORCE)
82
    set(WITH_RDMA OFF CACHE STRING
83
        "Disable RDMA when cross-compiling for Android and iOS" FORCE)
84 85
    set(WITH_MKL OFF CACHE STRING
        "Disable MKL when cross-compiling for Android and iOS" FORCE)
86

H
hedaoyuan 已提交
87 88 89 90
    # Compile PaddlePaddle mobile inference library
    if (NOT WITH_C_API)
        set(WITH_C_API ON CACHE STRING
            "Always compile the C_API when cross-compiling for Android and iOS" FORCE)
91
    endif()
H
hedaoyuan 已提交
92 93
    set(MOBILE_INFERENCE ON)
    add_definitions(-DPADDLE_MOBILE_INFERENCE)
94
endif()
95

Y
Yi Wang 已提交
96
set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
Y
Yu Yang 已提交
97
  "A path setting third party libraries download & build directories.")
Y
Yu Yang 已提交
98

Y
Yu Yang 已提交
99 100 101 102 103 104
if (WITH_C_API AND WITH_PYTHON)
  message(WARNING "It is suggest not embedded a python interpreter in Paddle "
    "when using C-API. It will give an unpredictable behavior when using a "
    "different Python interpreter from compiling.")
endif()

105 106 107 108 109 110
if(MOBILE_INFERENCE)
    set(THIRD_PARTY_BUILD_TYPE MinSizeRel)
else()
    set(THIRD_PARTY_BUILD_TYPE Release)
endif()

111
set(WITH_MKLML ${WITH_MKL})
L
Luo Tao 已提交
112
if (WITH_MKL AND AVX2_FOUND)
113
    set(WITH_MKLDNN ON)
114
else()
115
    message(STATUS "Do not have AVX2 intrinsics and disabled MKL-DNN")
116 117 118
    set(WITH_MKLDNN OFF)
endif()

L
liaogang 已提交
119
########################################################################################
G
gangliao 已提交
120

T
tensor-tang 已提交
121
include(external/mklml)     # download mklml package
L
liaogang 已提交
122 123 124 125 126 127
include(external/zlib)      # download, build, install zlib
include(external/gflags)    # download, build, install gflags
include(external/glog)      # download, build, install glog
include(external/gtest)     # download, build, install gtest
include(external/protobuf)  # download, build, install protobuf
include(external/python)    # download, build, install python
L
liaogang 已提交
128
include(external/openblas)  # download, build, install openblas
T
tensor-tang 已提交
129
include(external/mkldnn)    # download, build, install mkldnn
L
liaogang 已提交
130 131
include(external/swig)      # download, build, install swig
include(external/warpctc)   # download, build, install warpctc
132
include(external/any)       # download libn::any
Q
qijun 已提交
133
include(external/eigen)     # download eigen3
134
include(external/pybind11)  # download pybind11
Y
Yu Yang 已提交
135
include(external/nccl)
L
liaogang 已提交
136

W
wuyi05 已提交
137
include(cudnn)              # set cudnn libraries, must before configure
138
include(configure)          # add paddle env configuration
L
liaogang 已提交
139
include(generic)            # simplify cmake module
L
liaogang 已提交
140 141 142 143 144 145 146 147
include(package)            # set paddle packages
include(cpplint)            # set paddle c++ style
include(ccache)             # set ccache for compilation
include(util)               # set unittest and link libs
include(rdma)               # set rdma libraries
include(flags)              # set paddle compile flags
include(version)            # set PADDLE_VERSION
include(coveralls)          # set code coverage
148

Z
zhangjinchao01 已提交
149

150 151
include_directories("${PADDLE_SOURCE_DIR}")
include_directories("${PADDLE_SOURCE_DIR}/paddle/cuda/include")
Z
zhangjinchao01 已提交
152
include_directories("${CMAKE_CURRENT_BINARY_DIR}/proto")
Q
Qiao Longfei 已提交
153
include_directories("${CMAKE_CURRENT_BINARY_DIR}/go/pserver/client/c")
L
liaogang 已提交
154
include_directories(${Boost_INCLUDE_DIRS})
L
liaogang 已提交
155 156 157 158 159

set(EXTERNAL_LIBS
    ${GFLAGS_LIBRARIES}
    ${GLOG_LIBRARIES}
    ${CBLAS_LIBRARIES}
L
liaogang 已提交
160
    ${PROTOBUF_LIBRARY}
L
liaogang 已提交
161
    ${ZLIB_LIBRARIES}
L
liaogang 已提交
162
    ${PYTHON_LIBRARIES}
L
liaogang 已提交
163 164
)

L
liaogang 已提交
165
if(WITH_GPU)
166
  include(cuda)
L
liaogang 已提交
167 168
endif(WITH_GPU)

169 170 171 172
if(WITH_MKLML)
    list(APPEND EXTERNAL_LIBS ${MKLML_IOMP_LIB})
endif()

173
if(WITH_MKLDNN)
174
    list(APPEND EXTERNAL_LIBS ${MKLDNN_LIB})
175 176
endif()

177
if(USE_NNPACK)
H
hedaoyuan 已提交
178 179
    include(external/nnpack)
    list(APPEND EXTERNAL_LIBS ${NNPACK_LIBS})
180 181
endif(USE_NNPACK)

Z
zhangjinchao01 已提交
182
add_subdirectory(proto)
183

H
hedaoyuan 已提交
184 185 186 187 188
if(NOT MOBILE_INFERENCE)
    # "add_subdirectory(go)" should be placed after the following loine,
    # because it depends on paddle/optimizer.
    add_subdirectory(paddle/optimizer)
endif()
189

H
Helin Wang 已提交
190 191
# "add_subdirectory(paddle)" and "add_subdirectory(python)" should be
# placed after this block, because they depends on it.
Q
qiaolongfei 已提交
192
if(WITH_GOLANG)
W
wuyi05 已提交
193
    add_subdirectory(go)
Q
qiaolongfei 已提交
194
endif(WITH_GOLANG)
L
liaogang 已提交
195

Q
qiaolongfei 已提交
196
set(PADDLE_PYTHON_BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}/python/build")
H
Helin Wang 已提交
197
add_subdirectory(paddle)
198 199 200
if(WITH_PYTHON)
  add_subdirectory(python)
endif()
Q
qiaolongfei 已提交
201

Z
zhangjinchao01 已提交
202 203 204
if(WITH_DOC)
    add_subdirectory(doc)
endif()