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

15
include(ExternalProject)
T
tensor-tang 已提交
16

17 18 19 20 21 22 23 24 25 26
set(LIBXSMM_PREFIX_DIR ${THIRD_PARTY_PATH}/libxsmm)
set(LIBXSMM_INSTALL_DIR ${THIRD_PARTY_PATH}/install/libxsmm)
set(LIBXSMM_INCLUDE_DIR
    "${LIBXSMM_INSTALL_DIR}/include"
    CACHE PATH "LIBXSMM include directory." FORCE)
set(LIBXSMM_LIBRARY_DIR
    "${LIBXSMM_INSTALL_DIR}/lib"
    CACHE PATH "LIBXSMM library directory." FORCE)
set(LIBXSMM_LIB "${LIBXSMM_LIBRARY_DIR}/libxsmm.a")
set(LIBXSMMNOBLAS_LIB "${LIBXSMM_LIBRARY_DIR}/libxsmmnoblas.a")
T
tensor-tang 已提交
27 28

ExternalProject_Add(
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  extern_libxsmm
  ${SHALLOW_CLONE}
  GIT_REPOSITORY "${GIT_URL}/hfp/libxsmm.git"
  GIT_TAG "7cc03b5b342fdbc6b6d990b190671c5dbb8489a2"
  PREFIX ${LIBXSMM_PREFIX_DIR}
  UPDATE_COMMAND ""
  CONFIGURE_COMMAND ""
  BUILD_IN_SOURCE 1
  BUILD_COMMAND $(MAKE) --silent PREFIX=${LIBXSMM_INSTALL_DIR} CXX=g++ CC=gcc
                WARP=0 install
  INSTALL_COMMAND ""
  BUILD_BYPRODUCTS ${LIBXSMM_LIB}
  BUILD_BYPRODUCTS ${LIBXSMMNOBLAS_LIB})
add_library(libxsmm STATIC IMPORTED GLOBAL)
set_property(TARGET libxsmm PROPERTY IMPORTED_LOCATION "${LIBXSMM_LIB}")
set_property(TARGET libxsmm PROPERTY IMPORTED_LOCATION "${LIBXSMMNOBLAS_LIB}")
T
tensor-tang 已提交
45

46
message(STATUS "Libxsmm library: ${LIBXSMM_LIBS}")
T
tensor-tang 已提交
47
include_directories(${LIBXSMM_INCLUDE_DIR})
48 49
add_definitions(-DPADDLE_WITH_LIBXSMM)
add_dependencies(libxsmm extern_libxsmm)