CMakeLists.txt 8.6 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Copyright (c) 2016 PaddlePaddle Authors. 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.0)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
17
include(lite_utils)
Y
Yan Chunwei 已提交
18

19
lite_option(WITH_PADDLE_MOBILE   "Use the paddle-mobile legacy build"    OFF)
Y
Yan Chunwei 已提交
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
if (WITH_PADDLE_MOBILE)
    add_subdirectory(mobile)
    return()
endif(WITH_PADDLE_MOBILE)

set(PADDLE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(PADDLE_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
set(CMAKE_CXX_STANDARD 11)

include(system)
include(cross_compiling/preproject)

project(paddle CXX C)
message(STATUS "CXX compiler: ${CMAKE_CXX_COMPILER}, version: "
        "${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}")
message(STATUS "C compiler: ${CMAKE_C_COMPILER}, version: "
        "${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}")
message(STATUS "AR tools: ${CMAKE_AR}")

if(NOT LITE_WITH_LIGHT_WEIGHT_FRAMEWORK)
    find_package(CUDA QUIET)
endif()
find_package(Git REQUIRED)
find_package(Threads REQUIRED)

include(simd)

################################ Exposed Configurations #######################################
48 49 50 51 52 53
lite_option(WITH_DSO         "Compile PaddlePaddle with dynamic linked CUDA" ON)
lite_option(WITH_AVX         "Compile PaddlePaddle with AVX intrinsics"      ON IF ${AVX_FOUND})
lite_option(WITH_TESTING     "Compile PaddlePaddle with unit testing"        OFF)
lite_option(WITH_MKL         "Compile PaddlePaddle with MKL support."        ON IF ${AVX_FOUND})
lite_option(WITH_ARM_DOTPROD "Compile PaddlePaddle with ARM dot production"  ON)
lite_option(WITH_SYSTEM_BLAS   "Use system blas library"           OFF)
Y
Yan Chunwei 已提交
54 55

# for lite, both server and mobile framework.
56
lite_option(LITE_WITH_JAVA "Enable Java JNI lib in lite mode" OFF)
S
sangoly 已提交
57
lite_option(LITE_WITH_PYTHON "Enable Python api lib in lite mode" OFF)
58 59 60 61
lite_option(LITE_WITH_CUDA "Enable CUDA in lite mode" OFF)
lite_option(LITE_WITH_X86  "Enable X86 in lite mode"  ON)
lite_option(LITE_WITH_ARM  "Enable ARM in lite mode"  OFF)
lite_option(LITE_WITH_NPU  "Enable NPU in lite mode"  OFF)
62
lite_option(LITE_WITH_XPU  "Enable XPU in lite mode"  OFF)
63
lite_option(LITE_WITH_XTCL  "Enable XPU via XTCL"  OFF IF LITE_WITH_XPU)
64
lite_option(LITE_WITH_BM   "Enable BM in lite mode"   OFF)
M
mapingshuo 已提交
65
lite_option(LITE_WITH_TRAIN "Enable training operators and kernels in lite" OFF)
66 67 68 69 70
lite_option(LITE_WITH_OPENMP "Enable OpenMP in lite framework" ON)
lite_option(LITE_WITH_OPENCL   "Enable OpenCL support in lite" OFF)
lite_option(LITE_WITH_FPGA   "Enable FPGA support in lite" OFF)
lite_option(LITE_WITH_LIGHT_WEIGHT_FRAMEWORK  "Enable light-weight framework" OFF)
lite_option(LITE_WITH_PROFILE  "Enable profile mode in lite framework"  OFF)
71
lite_option(LITE_WITH_PRECISION_PROFILE "Enable precision profile in profile mode ON in lite" OFF)
72 73
lite_option(LITE_SHUTDOWN_LOG "Shutdown log system or not." OFF)
lite_option(LITE_ON_TINY_PUBLISH "Publish tiny predictor lib." OFF)
74
lite_option(LITE_ON_MODEL_OPTIMIZE_TOOL "Build the model optimize tool" OFF)
75
# publish options
76
lite_option(LITE_BUILD_EXTRA "Enable extra algorithm support in Lite, both kernels and operators" OFF)
77
lite_option(LITE_BUILD_TAILOR "Enable tailoring library according to model" OFF)
78
# cv build options
79
lite_option(LITE_WITH_CV  "Enable build cv image in lite" OFF)
80
lite_option(LITE_WITH_STATIC_CUDA  "Statically link cuda libraries." ON)
H
HappyAngel 已提交
81
lite_option(LITE_WITH_ARM_CLANG "when arm lang is clang, its ON." OFF)
Y
Yan Chunwei 已提交
82

S
sangoly 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96
# TODO(Superjomn) Remove WITH_ANAKIN option if not needed latter.
if(ANDROID OR IOS OR ARMLINUX)
    set(WITH_GPU OFF CACHE STRING
            "Disable GPU when cross-compiling for Android and iOS" FORCE)
    set(WITH_DSO OFF CACHE STRING
            "Disable DSO when cross-compiling for Android and iOS" FORCE)
    set(WITH_AVX OFF CACHE STRING
            "Disable AVX when cross-compiling for Android and iOS" FORCE)
    set(WITH_RDMA OFF CACHE STRING
            "Disable RDMA when cross-compiling for Android and iOS" FORCE)
    set(WITH_MKL OFF CACHE STRING
            "Disable MKL when cross-compiling for Android and iOS" FORCE)
endif()

97 98 99 100 101
if(ANDROID OR IOS)
    set(LITE_WITH_PYTHON OFF CACHE STRING
            "Disable PYTHON when cross-compiling for Android and iOS" FORCE)
endif()

Y
Yan Chunwei 已提交
102 103 104 105 106 107 108 109 110
set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
        "A path setting third party libraries download & build directories.")

# 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()
111
message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
Y
Yan Chunwei 已提交
112 113 114

# check options
if (LITE_ON_TINY_PUBLISH)
115
    if (NOT (WITH_LITE AND LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND NOT WITH_TESTING))#LITE_WITH_JAVA AND
Y
Yan Chunwei 已提交
116 117 118
        message(FATAL_ERROR "LITE_ON_TINY_PUBLISH=ON must be used with WITH_LITE=ON LITE_WITH_LIGHT_WEIGHT_FRAMEWORK=ON LITE_WITH_JAVA=ON WITH_TESTING=OFF")
        return()
    endif()
L
liuruilong 已提交
119 120
endif()

Y
Yan Chunwei 已提交
121
include_directories("${PADDLE_SOURCE_DIR}")
122 123 124
# the generated header files.
set(LITE_GENERATED_INCLUDE_DIR "${CMAKE_BINARY_DIR}")
include_directories("${LITE_GENERATED_INCLUDE_DIR}")
L
liuruilong 已提交
125

S
sangoly 已提交
126 127 128 129 130 131
if (LITE_WITH_PYTHON)
    include(external/python)    # download, build, install python
    include(external/pybind11)    # download, build, install pybind11
endif()


Y
Yan Chunwei 已提交
132 133 134 135
# for mobile
if (WITH_LITE AND LITE_WITH_LIGHT_WEIGHT_FRAMEWORK)
    message(STATUS "Building the mobile framework")
    include(cross_compiling/postproject)
136 137
    include(device/npu) # check and prepare NPU DDK
    include(device/xpu) # check and prepare XPU SDK
L
liuruilong 已提交
138

139 140
    # We compile the mobile deployment library when LITE_ON_TINY_PUBLISH=ON
    # So the following third party dependencies are not needed.
Y
Yan Chunwei 已提交
141
    if (NOT LITE_ON_TINY_PUBLISH)
142 143 144 145 146 147
        # include the necessary thirdparty dependencies
        include(external/gflags)    # download, build, install gflags
        # LITE_WITH_LIGHT_WEIGHT_FRAMEWORK=ON will disable glog
        # TODO(sangoly): refine WITH_LITE and LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
        include(external/gtest)     # download, build, install gtest
        include(ccache)             # set ccache for compilation
Y
Yan Chunwei 已提交
148
        include(external/protobuf)  # download, build, install protobuf
Z
zhangyang 已提交
149 150
    endif()

Y
Yan Chunwei 已提交
151 152 153 154
    # for opencl
    if (LITE_WITH_OPENCL)
        include(external/opencl-headers)
        include(external/opencl-clhpp)
C
Chon 已提交
155
    endif()
D
dolphin8 已提交
156

Y
Yan Chunwei 已提交
157 158
    include(generic)            # simplify cmake module
    include(configure)          # add paddle env configuration
159

Y
Yan Chunwei 已提交
160 161
    add_subdirectory(lite)
    return()
162
endif()
163
#################################  End of mobile compile ##############################
164

Y
Yan Chunwei 已提交
165 166 167 168 169 170 171 172
set(WITH_MKLML ${WITH_MKL})
if (NOT DEFINED WITH_MKLDNN)
    if (WITH_MKL AND AVX2_FOUND)
        set(WITH_MKLDNN ON)
    else()
        message(STATUS "Do not have AVX2 intrinsics and disabled MKL-DNN")
        set(WITH_MKLDNN OFF)
    endif()
173
endif()
W
wangliu 已提交
174

Y
Yan Chunwei 已提交
175
########################################################################################
朔-望's avatar
朔-望 已提交
176

177
if(LITE_WITH_XPU)
178
    include(device/xpu)
179 180
endif()

Y
Yan Chunwei 已提交
181 182 183 184 185 186 187 188 189 190 191
include(external/mklml)     # download mklml package
include(external/xbyak)     # download xbyak package
include(external/libxsmm)   # download, build, install libxsmm
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/openblas)  # download, build, install openblas
include(external/mkldnn)    # download, build, install mkldnn
include(external/eigen)     # download eigen3
include(external/xxhash)    # download install xxhash needed for x86 jit
H
Haipeng Wang 已提交
192

193
include(cudnn)
Y
Yan Chunwei 已提交
194
include(configure)          # add paddle env configuration
195

196
if(LITE_WITH_CUDA)
197 198 199
  include(cuda)
endif()

200 201 202
if(LITE_WITH_BM)
  include(bm)
endif()
Y
Yan Chunwei 已提交
203 204 205 206
include(generic)            # simplify cmake module
include(ccache)             # set ccache for compilation
include(util)               # set unittest and link libs
include(version)            # set PADDLE_VERSION
207
include(flags)
H
Haipeng Wang 已提交
208

Y
Yan Chunwei 已提交
209 210
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
211

Y
Yan Chunwei 已提交
212
add_subdirectory(lite)