openblas.cmake 2.8 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/${CMAKE_STATIC_LIBRARY_PREFIX}openblas${CMAKE_STATIC_LIBRARY_SUFFIX}"
26
        CACHE FILEPATH "openblas library." FORCE)
L
liaogang 已提交
27

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

30 31 32 33 34 35 36 37 38 39 40
    IF(CMAKE_CROSSCOMPILING)
        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")
            SET(OPTIONAL_ARGS HOSTCC=${HOST_C_COMPILER} TARGET=ARMV7 ARM_SOFTFP_ABI=1 USE_THREAD=0)
        ELSEIF(RPI)
            # use hardfp
            SET(OPENBLAS_COMMIT "v0.2.19")
            SET(OPTIONAL_ARGS HOSTCC=${HOST_C_COMPILER} TARGET=ARMV7 USE_THREAD=0)
        ENDIF()
L
Liu Yiqun 已提交
41
    ELSE()
42
        SET(OPENBLAS_COMMIT "v0.2.19")
43
        SET(OPTIONAL_ARGS "")
L
Liu Yiqun 已提交
44
        IF(CMAKE_SYSTEM_PROCESSOR MATCHES "^x86(_64)?$")
45 46
            SET(OPTIONAL_ARGS DYNAMIC_ARCH=1 NUM_THREADS=64)
        ENDIF()
47
    ENDIF()
48

L
liaogang 已提交
49
    ExternalProject_Add(
L
liaogang 已提交
50
        extern_openblas
L
liaogang 已提交
51
        ${EXTERNAL_PROJECT_LOG_ARGS}
L
liaogang 已提交
52
        GIT_REPOSITORY      https://github.com/xianyi/OpenBLAS.git
53
        GIT_TAG             ${OPENBLAS_COMMIT}
L
liaogang 已提交
54 55 56
        PREFIX              ${CBLAS_SOURCES_DIR}
        INSTALL_DIR         ${CBLAS_INSTALL_DIR}
        BUILD_IN_SOURCE     1
57
        BUILD_COMMAND       ${CMAKE_MAKE_PROGRAM} ${COMMON_ARGS} ${OPTIONAL_ARGS}
L
liaogang 已提交
58
        INSTALL_COMMAND     ${CMAKE_MAKE_PROGRAM} install NO_SHARED=1 NO_LAPACK=1 PREFIX=<INSTALL_DIR>
L
liaogang 已提交
59
        UPDATE_COMMAND      ""
L
liaogang 已提交
60 61 62
        CONFIGURE_COMMAND   ""
    )
ENDIF(NOT ${CBLAS_FOUND})
L
liaogang 已提交
63

64
MESSAGE(STATUS "BLAS library: ${CBLAS_LIBRARIES}")
L
liaogang 已提交
65
INCLUDE_DIRECTORIES(${CBLAS_INC_DIR})
L
liaogang 已提交
66 67 68 69 70 71 72

ADD_LIBRARY(cblas STATIC IMPORTED)
SET_PROPERTY(TARGET cblas PROPERTY IMPORTED_LOCATION ${CBLAS_LIBRARIES})
IF(NOT ${CBLAS_FOUND})
    ADD_DEPENDENCIES(cblas extern_openblas)
    LIST(APPEND external_project_dependencies cblas)
ENDIF(NOT ${CBLAS_FOUND})