openblas.cmake 5.4 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 16 17 18
IF(USE_EIGEN_FOR_BLAS)
    return()
ENDIF(USE_EIGEN_FOR_BLAS)

L
liaogang 已提交
19
INCLUDE(cblas)
L
liaogang 已提交
20

L
liaogang 已提交
21 22
IF(NOT ${CBLAS_FOUND})
    INCLUDE(ExternalProject)
L
liaogang 已提交
23

Y
Yu Yang 已提交
24 25
    SET(CBLAS_SOURCES_DIR ${THIRD_PARTY_PATH}/openblas)
    SET(CBLAS_INSTALL_DIR ${THIRD_PARTY_PATH}/install/openblas)
L
liaogang 已提交
26
    SET(CBLAS_INC_DIR "${CBLAS_INSTALL_DIR}/include" CACHE PATH "openblas include directory." FORCE)
L
liaogang 已提交
27

28 29
    SET(CBLAS_LIBRARIES
        "${CBLAS_INSTALL_DIR}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}openblas${CMAKE_STATIC_LIBRARY_SUFFIX}"
30
        CACHE FILEPATH "openblas library." FORCE)
L
liaogang 已提交
31

32
    SET(OPENBLAS_CC "${CMAKE_C_COMPILER} -Wno-unused-but-set-variable -Wno-unused-variable")
33

34
    IF(CMAKE_CROSSCOMPILING)
35
        SET(OPTIONAL_ARGS HOSTCC=${HOST_C_COMPILER})
36 37
        GET_FILENAME_COMPONENT(CROSS_SUFFIX ${CMAKE_C_COMPILER} DIRECTORY)
        SET(CROSS_SUFFIX ${CROSS_SUFFIX}/)
38 39 40 41
        IF(ANDROID)
            # arm_soft_fp_abi branch of OpenBLAS to support softfp
            #   https://github.com/xianyi/OpenBLAS/tree/arm_soft_fp_abi
            SET(OPENBLAS_COMMIT "b5c96fcfcdc82945502a2303116a64d89985daf5")
H
hedaoyuan 已提交
42
            IF(ANDROID_ABI MATCHES "^armeabi(-v7a)?$")
43
                SET(OPTIONAL_ARGS ${OPTIONAL_ARGS} TARGET=ARMV7 ARM_SOFTFP_ABI=1 USE_THREAD=0)
H
hedaoyuan 已提交
44
            ELSEIF(ANDROID_ABI STREQUAL "arm64-v8a")
45 46 47
                SET(OPTIONAL_ARGS ${OPTIONAL_ARGS} TARGET=ARMV8 BINARY=64 USE_THREAD=0)
            ENDIF()
        ELSEIF(IOS)
48
            # FIXME(liuyiqun): support multiple architectures
49
            SET(OPENBLAS_COMMIT "b5c96fcfcdc82945502a2303116a64d89985daf5")
50
            SET(OPENBLAS_CC "${OPENBLAS_CC} ${CMAKE_C_FLAGS} -isysroot ${CMAKE_OSX_SYSROOT}")
51
            IF(CMAKE_OSX_ARCHITECTURES MATCHES "armv7")
52
                SET(OPENBLAS_CC "${OPENBLAS_CC} -arch armv7")
53 54
                SET(OPTIONAL_ARGS ${OPTIONAL_ARGS} TARGET=ARMV7 ARM_SOFTFP_ABI=1 USE_THREAD=0)
            ELSEIF(CMAKE_OSX_ARCHITECTURES MATCHES "arm64")
55 56
                SET(OPENBLAS_CC "${OPENBLAS_CC} -arch arm64")
                SET(OPTIONAL_ARGS ${OPTIONAL_ARGS} TARGET=ARMV8 BINARY=64 USE_THREAD=0 CROSS_SUFFIX=${CROSS_SUFFIX})
H
hedaoyuan 已提交
57
            ENDIF()
58 59
        ELSEIF(RPI)
            # use hardfp
60
            SET(OPENBLAS_COMMIT "v0.2.20")
61
            SET(OPTIONAL_ARGS ${OPTIONAL_ARGS} TARGET=ARMV7 USE_THREAD=0)
62
        ENDIF()
L
Liu Yiqun 已提交
63
    ELSE()
64 65 66
        IF(APPLE)
            SET(OPENBLAS_CC "${CMAKE_C_COMPILER} -isysroot ${CMAKE_OSX_SYSROOT}")
        ENDIF()
67
        SET(OPENBLAS_COMMIT "v0.2.20")
68
        SET(OPTIONAL_ARGS "")
L
Liu Yiqun 已提交
69
        IF(CMAKE_SYSTEM_PROCESSOR MATCHES "^x86(_64)?$")
70 71
            SET(OPTIONAL_ARGS DYNAMIC_ARCH=1 NUM_THREADS=64)
        ENDIF()
72
    ENDIF()
73

74 75
    SET(COMMON_ARGS CC=${OPENBLAS_CC} NO_SHARED=1 NO_LAPACK=1 libs)

L
liaogang 已提交
76
    ExternalProject_Add(
L
liaogang 已提交
77
        extern_openblas
L
liaogang 已提交
78
        ${EXTERNAL_PROJECT_LOG_ARGS}
L
liaogang 已提交
79
        GIT_REPOSITORY      https://github.com/xianyi/OpenBLAS.git
80
        GIT_TAG             ${OPENBLAS_COMMIT}
L
liaogang 已提交
81 82 83
        PREFIX              ${CBLAS_SOURCES_DIR}
        INSTALL_DIR         ${CBLAS_INSTALL_DIR}
        BUILD_IN_SOURCE     1
84
        BUILD_COMMAND       ${CMAKE_MAKE_PROGRAM} ${COMMON_ARGS} ${OPTIONAL_ARGS}
L
liaogang 已提交
85
        INSTALL_COMMAND     ${CMAKE_MAKE_PROGRAM} install NO_SHARED=1 NO_LAPACK=1 PREFIX=<INSTALL_DIR>
L
liaogang 已提交
86
        UPDATE_COMMAND      ""
L
liaogang 已提交
87 88
        CONFIGURE_COMMAND   ""
    )
Y
Yu Yang 已提交
89
    SET(CBLAS_PROVIDER openblas)
90 91 92 93 94 95 96 97 98 99 100
    IF(WITH_C_API)
        INSTALL(DIRECTORY ${CBLAS_INC_DIR} DESTINATION third_party/openblas)
        # Because libopenblas.a is a symbolic link of another library, thus need to
        # install the whole directory.
        IF(ANDROID)
            SET(TMP_INSTALL_DIR third_party/openblas/lib/${ANDROID_ABI})
        ELSE()
            SET(TMP_INSTALL_DIR third_party/openblas/lib)
        ENDIF()
        INSTALL(CODE "execute_process(
            COMMAND ${CMAKE_COMMAND} -E copy_directory ${CBLAS_INSTALL_DIR}/lib
101
                    ${CMAKE_INSTALL_PREFIX}/${TMP_INSTALL_DIR}
102 103 104 105 106 107 108
            )"
        )
        INSTALL(CODE "MESSAGE(STATUS \"Installing: \"
                \"${CBLAS_INSTALL_DIR}/lib -> ${CMAKE_INSTALL_PREFIX}/${TMP_INSTALL_DIR}\"
            )"
        )
    ENDIF()
L
liaogang 已提交
109
ENDIF(NOT ${CBLAS_FOUND})
L
liaogang 已提交
110

111
MESSAGE(STATUS "BLAS library: ${CBLAS_LIBRARIES}")
L
liaogang 已提交
112
INCLUDE_DIRECTORIES(${CBLAS_INC_DIR})
L
liaogang 已提交
113

114 115
# FIXME(gangliao): generate cblas target to track all high performance
# linear algebra libraries for cc_library(xxx SRCS xxx.c DEPS cblas)
L
liaogang 已提交
116 117
SET(dummyfile ${CMAKE_CURRENT_BINARY_DIR}/cblas_dummy.c)
FILE(WRITE ${dummyfile} "const char * dummy = \"${dummyfile}\";")
T
tensor-tang 已提交
118
IF("${CBLAS_PROVIDER}" STREQUAL "MKLML")
L
Luo Tao 已提交
119 120 121 122
    ADD_LIBRARY(cblas SHARED ${dummyfile})
ELSE()
    ADD_LIBRARY(cblas STATIC ${dummyfile})
ENDIF()
T
tensor-tang 已提交
123
TARGET_LINK_LIBRARIES(cblas ${CBLAS_LIBRARIES})
124

L
liaogang 已提交
125 126 127
IF(NOT ${CBLAS_FOUND})
    ADD_DEPENDENCIES(cblas extern_openblas)
    LIST(APPEND external_project_dependencies cblas)
T
tensor-tang 已提交
128 129 130 131
ELSE()
    IF("${CBLAS_PROVIDER}" STREQUAL "MKLML")
        ADD_DEPENDENCIES(cblas mklml)
    ENDIF()
L
liaogang 已提交
132
ENDIF(NOT ${CBLAS_FOUND})