CMakeLists.txt 2.76 KB
Newer Older
Lindsey Gray's avatar
Lindsey Gray committed
1
2
3
cmake_minimum_required(VERSION 3.0)
project(torchsparse)
set(CMAKE_CXX_STANDARD 14)
Matthias Fey's avatar
Matthias Fey committed
4
set(TORCHSPARSE_VERSION 0.7.0)
Lindsey Gray's avatar
Lindsey Gray committed
5
6

option(WITH_CUDA "Enable CUDA support" OFF)
7
option(WITH_PYTHON "Link to Python when building" ON)
Lindsey Gray's avatar
Lindsey Gray committed
8
9
10
11

if(WITH_CUDA)
  enable_language(CUDA)
  add_definitions(-D__CUDA_NO_HALF_OPERATORS__)
12
  add_definitions(-DWITH_CUDA)
13
  set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} --expt-relaxed-constexpr")
Lindsey Gray's avatar
Lindsey Gray committed
14
15
endif()

16
17
18
19
if (WITH_PYTHON)
  add_definitions(-DWITH_PYTHON)
  find_package(Python3 COMPONENTS Development)
endif()
Lindsey Gray's avatar
Lindsey Gray committed
20
21
find_package(Torch REQUIRED)

rusty1s's avatar
rusty1s committed
22
file(GLOB HEADERS csrc/*.h)
Matthias Fey's avatar
Matthias Fey committed
23
file(GLOB OPERATOR_SOURCES csrc/*.* csrc/cpu/*.*)
Lindsey Gray's avatar
Lindsey Gray committed
24
25
26
27
28
if(WITH_CUDA)
  file(GLOB OPERATOR_SOURCES ${OPERATOR_SOURCES} csrc/cuda/*.h csrc/cuda/*.cu)
endif()

add_library(${PROJECT_NAME} SHARED ${OPERATOR_SOURCES})
29
30
31
32
target_link_libraries(${PROJECT_NAME} PRIVATE ${TORCH_LIBRARIES})
if (WITH_PYTHON)
  target_link_libraries(${PROJECT_NAME} PRIVATE Python3::Python)
endif()
Lindsey Gray's avatar
Lindsey Gray committed
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
set_target_properties(${PROJECT_NAME} PROPERTIES EXPORT_NAME TorchSparse)

target_include_directories(${PROJECT_NAME} INTERFACE
  $<BUILD_INTERFACE:${HEADERS}>
  $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>)

include(GNUInstallDirs)
include(CMakePackageConfigHelpers)

set(TORCHSPARSE_CMAKECONFIG_INSTALL_DIR "share/cmake/TorchSparse" CACHE STRING "install path for TorchSparseConfig.cmake")

configure_package_config_file(cmake/TorchSparseConfig.cmake.in
  "${CMAKE_CURRENT_BINARY_DIR}/TorchSparseConfig.cmake"
  INSTALL_DESTINATION ${TORCHSPARSE_CMAKECONFIG_INSTALL_DIR})

write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/TorchSparseConfigVersion.cmake
	VERSION ${TORCHSPARSE_VERSION}
  COMPATIBILITY AnyNewerVersion)

install(FILES ${CMAKE_CURRENT_BINARY_DIR}/TorchSparseConfig.cmake
  ${CMAKE_CURRENT_BINARY_DIR}/TorchSparseConfigVersion.cmake
  DESTINATION ${TORCHSPARSE_CMAKECONFIG_INSTALL_DIR})

install(TARGETS ${PROJECT_NAME}
  EXPORT TorchSparseTargets
  LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
  )

install(EXPORT TorchSparseTargets
  NAMESPACE TorchSparse::
  DESTINATION ${TORCHSPARSE_CMAKECONFIG_INSTALL_DIR})

install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})
install(FILES
  csrc/cpu/convert_cpu.h
rusty1s's avatar
rusty1s committed
68
  csrc/cpu/diag_cpu.h
Lindsey Gray's avatar
Lindsey Gray committed
69
70
71
  csrc/cpu/metis_cpu.h
  csrc/cpu/rw_cpu.h
  csrc/cpu/saint_cpu.h
rusty1s's avatar
rusty1s committed
72
  csrc/cpu/sample_cpu.h
Lindsey Gray's avatar
Lindsey Gray committed
73
  csrc/cpu/spmm_cpu.h
rusty1s's avatar
rusty1s committed
74
  csrc/cpu/spspmm_cpu.h
Lindsey Gray's avatar
Lindsey Gray committed
75
76
77
78
79
80
81
82
83
84
  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}/cpu)
if(WITH_CUDA)
  install(FILES
    csrc/cuda/convert_cuda.h
    csrc/cuda/diag_cuda.h
    csrc/cuda/rw_cuda.h
    csrc/cuda/spmm_cuda.h
    csrc/cuda/spspmm_cuda.h
    DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}/cuda)
endif()
Lindsey Gray's avatar
Lindsey Gray committed
85
86
87
88
89

if(WITH_CUDA)
  set_property(TARGET torch_cuda PROPERTY INTERFACE_COMPILE_OPTIONS "")
  set_property(TARGET torch_cpu PROPERTY INTERFACE_COMPILE_OPTIONS "")
endif()