xbyak.cmake 1.9 KB
Newer Older
1
# Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
T
tensor-tang 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#
# 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.

include(ExternalProject)

set(XBYAK_PROJECT       extern_xbyak)
set(XBYAK_PREFIX_DIR    ${THIRD_PARTY_PATH}/xbyak)
19
SET(XBYAK_SOURCE_DIR     ${THIRD_PARTY_PATH}/xbyak/src/extern_xbyak)
T
tensor-tang 已提交
20 21
set(XBYAK_INSTALL_ROOT  ${THIRD_PARTY_PATH}/install/xbyak)
set(XBYAK_INC_DIR       ${XBYAK_INSTALL_ROOT}/include)
22
set(XBYAK_REPOSITORY    ${GIT_URL}/herumi/xbyak.git)
23
set(XBYAK_TAG           v5.81) # Dec 19, 2019
T
tensor-tang 已提交
24 25 26 27 28 29 30 31 32 33

include_directories(${XBYAK_INC_DIR})
include_directories(${XBYAK_INC_DIR}/xbyak)

add_definitions(-DPADDLE_WITH_XBYAK)

# xbyak options
add_definitions(-DXBYAK64)
add_definitions(-DXBYAK_NO_OP_NAMES)

34 35 36 37 38
cache_third_party(${XBYAK_PROJECT}
    REPOSITORY    ${XBYAK_REPOSITORY}
    TAG           ${XBYAK_TAG}
    DIR           XBYAK_SOURCE_DIR)

T
tensor-tang 已提交
39 40 41
ExternalProject_Add(
    ${XBYAK_PROJECT}
    ${EXTERNAL_PROJECT_LOG_ARGS}
42
    ${SHALLOW_CLONE}
43
    "${XBYAK_DOWNLOAD_CMD}"
T
tensor-tang 已提交
44 45
    DEPENDS             ""
    PREFIX              ${XBYAK_PREFIX_DIR}
46
    SOURCE_DIR          ${XBYAK_SOURCE_DIR}
47
    UPDATE_COMMAND      ""
T
tensor-tang 已提交
48
    CMAKE_ARGS          -DCMAKE_INSTALL_PREFIX=${XBYAK_INSTALL_ROOT}
49
                        -DCMAKE_BUILD_TYPE=${THIRD_PARTY_BUILD_TYPE}
T
tensor-tang 已提交
50
    CMAKE_CACHE_ARGS    -DCMAKE_INSTALL_PREFIX:PATH=${XBYAK_INSTALL_ROOT}
51
                        -DCMAKE_BUILD_TYPE=${THIRD_PARTY_BUILD_TYPE}
T
tensor-tang 已提交
52 53
)

54
add_library(xbyak INTERFACE)
T
tensor-tang 已提交
55 56

add_dependencies(xbyak ${XBYAK_PROJECT})