mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: This reverts commit 04bf5285896e52ac118d2f9e9b7f582f695f13e2. Pull Request resolved: https://github.com/pytorch/pytorch/pull/15847 Differential Revision: D13603174 Pulled By: anderspapitto fbshipit-source-id: ae321434d3345ad94fad67bf71fd027cddeb4588
80 lines
2.9 KiB
CMake
80 lines
2.9 KiB
CMake
project(libshm C CXX)
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
|
|
CMAKE_POLICY(VERSION 2.6)
|
|
|
|
set(TORCH_ROOT ${CMAKE_CURRENT_LIST_DIR}/../../../)
|
|
include(${TORCH_ROOT}/cmake/public/threads.cmake)
|
|
|
|
IF(NOT LIBSHM_INSTALL_LIB_SUBDIR)
|
|
SET(LIBSHM_INSTALL_LIB_SUBDIR "lib" CACHE PATH "libshm install library directory")
|
|
ENDIF()
|
|
|
|
# Flags
|
|
# When using MSVC
|
|
IF(MSVC)
|
|
# we want to respect the standard, and we are bored of those **** .
|
|
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE=1)
|
|
ENDIF(MSVC)
|
|
|
|
IF (CMAKE_VERSION VERSION_LESS "3.1")
|
|
SET(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
|
|
ELSE ()
|
|
SET(CMAKE_CXX_STANDARD 11)
|
|
ENDIF ()
|
|
|
|
ADD_LIBRARY(shm SHARED core.cpp)
|
|
|
|
target_include_directories(shm PUBLIC
|
|
${TORCH_ROOT}/torch/lib # provides "libshm/libshm.h"
|
|
${CMAKE_BINARY_DIR}/caffe2/aten/src # provides <TH/THGeneral.h> to THC.h
|
|
)
|
|
|
|
ADD_EXECUTABLE(torch_shm_manager manager.cpp)
|
|
target_link_libraries(torch_shm_manager shm)
|
|
### Torch packages supposes libraries prefix is "lib"
|
|
SET_TARGET_PROPERTIES(shm PROPERTIES
|
|
PREFIX "lib"
|
|
IMPORT_PREFIX "lib")
|
|
TARGET_LINK_LIBRARIES(shm caffe2 c10)
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
include(CheckLibraryExists)
|
|
# https://github.com/libgit2/libgit2/issues/2128#issuecomment-35649830
|
|
check_library_exists(rt clock_gettime "time.h" NEED_LIBRT)
|
|
if(NEED_LIBRT)
|
|
target_link_libraries(shm rt)
|
|
target_link_libraries(torch_shm_manager rt)
|
|
else()
|
|
message(STATUS "Checking if rt requires pthread")
|
|
# Sometimes, rt won't be available unless you also link against
|
|
# pthreads. In this case, the NEED_LIBRT test will fail, because
|
|
# check_library_exists isn't going to build the C file with the
|
|
# pthread file, and the build will fail, setting NEED_LIBRT to
|
|
# false (this is TOTALLY BOGUS, this situation should be an error
|
|
# situation, not a "oh, I guess rt is not supported", but it's
|
|
# not too easy to distinguish between the two situations). So,
|
|
# if it fails, we try again, but this time also with a dependency
|
|
# on pthread. If it succeeds this time, we know we not only need
|
|
# an rt dependency, but we also need pthread.
|
|
#
|
|
# BTW, this test looks for shm_open, because that's what we
|
|
# really care about (not clock_gettime). I didn't change the
|
|
# site above though in case there was a reason we were testing
|
|
# against clock_gettime. In principle, the choice of symbol you
|
|
# test for shouldn't matter.
|
|
set(CMAKE_REQUIRED_LIBRARIES Threads::Threads)
|
|
check_library_exists(rt shm_open "sys/mman.h" NEED_RT_AND_PTHREAD)
|
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
|
if(NEED_RT_AND_PTHREAD)
|
|
message(STATUS "Needs it, linking against pthread and rt")
|
|
target_link_libraries(shm rt Threads::Threads)
|
|
target_link_libraries(torch_shm_manager rt Threads::Threads)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
|
|
INSTALL(TARGETS shm LIBRARY DESTINATION ${LIBSHM_INSTALL_LIB_SUBDIR})
|
|
INSTALL(FILES libshm.h DESTINATION "include")
|
|
INSTALL(TARGETS torch_shm_manager DESTINATION "bin")
|