|
|
@ -26,6 +26,11 @@ message(STATUS "C compiler: ${CMAKE_C_COMPILER}, version: "
|
|
|
|
"${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}")
|
|
|
|
"${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}")
|
|
|
|
if(WIN32)
|
|
|
|
if(WIN32)
|
|
|
|
set(CMAKE_STATIC_LIBRARY_PREFIX lib)
|
|
|
|
set(CMAKE_STATIC_LIBRARY_PREFIX lib)
|
|
|
|
|
|
|
|
add_definitions("/DGOOGLE_GLOG_DLL_DECL=")
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /bigobj /MTd")
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /bigobj /MT")
|
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /bigobj /MTd")
|
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /bigobj /MT")
|
|
|
|
endif(WIN32)
|
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
|
|
|
|
if(NOT CMAKE_CROSSCOMPILING)
|
|
|
|
if(NOT CMAKE_CROSSCOMPILING)
|
|
|
@ -41,6 +46,7 @@ option(WITH_GPU "Compile PaddlePaddle with NVIDIA GPU" ${CUDA_F
|
|
|
|
option(WITH_AMD_GPU "Compile PaddlePaddle with AMD GPU" OFF)
|
|
|
|
option(WITH_AMD_GPU "Compile PaddlePaddle with AMD GPU" OFF)
|
|
|
|
option(WITH_AVX "Compile PaddlePaddle with AVX intrinsics" ${AVX_FOUND})
|
|
|
|
option(WITH_AVX "Compile PaddlePaddle with AVX intrinsics" ${AVX_FOUND})
|
|
|
|
option(WITH_MKL "Compile PaddlePaddle with MKL support." ${AVX_FOUND})
|
|
|
|
option(WITH_MKL "Compile PaddlePaddle with MKL support." ${AVX_FOUND})
|
|
|
|
|
|
|
|
option(WITH_NGRAPH "Compile PaddlePaddle with nGraph support." OFF)
|
|
|
|
option(WITH_DSO "Compile PaddlePaddle with dynamic linked CUDA" ON)
|
|
|
|
option(WITH_DSO "Compile PaddlePaddle with dynamic linked CUDA" ON)
|
|
|
|
option(WITH_TESTING "Compile PaddlePaddle with unit testing" OFF)
|
|
|
|
option(WITH_TESTING "Compile PaddlePaddle with unit testing" OFF)
|
|
|
|
option(WITH_SWIG_PY "Compile PaddlePaddle with inference api" ON)
|
|
|
|
option(WITH_SWIG_PY "Compile PaddlePaddle with inference api" ON)
|
|
|
@ -48,7 +54,7 @@ option(WITH_PYTHON "Compile PaddlePaddle with python interpreter" ON)
|
|
|
|
option(WITH_DOUBLE "Compile PaddlePaddle with double precision" OFF)
|
|
|
|
option(WITH_DOUBLE "Compile PaddlePaddle with double precision" OFF)
|
|
|
|
option(WITH_RDMA "Compile PaddlePaddle with RDMA support" OFF)
|
|
|
|
option(WITH_RDMA "Compile PaddlePaddle with RDMA support" OFF)
|
|
|
|
option(WITH_TIMER "Compile PaddlePaddle with stats timer" OFF)
|
|
|
|
option(WITH_TIMER "Compile PaddlePaddle with stats timer" OFF)
|
|
|
|
option(WITH_PROFILER "Compile PaddlePaddle with GPU profiler" OFF)
|
|
|
|
option(WITH_PROFILER "Compile PaddlePaddle with GPU profiler and gperftools" OFF)
|
|
|
|
option(WITH_DOC "Compile PaddlePaddle with documentation" OFF)
|
|
|
|
option(WITH_DOC "Compile PaddlePaddle with documentation" OFF)
|
|
|
|
option(WITH_COVERAGE "Compile PaddlePaddle with code coverage" OFF)
|
|
|
|
option(WITH_COVERAGE "Compile PaddlePaddle with code coverage" OFF)
|
|
|
|
option(COVERALLS_UPLOAD "Package code coverage data to coveralls" OFF)
|
|
|
|
option(COVERALLS_UPLOAD "Package code coverage data to coveralls" OFF)
|
|
|
@ -59,12 +65,15 @@ option(WITH_GOLANG "Compile PaddlePaddle with GOLANG" OFF)
|
|
|
|
option(GLIDE_INSTALL "Download and install go dependencies " ON)
|
|
|
|
option(GLIDE_INSTALL "Download and install go dependencies " ON)
|
|
|
|
option(USE_NNPACK "Compile PaddlePaddle with NNPACK library" OFF)
|
|
|
|
option(USE_NNPACK "Compile PaddlePaddle with NNPACK library" OFF)
|
|
|
|
option(WITH_DISTRIBUTE "Compile with distributed support" OFF)
|
|
|
|
option(WITH_DISTRIBUTE "Compile with distributed support" OFF)
|
|
|
|
|
|
|
|
option(WITH_PSLIB "Compile with pslib support" OFF)
|
|
|
|
option(USE_EIGEN_FOR_BLAS "Use matrix multiplication in Eigen" OFF)
|
|
|
|
option(USE_EIGEN_FOR_BLAS "Use matrix multiplication in Eigen" OFF)
|
|
|
|
option(EIGEN_USE_THREADS "Compile with multi-threaded Eigen" OFF)
|
|
|
|
option(EIGEN_USE_THREADS "Compile with multi-threaded Eigen" OFF)
|
|
|
|
option(WITH_ARM_FP16 "Use half precision support on armv8.2-a cpu" OFF)
|
|
|
|
option(WITH_ARM_FP16 "Use half precision support on armv8.2-a cpu" OFF)
|
|
|
|
option(WITH_CONTRIB "Compile the third-party contributation" OFF)
|
|
|
|
option(WITH_CONTRIB "Compile the third-party contributation" OFF)
|
|
|
|
option(REPLACE_ENFORCE_GLOG "Replace PADDLE_ENFORCE with glog/CHECK for better debug." OFF)
|
|
|
|
option(REPLACE_ENFORCE_GLOG "Replace PADDLE_ENFORCE with glog/CHECK for better debug." OFF)
|
|
|
|
option(WITH_ANAKIN "Compile with Anakin library" OFF)
|
|
|
|
option(WITH_ANAKIN "Compile with Anakin library" OFF)
|
|
|
|
|
|
|
|
option(ANAKIN_BUILD_FAT_BIN "Build anakin cuda fat-bin lib for all device plantform, ignored when WITH_ANAKIN=OFF" OFF)
|
|
|
|
|
|
|
|
option(ANAKIN_BUILD_CROSS_PLANTFORM "Build anakin lib for any nvidia device plantform. ignored when WITH_ANAKIN=OFF" ON)
|
|
|
|
option(WITH_GRPC "Use grpc as the default rpc framework" ${WITH_DISTRIBUTE})
|
|
|
|
option(WITH_GRPC "Use grpc as the default rpc framework" ${WITH_DISTRIBUTE})
|
|
|
|
option(WITH_BRPC_RDMA "Use brpc rdma as the rpc protocal" OFF)
|
|
|
|
option(WITH_BRPC_RDMA "Use brpc rdma as the rpc protocal" OFF)
|
|
|
|
option(ON_INFER "Turn on inference optimization." OFF)
|
|
|
|
option(ON_INFER "Turn on inference optimization." OFF)
|
|
|
@ -103,6 +112,8 @@ if(ANDROID OR IOS)
|
|
|
|
"Disable RDMA when cross-compiling for Android and iOS" FORCE)
|
|
|
|
"Disable RDMA when cross-compiling for Android and iOS" FORCE)
|
|
|
|
set(WITH_MKL OFF CACHE STRING
|
|
|
|
set(WITH_MKL OFF CACHE STRING
|
|
|
|
"Disable MKL when cross-compiling for Android and iOS" FORCE)
|
|
|
|
"Disable MKL when cross-compiling for Android and iOS" FORCE)
|
|
|
|
|
|
|
|
set(WITH_NGRAPH OFF CACHE STRING
|
|
|
|
|
|
|
|
"Disable nGraph when cross-compiling for Android and iOS" FORCE)
|
|
|
|
set(WITH_GOLANG OFF CACHE STRING
|
|
|
|
set(WITH_GOLANG OFF CACHE STRING
|
|
|
|
"Disable golang when cross-compiling for Android and iOS" FORCE)
|
|
|
|
"Disable golang when cross-compiling for Android and iOS" FORCE)
|
|
|
|
|
|
|
|
|
|
|
@ -115,9 +126,18 @@ if(ANDROID OR IOS)
|
|
|
|
add_definitions(-DPADDLE_MOBILE_INFERENCE)
|
|
|
|
add_definitions(-DPADDLE_MOBILE_INFERENCE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
if (APPLE OR WIN32)
|
|
|
|
if (APPLE)
|
|
|
|
set(WITH_MKL OFF CACHE STRING
|
|
|
|
set(WITH_MKL OFF CACHE STRING
|
|
|
|
"Disable MKL for building on mac and windows" FORCE)
|
|
|
|
"Disable MKL for building on mac" FORCE)
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
|
|
|
|
set(WITH_DISTRIBUTE OFF CACHE STRING
|
|
|
|
|
|
|
|
"Disable DISTRIBUTE when compiling for Windows" FORCE)
|
|
|
|
|
|
|
|
set(WITH_C_API OFF CACHE STRING
|
|
|
|
|
|
|
|
"Disable C_API when compiling for Windows" FORCE)
|
|
|
|
|
|
|
|
set(WITH_FLUID_ONLY ON CACHE STRING
|
|
|
|
|
|
|
|
"Enable FLUID_ONLY when compiling for Windows" FORCE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
|
|
|
|
set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
|
|
|
@ -171,6 +191,7 @@ include(external/protobuf) # download, build, install protobuf
|
|
|
|
include(external/python) # download, build, install python
|
|
|
|
include(external/python) # download, build, install python
|
|
|
|
include(external/openblas) # download, build, install openblas
|
|
|
|
include(external/openblas) # download, build, install openblas
|
|
|
|
include(external/mkldnn) # download, build, install mkldnn
|
|
|
|
include(external/mkldnn) # download, build, install mkldnn
|
|
|
|
|
|
|
|
include(external/ngraph) # download, build, install nGraph
|
|
|
|
include(external/swig) # download, build, install swig
|
|
|
|
include(external/swig) # download, build, install swig
|
|
|
|
include(external/boost) # download boost
|
|
|
|
include(external/boost) # download boost
|
|
|
|
include(external/any) # download libn::any
|
|
|
|
include(external/any) # download libn::any
|
|
|
@ -178,16 +199,25 @@ include(external/eigen) # download eigen3
|
|
|
|
include(external/pybind11) # download pybind11
|
|
|
|
include(external/pybind11) # download pybind11
|
|
|
|
include(external/cares)
|
|
|
|
include(external/cares)
|
|
|
|
include(external/cub)
|
|
|
|
include(external/cub)
|
|
|
|
|
|
|
|
include(external/rocprim)
|
|
|
|
include(external/xxhash) # download xxhash
|
|
|
|
include(external/xxhash) # download xxhash
|
|
|
|
|
|
|
|
include(external/dlpack)
|
|
|
|
if (NOT WIN32)
|
|
|
|
|
|
|
|
# there is no official support of snappystream, warpctc, nccl, cupti in windows
|
|
|
|
|
|
|
|
include(external/snappy) # download snappy
|
|
|
|
include(external/snappy) # download snappy
|
|
|
|
include(external/snappystream) # download snappystream
|
|
|
|
include(external/snappystream) # download snappystream
|
|
|
|
include(external/warpctc) # download, build, install warpctc
|
|
|
|
include(external/warpctc) # download, build, install warpctc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (NOT WIN32)
|
|
|
|
|
|
|
|
# there is no official support of nccl, cupti in windows
|
|
|
|
include(cupti)
|
|
|
|
include(cupti)
|
|
|
|
|
|
|
|
include(external/gzstream)
|
|
|
|
endif (NOT WIN32)
|
|
|
|
endif (NOT WIN32)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(WITH_PSLIB)
|
|
|
|
|
|
|
|
include(external/libmct)
|
|
|
|
|
|
|
|
include(external/pslib_brpc)
|
|
|
|
|
|
|
|
include(external/pslib)
|
|
|
|
|
|
|
|
endif(WITH_PSLIB)
|
|
|
|
|
|
|
|
|
|
|
|
if(WITH_DISTRIBUTE)
|
|
|
|
if(WITH_DISTRIBUTE)
|
|
|
|
if(WITH_GRPC)
|
|
|
|
if(WITH_GRPC)
|
|
|
|
include(external/grpc)
|
|
|
|
include(external/grpc)
|
|
|
@ -225,6 +255,12 @@ elseif()
|
|
|
|
set(WITH_ANAKIN OFF CACHE STRING "Anakin is used in MKL only now." FORCE)
|
|
|
|
set(WITH_ANAKIN OFF CACHE STRING "Anakin is used in MKL only now." FORCE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (WITH_PROFILER)
|
|
|
|
|
|
|
|
find_package(Gperftools REQUIRED)
|
|
|
|
|
|
|
|
include_directories(${GPERFTOOLS_INCLUDE_DIR})
|
|
|
|
|
|
|
|
add_definitions(-DWITH_GPERFTOOLS)
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
include(generic) # simplify cmake module
|
|
|
|
include(generic) # simplify cmake module
|
|
|
|
include(package) # set paddle packages
|
|
|
|
include(package) # set paddle packages
|
|
|
|
include(ccache) # set ccache for compilation
|
|
|
|
include(ccache) # set ccache for compilation
|
|
|
@ -249,6 +285,12 @@ set(EXTERNAL_LIBS
|
|
|
|
${PYTHON_LIBRARIES}
|
|
|
|
${PYTHON_LIBRARIES}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(WITH_PSLIB)
|
|
|
|
|
|
|
|
list(APPEND EXTERNAL_LIBS pslib)
|
|
|
|
|
|
|
|
list(APPEND EXTERNAL_LIBS pslib_brpc)
|
|
|
|
|
|
|
|
list(APPEND EXTERNAL_LIBS libmct)
|
|
|
|
|
|
|
|
endif(WITH_PSLIB)
|
|
|
|
|
|
|
|
|
|
|
|
if(WITH_AMD_GPU)
|
|
|
|
if(WITH_AMD_GPU)
|
|
|
|
find_package(HIP)
|
|
|
|
find_package(HIP)
|
|
|
|
include(hip)
|
|
|
|
include(hip)
|
|
|
@ -291,6 +333,14 @@ set(PADDLE_PYTHON_BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}/python/build")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 -g -DNDEBUG")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ON_INFER)
|
|
|
|
|
|
|
|
message(STATUS "On inference mode, will take place some specific optimization.")
|
|
|
|
|
|
|
|
add_definitions(-DPADDLE_ON_INFERENCE)
|
|
|
|
|
|
|
|
else()
|
|
|
|
|
|
|
|
#TODO(luotao), combine this warning with `make inference_lib_dist` command.
|
|
|
|
|
|
|
|
message(WARNING "On inference mode, will take place some specific optimization. Turn on the ON_INFER flag when building inference_lib only.")
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
add_subdirectory(paddle)
|
|
|
|
add_subdirectory(paddle)
|
|
|
|
if(WITH_PYTHON)
|
|
|
|
if(WITH_PYTHON)
|
|
|
|
add_subdirectory(python)
|
|
|
|
add_subdirectory(python)
|
|
|
@ -301,11 +351,3 @@ if(WITH_DOC)
|
|
|
|
find_python_module(recommonmark REQUIRED)
|
|
|
|
find_python_module(recommonmark REQUIRED)
|
|
|
|
add_subdirectory(doc)
|
|
|
|
add_subdirectory(doc)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
if (ON_INFER)
|
|
|
|
|
|
|
|
message(STATUS "On inference mode, will take place some specific optimization.")
|
|
|
|
|
|
|
|
add_definitions(-DPADDLE_ON_INFERENCE)
|
|
|
|
|
|
|
|
else()
|
|
|
|
|
|
|
|
#TODO(luotao), combine this warning with `make inference_lib_dist` command.
|
|
|
|
|
|
|
|
message(WARNING "On inference mode, will take place some specific optimization. Turn on the ON_INFER flag when building inference_lib only.")
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|