openblas.cmake 5.5 KB
Newer Older
1
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
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
# 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.
L
liaogang 已提交
14
INCLUDE(cblas)
L
liaogang 已提交
15

L
liaogang 已提交
16 17
IF(NOT ${CBLAS_FOUND})
    INCLUDE(ExternalProject)
L
liaogang 已提交
18

Y
Yu Yang 已提交
19 20
    SET(CBLAS_SOURCES_DIR ${THIRD_PARTY_PATH}/openblas)
    SET(CBLAS_INSTALL_DIR ${THIRD_PARTY_PATH}/install/openblas)
J
JiabinYang 已提交
21
    SET(CBLAS_INC_DIR "${CBLAS_INSTALL_DIR}/include" CACHE PATH "openblas include directory." FORCE)
L
liaogang 已提交
22

23 24
    SET(CBLAS_LIBRARIES
        "${CBLAS_INSTALL_DIR}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}openblas${CMAKE_STATIC_LIBRARY_SUFFIX}"
25
        CACHE FILEPATH "openblas library." FORCE)
L
liaogang 已提交
26

27 28
    ADD_DEFINITIONS(-DPADDLE_USE_OPENBLAS)

P
peizhilin 已提交
29
    IF (WIN32)
P
peizhilin 已提交
30
        SET(CBLAS_FOUND true)
P
peizhilin 已提交
31 32
        MESSAGE(WARNING, "In windows, openblas only support msvc build, please build it manually and put it at " ${CBLAS_INSTALL_DIR})
    ENDIF(WIN32)
33

P
peizhilin 已提交
34 35 36 37
    IF (NOT WIN32)
    SET(OPENBLAS_CC "${CMAKE_C_COMPILER} -Wno-unused-but-set-variable -Wno-unused-variable")
    SET(OPENBLAS_COMMIT "v0.2.20")

38 39 40 41 42 43
    IF(APPLE)
        SET(OPENBLAS_CC "${CMAKE_C_COMPILER} -isysroot ${CMAKE_OSX_SYSROOT}")
    ENDIF()
    SET(OPTIONAL_ARGS "")
    IF(CMAKE_SYSTEM_PROCESSOR MATCHES "^x86(_64)?$")
        SET(OPTIONAL_ARGS DYNAMIC_ARCH=1 NUM_THREADS=64)
P
peizhilin 已提交
44
    ENDIF()
45

P
peizhilin 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    SET(COMMON_ARGS CC=${OPENBLAS_CC} NO_SHARED=1 NO_LAPACK=1 libs)
    ExternalProject_Add(
        extern_openblas
        ${EXTERNAL_PROJECT_LOG_ARGS}
        GIT_REPOSITORY      https://github.com/xianyi/OpenBLAS.git
        GIT_TAG             ${OPENBLAS_COMMIT}
        PREFIX              ${CBLAS_SOURCES_DIR}
        INSTALL_DIR         ${CBLAS_INSTALL_DIR}
        BUILD_IN_SOURCE     1
        BUILD_COMMAND       ${CMAKE_MAKE_PROGRAM} ${COMMON_ARGS} ${OPTIONAL_ARGS}
        INSTALL_COMMAND     ${CMAKE_MAKE_PROGRAM} install NO_SHARED=1 NO_LAPACK=1 PREFIX=<INSTALL_DIR> 
                            && rm -r ${CBLAS_INSTALL_DIR}/lib/cmake ${CBLAS_INSTALL_DIR}/lib/pkgconfig
        UPDATE_COMMAND      ""
        CONFIGURE_COMMAND   ""
    )
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    ELSE(NOT WIN32)
        SET(CBLAS_FOUND false)
        SET(CBLAS_LIBRARIES
            "${CBLAS_INSTALL_DIR}/lib/openblas${CMAKE_STATIC_LIBRARY_SUFFIX}"
            CACHE FILEPATH "openblas library." FORCE)
        INCLUDE_DIRECTORIES(${CBLAS_INC_DIR}/openblas) # For openbals code to include its own headers.
        INCLUDE_DIRECTORIES(${THIRD_PARTY_PATH}/install)
        ExternalProject_Add(
            extern_openblas
            ${EXTERNAL_PROJECT_LOG_ARGS}
            GIT_REPOSITORY      https://github.com/xianyi/OpenBLAS.git
            GIT_TAG            "v0.3.7"
            PREFIX              ${CBLAS_SOURCES_DIR}
            INSTALL_DIR         ${CBLAS_INSTALL_DIR}
            BUILD_IN_SOURCE     0
            UPDATE_COMMAND      ""
            CMAKE_ARGS          -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
                                    -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}
                                    -DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}
                                    -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS}
                                    -DCMAKE_INSTALL_PREFIX=${CBLAS_INSTALL_DIR}
                                    -DCMAKE_POSITION_INDEPENDENT_CODE=ON
                                    -DCMAKE_BUILD_TYPE=${THIRD_PARTY_BUILD_TYPE}
                                    -DBUILD_SHARED_LIBS=ON
                                    -DMSVC_STATIC_CRT=${MSVC_STATIC_CRT}
                                    ${EXTERNAL_OPTIONAL_ARGS}
                CMAKE_CACHE_ARGS    -DCMAKE_INSTALL_PREFIX:PATH=${CBLAS_INSTALL_DIR}
                                    -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON
                                    -DCMAKE_BUILD_TYPE:STRING=${THIRD_PARTY_BUILD_TYPE}
            )
        add_custom_command(TARGET extern_openblas POST_BUILD
        COMMAND ${CMAKE_COMMAND} -E copy ${CBLAS_INSTALL_DIR}/bin/openblas${CMAKE_SHARED_LIBRARY_SUFFIX}  ${CBLAS_INSTALL_DIR}/lib )
        ADD_LIBRARY(openblas STATIC IMPORTED GLOBAL)
        SET_PROPERTY(TARGET openblas PROPERTY IMPORTED_LOCATION ${CBLAS_LIBRARIES})
        ADD_DEPENDENCIES(openblas extern_openblas)
P
peizhilin 已提交
96
    ENDIF(NOT WIN32)
Y
Yu Yang 已提交
97
    SET(CBLAS_PROVIDER openblas)
L
liaogang 已提交
98
ENDIF(NOT ${CBLAS_FOUND})
L
liaogang 已提交
99

100
MESSAGE(STATUS "BLAS library: ${CBLAS_LIBRARIES}")
J
JiabinYang 已提交
101 102
MESSAGE(STATUS "BLAS Include: ${CBLAS_INC_DIR}")
INCLUDE_DIRECTORIES(${CBLAS_INC_DIR})
L
liaogang 已提交
103

104 105
# FIXME(gangliao): generate cblas target to track all high performance
# linear algebra libraries for cc_library(xxx SRCS xxx.c DEPS cblas)
L
liaogang 已提交
106
SET(dummyfile ${CMAKE_CURRENT_BINARY_DIR}/cblas_dummy.c)
107
FILE(WRITE ${dummyfile} "const char *dummy_cblas = \"${dummyfile}\";")
Y
Yancey1989 已提交
108
ADD_LIBRARY(cblas STATIC ${dummyfile})
109 110 111 112 113 114

IF("${CBLAS_PROVIDER}" STREQUAL "MKLML")
  TARGET_LINK_LIBRARIES(cblas dynload_mklml)
ELSE()
  TARGET_LINK_LIBRARIES(cblas ${CBLAS_LIBRARIES})
ENDIF("${CBLAS_PROVIDER}" STREQUAL "MKLML")
115

T
tensor-tang 已提交
116 117 118 119 120
IF(WITH_LIBXSMM)
  TARGET_LINK_LIBRARIES(cblas ${LIBXSMM_LIBS})
  ADD_DEPENDENCIES(cblas extern_libxsmm)
ENDIF()

L
liaogang 已提交
121 122
IF(NOT ${CBLAS_FOUND})
    ADD_DEPENDENCIES(cblas extern_openblas)
T
tensor-tang 已提交
123 124 125 126
ELSE()
    IF("${CBLAS_PROVIDER}" STREQUAL "MKLML")
        ADD_DEPENDENCIES(cblas mklml)
    ENDIF()
L
liaogang 已提交
127
ENDIF(NOT ${CBLAS_FOUND})