openblas.cmake 3.2 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
# 
# 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.

L
liaogang 已提交
15
INCLUDE(cblas)
L
liaogang 已提交
16

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

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

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

27 28
    SET(COMMON_ARGS CC=${CMAKE_C_COMPILER} NO_LAPACK=1 NO_SHARED=1)

L
Liu Yiqun 已提交
29
    IF(ANDROID)
30 31
        # arm_soft_fp_abi branch of OpenBLAS to support softfp
        #   https://github.com/xianyi/OpenBLAS/tree/arm_soft_fp_abi
L
Liu Yiqun 已提交
32
        SET(OPENBLAS_COMMIT "b5c96fcfcdc82945502a2303116a64d89985daf5")
33
        SET(OPTIONAL_ARGS HOSTCC=${HOST_C_COMPILER} TARGET=ARMV7 ARM_SOFTFP_ABI=1 USE_THREAD=0 libs)
L
Liu Yiqun 已提交
34
    ELSEIF(RPI)
35
        # use hardfp
L
Liu Yiqun 已提交
36
        SET(OPENBLAS_COMMIT "v0.2.19")
37
        SET(OPTIONAL_ARGS HOSTCC=${HOST_C_COMPILER} TARGET=ARMV7 USE_THREAD=0 libs)
L
Liu Yiqun 已提交
38
    ELSE()
39
        SET(OPENBLAS_COMMIT "v0.2.19")
40
        SET(OPENBLAS_ARGS DYNAMIC_ARCH=1 libs)
41
    ENDIF()
42

L
liaogang 已提交
43 44
    ExternalProject_Add(
        openblas
L
liaogang 已提交
45
        ${EXTERNAL_PROJECT_LOG_ARGS}
L
liaogang 已提交
46
        GIT_REPOSITORY      https://github.com/xianyi/OpenBLAS.git
47
        GIT_TAG             ${OPENBLAS_COMMIT}
L
liaogang 已提交
48 49 50
        PREFIX              ${CBLAS_SOURCES_DIR}
        INSTALL_DIR         ${CBLAS_INSTALL_DIR}
        BUILD_IN_SOURCE     1
51
        BUILD_COMMAND       ${CMAKE_MAKE_PROGRAM} ${COMMON_ARGS} ${OPTIONAL_ARGS}
L
liaogang 已提交
52
        INSTALL_COMMAND     ${CMAKE_MAKE_PROGRAM} install NO_SHARED=1 PREFIX=<INSTALL_DIR>
L
liaogang 已提交
53
        UPDATE_COMMAND      ""
L
liaogang 已提交
54 55 56
        CONFIGURE_COMMAND   ""
    )

L
Liu Yiqun 已提交
57
    IF(NOT ANDROID AND NOT RPI)
58 59 60 61 62 63 64
        ExternalProject_Add_Step(
            openblas lapacke_install
            COMMAND ${CMAKE_COMMAND} -E copy "${CBLAS_SOURCES_DIR}/src/openblas/lapack-netlib/LAPACKE/include/lapacke_mangling_with_flags.h" "${CBLAS_INSTALL_DIR}/include/lapacke_mangling.h"
            COMMAND ${CMAKE_COMMAND} -E copy "${CBLAS_SOURCES_DIR}/src/openblas/lapack-netlib/LAPACKE/include/lapacke.h" "${CBLAS_INSTALL_DIR}/include/lapacke.h"
            COMMAND ${CMAKE_COMMAND} -E copy "${CBLAS_SOURCES_DIR}/src/openblas/lapack-netlib/LAPACKE/include/lapacke_config.h" "${CBLAS_INSTALL_DIR}/include/lapacke_config.h"
            COMMAND ${CMAKE_COMMAND} -E copy "${CBLAS_SOURCES_DIR}/src/openblas/lapack-netlib/LAPACKE/include/lapacke_utils.h" "${CBLAS_INSTALL_DIR}/include/lapacke_utils.h"
            DEPENDEES install
L
liaogang 已提交
65
    )
66
    ENDIF()
L
liaogang 已提交
67

L
liaogang 已提交
68
    LIST(APPEND external_project_dependencies openblas)
L
liaogang 已提交
69
ENDIF(NOT ${CBLAS_FOUND})
L
liaogang 已提交
70

71
MESSAGE(STATUS "BLAS library: ${CBLAS_LIBRARIES}")
L
liaogang 已提交
72
INCLUDE_DIRECTORIES(${CBLAS_INC_DIR})