2022-09-08 21:31:35 +08:00
|
|
|
cmake_minimum_required(VERSION 3.10) # Required by CMAKE_CUDA_HOST_COMPILER
|
2022-07-31 21:43:26 +08:00
|
|
|
include(CMakeDependentOption)
|
|
|
|
project(InfiniTensor C CXX)
|
|
|
|
|
|
|
|
# Do not change these options in this file. Use cmake.config, cmake -DOPTION=VALUE, or ccmake to specify them.
|
2022-08-22 15:01:03 +08:00
|
|
|
option(USE_CUDA "Support CUDA GPU" ON)
|
2022-09-01 20:30:12 +08:00
|
|
|
option(USE_BACKTRACE "Print backtrace on exception and segmentation fault" ON)
|
2022-09-13 11:27:41 +08:00
|
|
|
option(USE_PROTOBUF "Serialize and deserialize tensors" ON)
|
2022-08-08 16:02:07 +08:00
|
|
|
option(BUILD_TEST "Build tests" ON)
|
2022-09-01 20:30:12 +08:00
|
|
|
|
2022-07-31 21:43:26 +08:00
|
|
|
cmake_dependent_option(BUILD_TEST_CORE "Build tests for core components" ON BUILD_TEST OFF)
|
2022-08-08 16:02:07 +08:00
|
|
|
cmake_dependent_option(BUILD_TEST_PET "Build tests for PET" OFF BUILD_TEST OFF)
|
|
|
|
cmake_dependent_option(BUILD_TEST_EINNET "Build tests for EINNET" OFF BUILD_TEST OFF)
|
2022-07-31 21:43:26 +08:00
|
|
|
|
|
|
|
set(DEFAULT_BUILD_TYPE "RelWithDebInfo")
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF) # -std=gnu++11 when on, -std=c++11 when off
|
2022-09-08 21:31:35 +08:00
|
|
|
|
2022-08-31 14:44:53 +08:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall -Werror -Wno-error=deprecated-declarations")
|
2022-07-31 21:43:26 +08:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -UNDEBUG") # Enable assertion
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -UNDEBUG") # Enable assertion
|
|
|
|
|
|
|
|
find_package(
|
|
|
|
Python
|
|
|
|
COMPONENTS Interpreter Development
|
|
|
|
REQUIRED)
|
|
|
|
# OpenMP
|
|
|
|
find_package(OpenMP)
|
|
|
|
if(OpenMP_C_FOUND)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
|
|
|
|
endif()
|
|
|
|
if(OpenMP_CXX_FOUND)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
|
|
|
|
endif()
|
2022-09-13 11:27:41 +08:00
|
|
|
#Protobuf
|
|
|
|
if(USE_PROTOBUF)
|
|
|
|
add_definitions(-D TENSOR_PROTOBUF)
|
|
|
|
find_package(Protobuf REQUIRED)
|
|
|
|
message(STATUS "protobuf include: " ${PROTOBUF_INCLUDE_DIRS})
|
|
|
|
message(STATUS "protobuf libraries: " ${PROTOBUF_LIBRARIES})
|
|
|
|
message(STATUS "protoc executable: " ${PROTOBUF_PROTOC_EXECUTABLE})
|
|
|
|
include_directories(${PROTOBUF_INCLUDE_DIR})
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set(PROTO_PATH "${CMAKE_CURRENT_SOURCE_DIR}/proto")
|
|
|
|
file(GLOB PROTO_FILES "${PROTO_PATH}/data.proto")
|
|
|
|
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROTO_FILES})
|
|
|
|
message(${PROTO_SRCS} "-----------" ${PROTO_FILES})
|
|
|
|
message(${PROTO_HDRS} "-----------" ${PROTO_FILES})
|
|
|
|
add_library(tensor_proto SHARED ${PROTO_SRCS} ${PROTO_HDRS})
|
|
|
|
target_link_libraries(tensor_proto PUBLIC ${PROTOBUF_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
2022-07-31 21:43:26 +08:00
|
|
|
|
|
|
|
include_directories(include)
|
2022-08-08 16:02:07 +08:00
|
|
|
|
|
|
|
# # Pybind11
|
|
|
|
# add_subdirectory(3rd-party/pybind11)
|
2022-07-31 21:43:26 +08:00
|
|
|
# include_directories(3rd-party/pybind11/include)
|
2022-08-08 16:02:07 +08:00
|
|
|
|
|
|
|
# nlohmann_json
|
|
|
|
add_subdirectory(3rd-party/nlohmann_json_cmake_fetchcontent)
|
|
|
|
include_directories(3rd-party/nlohmann_json_cmake_fetchcontent/single_include)
|
2022-07-31 21:43:26 +08:00
|
|
|
|
|
|
|
if(BUILD_TEST)
|
2022-08-08 16:02:07 +08:00
|
|
|
set(BUILD_GMOCK
|
|
|
|
OFF
|
|
|
|
CACHE BOOL "Do not build gmock" FORCE)
|
|
|
|
set(INSTALL_GTEST
|
|
|
|
OFF
|
|
|
|
CACHE BOOL "Do not install gtest" FORCE)
|
2022-07-31 21:43:26 +08:00
|
|
|
add_subdirectory(3rd-party/googletest)
|
|
|
|
include_directories(3rd-party/googletest/googletest/include)
|
|
|
|
endif()
|
|
|
|
|
2022-09-21 12:28:00 +08:00
|
|
|
# Source files
|
|
|
|
file(GLOB_RECURSE SRC src/core/*.cc src/kernels/cpu/*.cc src/nnet/*.cc src/operators/*.cc src/utils/*.cc)
|
2022-07-31 21:43:26 +08:00
|
|
|
|
2022-09-21 12:28:00 +08:00
|
|
|
if(USE_CUDA)
|
|
|
|
file(GLOB_RECURSE SRC_CUDA src/cuda/*.cc src/cuda/*.cu src/kernels/cuda/*.cc src/kernels/cuda/*.cu)
|
|
|
|
list (APPEND SRC ${SRC_CUDA})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Libraries
|
2022-07-31 21:43:26 +08:00
|
|
|
add_library(InfiniTensor SHARED ${SRC})
|
2022-09-13 11:27:41 +08:00
|
|
|
if(USE_PROTOBUF)
|
|
|
|
target_link_libraries(InfiniTensor tensor_proto)
|
|
|
|
endif()
|
2022-08-22 15:01:03 +08:00
|
|
|
|
2022-09-01 20:30:12 +08:00
|
|
|
if(USE_BACKTRACE)
|
|
|
|
add_definitions(-D BACKWARD_TRACE)
|
|
|
|
add_subdirectory(3rd-party/backward-cpp)
|
|
|
|
include_directories(3rd-party/backward-cpp)
|
|
|
|
add_backward(InfiniTensor)
|
|
|
|
target_link_libraries(InfiniTensor dw)
|
|
|
|
endif()
|
|
|
|
|
2022-08-22 15:01:03 +08:00
|
|
|
if(USE_CUDA)
|
2022-09-08 21:31:35 +08:00
|
|
|
# Since enable_language only executes once, rerun cmake is required if CMAKE_CUDA_HOST_COMPILER is wrong
|
|
|
|
set(CMAKE_CUDA_HOST_COMPILER
|
|
|
|
${CMAKE_CXX_COMPILER}
|
|
|
|
CACHE STRING "Set cuda host compiler path")
|
2022-09-21 12:28:00 +08:00
|
|
|
# CMP0104 requires CUDA_ARCHITECTURES
|
|
|
|
set_target_properties(InfiniTensor PROPERTIES CUDA_ARCHITECTURES "70;80")
|
2022-08-22 15:01:03 +08:00
|
|
|
enable_language(CUDA)
|
2022-09-08 21:31:35 +08:00
|
|
|
# TODO: find_package seems unnecessary for CMake >= 3.8
|
2022-08-22 15:01:03 +08:00
|
|
|
find_package(CUDA REQUIRED)
|
|
|
|
# message("CUBLAS_LIBRARIES: ${CUDA_LIBRARIES}")
|
|
|
|
target_link_libraries(InfiniTensor cudnn curand cublas ${CUDA_LIBRARIES})
|
|
|
|
endif()
|
2022-07-31 21:43:26 +08:00
|
|
|
|
|
|
|
# # Python bindings
|
|
|
|
# pybind11_add_module(infini MODULE ${FFI})
|
|
|
|
# target_link_libraries(infini PRIVATE infini_cpp)
|
|
|
|
|
2022-08-08 16:02:07 +08:00
|
|
|
function(build_test files)
|
|
|
|
# Non-recursive glob for skip failed tests
|
|
|
|
file(GLOB TEST_SOURCES ${files})
|
2022-07-31 21:43:26 +08:00
|
|
|
foreach(testsourcefile ${TEST_SOURCES})
|
|
|
|
get_filename_component(testname ${testsourcefile} NAME_WE)
|
|
|
|
add_executable(${testname} ${testsourcefile})
|
2022-08-08 16:02:07 +08:00
|
|
|
target_link_libraries(${testname} InfiniTensor GTest::gtest_main)
|
2022-07-31 21:43:26 +08:00
|
|
|
add_test(NAME ${testname} COMMAND ${testname})
|
|
|
|
endforeach(testsourcefile ${TEST_SOURCES})
|
2022-08-08 16:02:07 +08:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
if(BUILD_TEST)
|
|
|
|
enable_testing()
|
2022-09-01 20:30:12 +08:00
|
|
|
if(USE_TRACE)
|
|
|
|
build_test(test/trace/*.cc)
|
|
|
|
endif()
|
2022-08-08 16:02:07 +08:00
|
|
|
if(BUILD_TEST_CORE)
|
|
|
|
build_test(test/core/*.cc)
|
2022-08-17 14:16:01 +08:00
|
|
|
build_test(test/operators/*.cc)
|
2022-09-21 12:28:00 +08:00
|
|
|
if (USE_CUDA)
|
|
|
|
build_test(test/kernels/cuda/*.cc)
|
|
|
|
endif()
|
2022-08-08 16:02:07 +08:00
|
|
|
endif()
|
|
|
|
if(BUILD_TEST_PET)
|
|
|
|
build_test(test/pet/*.cc)
|
|
|
|
endif()
|
|
|
|
if(BUILD_TEST_EINNET)
|
2022-09-13 15:17:22 +08:00
|
|
|
build_test(test/nnet/test_*.cc)
|
2022-08-08 16:02:07 +08:00
|
|
|
endif()
|
2022-07-31 21:43:26 +08:00
|
|
|
endif()
|