third_party.cmake 14.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2018 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.

15
include(ExternalProject)
16
# Creat a target named "third_party", which can compile external dependencies on all platform(windows/linux/mac)
17

18 19 20 21
set(THIRD_PARTY_PATH  "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
    "A path setting third party libraries download & build directories.")
set(THIRD_PARTY_CACHE_PATH     "${CMAKE_SOURCE_DIR}"    CACHE STRING
    "A path cache third party source code to avoid repeated download.")
22 23

set(THIRD_PARTY_BUILD_TYPE Release)
24
set(third_party_deps)
25

26
# cache funciton to avoid repeat download code of third_party.
27 28 29 30 31
# This function has 4 parameters, URL / REPOSITOR / TAG / DIR:
# 1. URL:           specify download url of 3rd party
# 2. REPOSITORY:    specify git REPOSITORY of 3rd party
# 3. TAG:           specify git tag/branch/commitID of 3rd party
# 4. DIR:           overwrite the original SOURCE_DIR when cache directory
32
#
33
# The function Return 1 PARENT_SCOPE variables:
34
#  - ${TARGET}_DOWNLOAD_CMD: Simply place "${TARGET}_DOWNLOAD_CMD" in ExternalProject_Add,
35 36
#                            and you no longer need to set any donwnload steps in ExternalProject_Add.
# For example:
37
#    Cache_third_party(${TARGET}
38
#            REPOSITORY ${TARGET_REPOSITORY}
39 40
#            TAG        ${TARGET_TAG}
#            DIR        ${TARGET_SOURCE_DIR})
41

42 43 44 45 46 47 48 49 50 51 52 53 54
FUNCTION(cache_third_party TARGET)
    SET(options "")
    SET(oneValueArgs URL REPOSITORY TAG DIR)
    SET(multiValueArgs "")
    cmake_parse_arguments(cache_third_party "${optionps}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})

    STRING(REPLACE "extern_" "" TARGET_NAME ${TARGET})
    STRING(REGEX REPLACE "[0-9]+" "" TARGET_NAME ${TARGET_NAME})
    STRING(TOUPPER ${TARGET_NAME} TARGET_NAME)
    IF(cache_third_party_REPOSITORY)
        SET(${TARGET_NAME}_DOWNLOAD_CMD
                GIT_REPOSITORY  ${cache_third_party_REPOSITORY})
        IF(cache_third_party_TAG)
55
            LIST(APPEND   ${TARGET_NAME}_DOWNLOAD_CMD
56 57 58 59 60 61
                    GIT_TAG     ${cache_third_party_TAG})
        ENDIF()
    ELSEIF(cache_third_party_URL)
        SET(${TARGET_NAME}_DOWNLOAD_CMD
                URL             ${cache_third_party_URL})
    ELSE()
62
        MESSAGE(FATAL_ERROR    "Download link (Git repo or URL) must be specified for cache!")
63
    ENDIF()
64
    IF(WITH_TP_CACHE)
65 66 67
        IF(NOT cache_third_party_DIR)
            MESSAGE(FATAL_ERROR   "Please input the ${TARGET_NAME}_SOURCE_DIR for overwriting when -DWITH_TP_CACHE=ON")
        ENDIF()
68 69 70 71 72 73 74 75
        # Generate and verify cache dir for third_party source code
        SET(cache_third_party_REPOSITORY ${cache_third_party_REPOSITORY} ${cache_third_party_URL})
        IF(cache_third_party_REPOSITORY AND cache_third_party_TAG)
            STRING(MD5 HASH_REPO ${cache_third_party_REPOSITORY})
            STRING(MD5 HASH_GIT ${cache_third_party_TAG})
            STRING(SUBSTRING ${HASH_REPO} 0 8 HASH_REPO)
            STRING(SUBSTRING ${HASH_GIT} 0 8 HASH_GIT)
            STRING(CONCAT HASH ${HASH_REPO} ${HASH_GIT})
76 77
            # overwrite the original SOURCE_DIR when cache directory
            SET(${cache_third_party_DIR} ${THIRD_PARTY_CACHE_PATH}/third_party/${TARGET}_${HASH})
78 79 80
        ELSEIF(cache_third_party_REPOSITORY)
            STRING(MD5 HASH_REPO ${cache_third_party_REPOSITORY})
            STRING(SUBSTRING ${HASH_REPO} 0 16 HASH)
81 82
            # overwrite the original SOURCE_DIR when cache directory
            SET(${cache_third_party_DIR} ${THIRD_PARTY_CACHE_PATH}/third_party/${TARGET}_${HASH})
83 84
        ENDIF()

85
        IF(EXISTS ${${cache_third_party_DIR}})
86
            # judge whether the cache dir is empty
87
            FILE(GLOB files ${${cache_third_party_DIR}}/*)
88 89 90 91 92
            LIST(LENGTH files files_len)
            IF(files_len GREATER 0)
                list(APPEND ${TARGET_NAME}_DOWNLOAD_CMD DOWNLOAD_COMMAND "")
            ENDIF()
        ENDIF()
93
        SET(${cache_third_party_DIR} ${${cache_third_party_DIR}} PARENT_SCOPE)
94 95
    ENDIF()

96
    # Pass ${TARGET_NAME}_DOWNLOAD_CMD to parent scope, the double quotation marks can't be removed
97 98 99 100 101 102 103 104
    SET(${TARGET_NAME}_DOWNLOAD_CMD "${${TARGET_NAME}_DOWNLOAD_CMD}" PARENT_SCOPE)
ENDFUNCTION()

MACRO(UNSET_VAR VAR_NAME)
    UNSET(${VAR_NAME} CACHE)
    UNSET(${VAR_NAME})
ENDMACRO()

105 106 107 108 109
# Funciton to Download the dependencies during compilation
# This function has 2 parameters, URL / DIRNAME:
# 1. URL:           The download url of 3rd dependencies
# 2. NAME:          The name of file, that determin the dirname
#
110
FUNCTION(file_download_and_uncompress URL NAME)
111 112 113 114 115
  set(options "")
  set(oneValueArgs MD5)
  set(multiValueArgs "")
  cmake_parse_arguments(URL "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  MESSAGE(STATUS "Download dependence[${NAME}] from ${URL}, MD5: ${URL_MD5}")
116
  SET(${NAME}_INCLUDE_DIR ${THIRD_PARTY_PATH}/${NAME}/data PARENT_SCOPE)
117
  ExternalProject_Add(
118
      download_${NAME}
119 120 121
      ${EXTERNAL_PROJECT_LOG_ARGS}
      PREFIX                ${THIRD_PARTY_PATH}/${NAME}
      URL                   ${URL}
122
      URL_MD5               ${URL_MD5}
123
      TIMEOUT               120
124 125 126 127 128 129 130 131
      DOWNLOAD_DIR          ${THIRD_PARTY_PATH}/${NAME}/data/
      SOURCE_DIR            ${THIRD_PARTY_PATH}/${NAME}/data/
      DOWNLOAD_NO_PROGRESS  1
      CONFIGURE_COMMAND     ""
      BUILD_COMMAND         ""
      UPDATE_COMMAND        ""
      INSTALL_COMMAND       ""
    )
132
  set(third_party_deps ${third_party_deps} download_${NAME} PARENT_SCOPE)
133
ENDFUNCTION()
134 135


136 137 138
# Correction of flags on different Platform(WIN/MAC) and Print Warning Message
if (APPLE)
    if(WITH_MKL)
139
        MESSAGE(WARNING
140 141 142 143 144 145
            "Mac is not supported with MKL in Paddle yet. Force WITH_MKL=OFF.")
        set(WITH_MKL OFF CACHE STRING "Disable MKL for building on mac" FORCE)
    endif()
endif()

if(WIN32 OR APPLE)
146 147 148
    MESSAGE(STATUS "Disable XBYAK in Windows and MacOS")
    SET(WITH_XBYAK OFF CACHE STRING "Disable XBYAK in Windows and MacOS" FORCE)

149
    if(WITH_LIBXSMM)
150
        MESSAGE(WARNING
151 152 153 154 155 156 157 158 159 160 161
            "Windows, Mac are not supported with libxsmm in Paddle yet."
            "Force WITH_LIBXSMM=OFF")
        SET(WITH_LIBXSMM OFF CACHE STRING "Disable LIBXSMM in Windows and MacOS" FORCE)
    endif()

    if(WITH_BOX_PS)
        MESSAGE(WARNING
            "Windows or Mac is not supported with BOX_PS in Paddle yet."
            "Force WITH_BOX_PS=OFF")
        SET(WITH_BOX_PS OFF CACHE STRING "Disable BOX_PS package in Windows and MacOS" FORCE)
    endif()
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

    if(WITH_PSLIB)
        MESSAGE(WARNING
            "Windows or Mac is not supported with PSLIB in Paddle yet."
            "Force WITH_PSLIB=OFF")
        SET(WITH_PSLIB OFF CACHE STRING "Disable PSLIB package in Windows and MacOS" FORCE)
    endif()

    if(WITH_LIBMCT)
        MESSAGE(WARNING
            "Windows or Mac is not supported with LIBMCT in Paddle yet."
            "Force WITH_LIBMCT=OFF")
        SET(WITH_LIBMCT OFF CACHE STRING "Disable LIBMCT package in Windows and MacOS" FORCE)
    endif()

    if(WITH_PSLIB_BRPC)
        MESSAGE(WARNING
            "Windows or Mac is not supported with PSLIB_BRPC in Paddle yet."
            "Force WITH_PSLIB_BRPC=OFF")
        SET(WITH_PSLIB_BRPC OFF CACHE STRING "Disable PSLIB_BRPC package in Windows and MacOS" FORCE)
    endif()
183 184
endif()

185
set(WITH_MKLML ${WITH_MKL})
186 187
if(NOT DEFINED WITH_MKLDNN)
    if(WITH_MKL AND AVX2_FOUND)
188 189 190 191 192 193 194
        set(WITH_MKLDNN ON)
    else()
        message(STATUS "Do not have AVX2 intrinsics and disabled MKL-DNN")
        set(WITH_MKLDNN OFF)
    endif()
endif()

195 196 197 198
if(WIN32 OR APPLE OR NOT WITH_GPU OR ON_INFER)
    set(WITH_DGC OFF)
endif()

199 200 201 202
if(${CMAKE_VERSION} VERSION_GREATER "3.5.2")
    set(SHALLOW_CLONE "GIT_SHALLOW TRUE") # adds --depth=1 arg to git clone of External_Projects
endif()

T
tianshuo78520a 已提交
203
########################### include third_party according to flags ###############################
204 205 206 207 208 209 210 211 212
include(external/zlib)      # download, build, install zlib
include(external/gflags)    # download, build, install gflags
include(external/glog)      # download, build, install glog
include(external/boost)     # download boost
include(external/eigen)     # download eigen3
include(external/threadpool)# download threadpool
include(external/dlpack)    # download dlpack
include(external/xxhash)    # download, build, install xxhash
include(external/warpctc)   # download, build, install warpctc
S
Steffy-zxf 已提交
213 214 215 216
include(external/utf8proc)   # download, build, install utf8proc

list(APPEND third_party_deps extern_eigen3 extern_gflags extern_glog extern_boost extern_xxhash)
list(APPEND third_party_deps extern_zlib extern_dlpack extern_warpctc extern_threadpool extern_utf8proc)
217
include(external/lapack)    # download, build, install lapack
218

219
list(APPEND third_party_deps extern_eigen3 extern_gflags extern_glog extern_boost extern_xxhash)
220
list(APPEND third_party_deps extern_zlib extern_dlpack extern_warpctc extern_threadpool extern_lapack)
221

222
include(cblas)              	# find first, then download, build, install openblas
223 224

message(STATUS "CBLAS_PROVIDER: ${CBLAS_PROVIDER}")
225
if(${CBLAS_PROVIDER} STREQUAL MKLML)
226
    list(APPEND third_party_deps extern_mklml)
227
elseif(${CBLAS_PROVIDER} STREQUAL EXTERN_OPENBLAS)
228 229 230
    list(APPEND third_party_deps extern_openblas)
endif()

231

232 233
if(WITH_MKLDNN)
    include(external/mkldnn)    # download, build, install mkldnn
234
    list(APPEND third_party_deps extern_mkldnn)
235 236
endif()

237
include(external/protobuf)  	# find first, then download, build, install protobuf
238
if(TARGET extern_protobuf)
239 240 241 242 243 244
    list(APPEND third_party_deps extern_protobuf)
endif()

if(WITH_PYTHON)
    include(external/python)    # find python and python_module
    include(external/pybind11)  # download pybind11
245
    list(APPEND third_party_deps extern_pybind)
246 247
endif()

T
tangwei12 已提交
248
IF(WITH_TESTING OR WITH_DISTRIBUTE)
249 250 251 252 253
    include(external/gtest)     # download, build, install gtest
    list(APPEND third_party_deps extern_gtest)
ENDIF()

if(WITH_GPU)
254 255 256 257
    if (${CMAKE_CUDA_COMPILER_VERSION} LESS 11.0)
        include(external/cub)       # download cub
        list(APPEND third_party_deps extern_cub)
    endif()
258 259
    set(URL  "https://paddlepaddledeps.bj.bcebos.com/externalErrorMsg_20210928.tar.gz" CACHE STRING "" FORCE)
    file_download_and_uncompress(${URL} "externalError" MD5 a712a49384e77ca216ad866712f7cafa)   # download file externalErrorMsg.tar.gz
260
    if(WITH_TESTING)
261
        # copy externalErrorMsg.pb, just for unittest can get error message correctly.
262 263
        set(SRC_DIR ${THIRD_PARTY_PATH}/externalError/data)
        if(WIN32 AND (NOT "${CMAKE_GENERATOR}" STREQUAL "Ninja"))
264
            set(DST_DIR1 ${CMAKE_BINARY_DIR}/paddle/fluid/third_party/externalError/data)
265
        else()
266
            set(DST_DIR1 ${CMAKE_BINARY_DIR}/paddle/third_party/externalError/data)
267
        endif()
268
        set(DST_DIR2 ${CMAKE_BINARY_DIR}/python/paddle/include/third_party/externalError/data)
269
        add_custom_command(TARGET download_externalError POST_BUILD
270 271
            COMMAND ${CMAKE_COMMAND} -E copy_directory ${SRC_DIR} ${DST_DIR1}
            COMMAND ${CMAKE_COMMAND} -E copy_directory ${SRC_DIR} ${DST_DIR2}
272 273
            COMMENT "copy_directory from ${SRC_DIR} to ${DST_DIR}")
    endif()
274 275
endif(WITH_GPU)

276 277 278 279 280
if(WITH_XPU)
    include(external/xpu)          # download, build, install xpu
    list(APPEND third_party_deps extern_xpu)
endif(WITH_XPU)

281
if(WITH_PSLIB)
282 283 284 285 286 287 288 289 290
    include(external/pslib)          # download, build, install pslib
    list(APPEND third_party_deps extern_pslib)
    if(WITH_LIBMCT)
        include(external/libmct)     # download, build, install libmct
        list(APPEND third_party_deps extern_libxsmm)
    endif()
    if(WITH_PSLIB_BRPC)
        include(external/pslib_brpc) # download, build, install pslib_brpc
        list(APPEND third_party_deps extern_pslib_brpc)
T
Thunderbrook 已提交
291 292 293 294 295 296 297 298
    else()    
        include(external/snappy)
        list(APPEND third_party_deps extern_snappy)

        include(external/leveldb)
        list(APPEND third_party_deps extern_leveldb)
        include(external/brpc)
        list(APPEND third_party_deps extern_brpc)
299
    endif()
300 301
endif(WITH_PSLIB)

T
Thunderbrook 已提交
302 303 304 305
if(NOT WIN32 AND NOT APPLE)
    include(external/gloo)
    list(APPEND third_party_deps extern_gloo)
endif()
306

307 308
if(WITH_BOX_PS)
    include(external/box_ps)
309
    list(APPEND third_party_deps extern_box_ps)
310 311
endif(WITH_BOX_PS)

312
if(WITH_ASCEND OR WITH_ASCEND_CL)
313
    include(external/ascend)
314
    if(WITH_ASCEND OR WITH_ASCEND_CL)
315 316 317 318 319 320
        list(APPEND third_party_deps extern_ascend)
    endif()
    if(WITH_ASCEND_CL)
        list(APPEND third_party_deps extern_ascend_cl)
    endif()
endif ()
321

T
tangwei12 已提交
322
if (WITH_PSCORE)
T
tangwei12 已提交
323 324
    include(external/snappy)
    list(APPEND third_party_deps extern_snappy)
325

T
tangwei12 已提交
326 327
    include(external/leveldb)
    list(APPEND third_party_deps extern_leveldb)
328

T
tangwei12 已提交
329 330 331 332 333
    include(external/brpc)
    list(APPEND third_party_deps extern_brpc)

    include(external/libmct)     # download, build, install libmct
    list(APPEND third_party_deps extern_libmct)
334

T
Thunderbrook 已提交
335 336 337 338
    if (WITH_HETERPS)
        include(external/rocksdb)     # download, build, install libmct
        list(APPEND third_party_deps extern_rocksdb)
    endif()
339 340 341
endif()

if(WITH_XBYAK)
342
    include(external/xbyak)         # download, build, install xbyak
343
    list(APPEND third_party_deps extern_xbyak)
344 345 346
endif()

if(WITH_LIBXSMM)
347
    include(external/libxsmm)       # download, build, install libxsmm
348
    list(APPEND third_party_deps extern_libxsmm)
349 350 351 352
endif()

if(WITH_DGC)
    message(STATUS "add dgc lib.")
353
    include(external/dgc)           # download, build, install dgc
354
    add_definitions(-DPADDLE_WITH_DGC)
355
    list(APPEND third_party_deps extern_dgc)
356 357
endif()

石晓伟 已提交
358
if (WITH_LITE)
W
Wilber 已提交
359
    message(STATUS "Compile Paddle with Lite Engine.")
石晓伟 已提交
360 361 362
    include(external/lite)
endif (WITH_LITE)

363 364 365
if (WITH_CINN)
    message(STATUS "Compile Paddle with CINN.")
    include(external/cinn)
366
    add_definitions(-DPADDLE_WITH_CINN)
367 368
endif (WITH_CINN)

Y
Yanghello 已提交
369 370
if (WITH_CRYPTO)
    include(external/cryptopp)   # download, build, install cryptopp
371
    list(APPEND third_party_deps extern_cryptopp)
372
    add_definitions(-DPADDLE_WITH_CRYPTO)
Y
Yanghello 已提交
373 374
endif (WITH_CRYPTO)

375 376 377 378 379 380
if (WITH_POCKETFFT)
    include(external/pocketfft)
    list(APPEND third_party_deps extern_pocketfft)
    add_definitions(-DPADDLE_WITH_POCKETFFT)
endif (WITH_POCKETFFT)

381
add_custom_target(third_party ALL DEPENDS ${third_party_deps})