forked from Tencent/Forward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
435 lines (370 loc) · 15.5 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# Copyright (C) 2021 THL A29 Limited, a Tencent company. 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.
#
# ╔════════════════════════════════════════════════════════════════════════════════════════╗
# ║──█████████╗───███████╗───████████╗───██╗──────██╗───███████╗───████████╗───████████╗───║
# ║──██╔══════╝──██╔════██╗──██╔════██╗──██║──────██║──██╔════██╗──██╔════██╗──██╔════██╗──║
# ║──████████╗───██║────██║──████████╔╝──██║──█╗──██║──█████████║──████████╔╝──██║────██║──║
# ║──██╔═════╝───██║────██║──██╔════██╗──██║█████╗██║──██╔════██║──██╔════██╗──██║────██║──║
# ║──██║─────────╚███████╔╝──██║────██║──╚████╔████╔╝──██║────██║──██║────██║──████████╔╝──║
# ║──╚═╝──────────╚══════╝───╚═╝────╚═╝───╚═══╝╚═══╝───╚═╝────╚═╝──╚═╝────╚═╝──╚═══════╝───║
# ╚════════════════════════════════════════════════════════════════════════════════════════╝
#
cmake_minimum_required(VERSION 3.12.2 FATAL_ERROR)
project(Forward LANGUAGES C CXX CUDA)
if(POLICY CMP0074)
cmake_policy(SET CMP0074 OLD)
endif()
if(NOT DEFINED CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE
Release
CACHE STRING "Build type")
endif()
set(CMAKE_CXX_STANDARD 11)
include(CMakeDependentOption)
# Enable Torch
option(ENABLE_TORCH "Enable Torch" OFF)
# Enable TensorFlow
option(ENABLE_TENSORFLOW "Enable TensorFlow" OFF)
# Enable Keras
option(ENABLE_KERAS "Enable Keras" OFF)
# Enable ONNX
option(ENABLE_ONNX "Enable ONNX" OFF)
# Enable profiling
option(ENABLE_PROFILING "Enable profiling" OFF)
# Enable dynamic batch size
option(ENABLE_DYNAMIC_BATCH "Enable dynamic batch size" OFF)
# Enable RNN models forward
option(ENABLE_RNN "Enable RNN models forward" OFF)
# Build Python Lib
option(BUILD_PYTHON_LIB "Build Python Lib" OFF)
# Enable Inference Tests (need OpenCV)
option(ENABLE_INFER_TESTS "Enable Inference Tests" OFF)
# Enable unit tests
option(ENABLE_UNIT_TESTS "Enable unit tests" OFF)
# Beta Test Function: Enalbe Torch SubModule Plugin, 'OFF' as default
# This plugin can support more Torch-Op with TorchSubmodule, but not guarantee the performance of those ops.
# Warning: This plugin makes libtrt_engine.so require Torch-Libraries as dependencies.
option(ENABLE_TORCH_PLUGIN "Enable Torch Plugin" OFF)
if (ENABLE_TORCH_PLUGIN)
message(WARNING "ENABLE_TORCH_PLUGIN=ON, TORCH_PLUGIN NOT SUPPORT dynamic batch.")
set(ENABLE_DYNAMIC_BATCH OFF)
endif()
# Enable TensorRT
set(ENABLE_TENSORRT ON)
# Build shared libraries
if (MSVC)
set(BUILD_SHARED_LIBS OFF)
else()
set(BUILD_SHARED_LIBS ON)
endif()
# Use folders
if(MSVC)
set(USE_FOLDERS ON)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
endif(MSVC)
# Special setting for PyTorch
if (BUILD_PYTHON_LIB AND ENABLE_TORCH)
if (MSVC)
message(FATAL_ERROR "BUILD_PYTHON_LIB=ON is NOT SUPPORTED for Torch on WINDOWS platform.")
endif()
# _GLIBCXX_USE_CXX11_ABI=0 used only for PyTorch or ONNX
add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0)
message(WARNING "_GLIBCXX_USE_CXX11_ABI=0 is set for PyTorch libraries. Check dependencies for this flag.")
endif()
# Special setting for ONNX
if (BUILD_PYTHON_LIB AND ENABLE_ONNX)
if (MSVC)
message(FATAL_ERROR "BUILD_PYTHON_LIB=ON is NOT SUPPORTED for ONNX on WINDOWS platform.")
endif()
# _GLIBCXX_USE_CXX11_ABI=0 used only for PyTorch or ONNX
add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0)
message(WARNING "_GLIBCXX_USE_CXX11_ABI=0 is set for ONNX libraries. Check dependencies for this flag.")
endif()
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
# CMake path
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
list(APPEND CMAKE_PREFIX_PATH "${PROJECT_SOURCE_DIR}/cmake")
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS ON)
set(CMAKE_CUDA_STANDARD 11)
set(CMAKE_CUDA_STANDARD_REQUIRED ON)
set(CMAKE_CUDA_EXTENSIONS ON)
# Cuda
find_package(CUDA REQUIRED)
if (${CUDA_VERSION_MAJOR} LESS 10)
message(FATAL_ERROR "Forward requires CUDA_VERSION_MAJOR >= 10, but the given is ${CUDA_VERSION_MAJOR}")
endif()
include_directories(${CUDA_INCLUDE_DIRS})
set(CMAKE_CUDA_FLAGS
"${CMAKE_CUDA_FLAGS} \
-use_fast_math \
-Xfatbin \
-compress-all \
-Xcompiler=-Wno-deprecated-declarations \
")
# GPU_ARCHS
set(GPU_ARCHS
"60;61;70;75"
CACHE STRING "GPU SM")
foreach(arch ${GPU_ARCHS})
set(CUDA_NVCC_FLAGS
"${CUDA_NVCC_FLAGS} -gencode arch=compute_${arch},code=sm_${arch}")
endforeach()
list(GET GPU_ARCHS -1 ptx)
set(CUDA_NVCC_FLAGS
"${CUDA_NVCC_FLAGS} -gencode arch=compute_${ptx},code=compute_${ptx}")
message(STATUS "CUDA_NVCC_FLAGS: " ${CUDA_NVCC_FLAGS})
# Enable compiler warnings
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /WX-")
else()
# add_compile_options(-std=c++11)
set(CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations -fPIC -std=c++11 -O3")
set(CUDA_NVCC_FLAGS
"${CUDA_NVCC_FLAGS} -std=c++11 -Wno-deprecated-declarations -Xcompiler -fPIC -O3"
CACHE STRING "cuda flags")
endif()
# support RNN models
if(ENABLE_RNN)
add_definitions(-DSUPPORT_RNN=1)
endif(ENABLE_RNN)
# Dynamic Batch
if(ENABLE_DYNAMIC_BATCH)
add_definitions(-DUSE_DYNAMIC_BATCH=1)
endif()
# easylogging
add_definitions(-DELPP_THREAD_SAFE=1)
include_directories(${PROJECT_SOURCE_DIR}/source/third_party/easyloggingpp)
# Profiling
if(ENABLE_PROFILING)
add_definitions(-DTRT_INFER_ENABLE_PROFILING=1)
else()
add_definitions(-DTRT_INFER_ENABLE_PROFILING=0)
endif() # ENABLE_PROFILING
# simple-utils
include_directories(${PROJECT_SOURCE_DIR}/source/third_party/simple-utils)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/third_party/simple-utils)
set_target_properties(simple-utils PROPERTIES FOLDER third_party)
# Cub-1.8.0
if (${CUDA_VERSION_MAJOR} LESS 11)
message(STATUS "CUDA_VERSION_MAJOR < 11, Use cub-1.8.0 in the third_party.")
include_directories(${PROJECT_SOURCE_DIR}/source/third_party/cub-1.8.0)
endif()
# json
add_subdirectory(${PROJECT_SOURCE_DIR}/source/third_party/json)
include_directories(${PROJECT_SOURCE_DIR}/source/third_party/json/single_include)
# TensorRT
find_package(TensorRT)
if(NOT TensorRT_FOUND) # use sources
message(
FATAL_ERROR
"Can NOT find TensorRT, you may set TensorRT root via TensorRT_ROOT.
like -DTensorRT_ROOT=D:/Libs/TensorRT-6.0.1.5/")
endif()
include_directories(${TensorRT_INCLUDE_DIRS})
if(MSVC)
configure_file(${TensorRT_ROOT}/lib/nvinfer.dll
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/nvinfer.dll COPYONLY)
configure_file(${TensorRT_ROOT}/lib/nvinfer_plugin.dll
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/nvinfer_plugin.dll COPYONLY)
configure_file(${TensorRT_ROOT}/lib/myelin64_1.dll
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/myelin64_1.dll COPYONLY)
endif(MSVC)
# common
include_directories(${PROJECT_SOURCE_DIR}/source)
# Torch
if(ENABLE_TORCH)
if(BUILD_PYTHON_LIB)
if(NOT PYTHON_EXECUTABLE)
message(STATUS "Do not detected PYTHON_EXECUTABLE, set it to python3")
set(PYTHON_EXECUTABLE python3)
endif(NOT PYTHON_EXECUTABLE)
execute_process(
COMMAND
${PYTHON_EXECUTABLE} -c
"import torch; import os; print(os.path.dirname(torch.__file__), end='')"
OUTPUT_VARIABLE TorchPath)
list(APPEND CMAKE_PREFIX_PATH ${TorchPath})
else()
list(APPEND CMAKE_PREFIX_PATH ${TORCH_CMAKE_PATH})
endif()
# Set TORCH_CUDA_ARCH_LIST for Windows
# set(TORCH_CUDA_ARCH_LIST 6.0 6.1 7.0 7.5)
foreach(arch ${GPU_ARCHS})
string(SUBSTRING ${arch} 0 1 major)
string(SUBSTRING ${arch} 1 1 minor)
list(APPEND TORCH_CUDA_ARCH_LIST ${major}.${minor})
endforeach()
find_package(Torch)
if(NOT TORCH_FOUND)
message(
FATAL_ERROR
"Please set libtorch/share/cmake/ path to TORCH_CMAKE_PATH,
like -DTORCH_CMAKE_PATH=D:/libtorch/share/cmake/Torch
or -DTORCH_CMAKE_PATH=/usr/local/share/cmake")
endif()
if(MSVC)
configure_file(${TORCH_INSTALL_PREFIX}/lib/torch.dll
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/torch.dll COPYONLY)
configure_file(${TORCH_INSTALL_PREFIX}/lib/c10.dll
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/c10.dll COPYONLY)
endif(MSVC)
message(STATUS "Find Torch VERSION: ${Torch_VERSION}")
if (${Torch_VERSION} VERSION_LESS "1.7.0")
message(FATAL_ERROR "Forward requires TORCH_VERSION >= 1.7.0, but the given is ${Torch_VERSION}")
endif()
add_definitions(-DTORCH_VERSION_MAJOR=${Torch_VERSION_MAJOR})
add_definitions(-DTORCH_VERSION_MINOR=${Torch_VERSION_MINOR})
add_definitions(-DTORCH_VERSION_PATCH=${Torch_VERSION_PATCH})
set(CMAKE_CXX_STANDARD 14)
include_directories(${TORCH_INCLUDE_DIRS})
add_definitions(-DENABLE_TORCH=1)
if (ENABLE_TORCH_PLUGIN)
add_definitions(-DENABLE_TORCH_PLUGIN=1)
endif()
if (TORCH_CUDA_LIBRARIES)
message(STATUS "TORCH_HAS_CUDA, TORCH_CUDA_LIBRARIES = ${TORCH_CUDA_LIBRARIES}")
add_definitions(-DTORCH_HAS_CUDA=1)
endif()
endif() # ENABLE_TORCH
# TensorFlow
if(ENABLE_TENSORFLOW)
set(TENSORFLOW_LIB_DIR "${PROJECT_SOURCE_DIR}/source/third_party/tensorflow")
if(MSVC)
# add_compile_options(/W4 /WX) if(NOT CMAKE_CXX_COMPILER_VERSION
# VERSION_LESS 19.11) add_compile_options(/permissive-) endif()
configure_file(${TENSORFLOW_LIB_DIR}/lib/tensorflow.dll
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/tensorflow.dll COPYONLY)
endif()
include_directories(${TENSORFLOW_LIB_DIR}/include)
message("LINK_DIR = ${PROJECT_SOURCE_DIR}/source/third_party/tensorflow/lib")
link_directories(${PROJECT_SOURCE_DIR}/source/third_party/tensorflow/lib)
include_directories(${TENSORFLOW_LIB_DIR}/include)
add_definitions(-DENABLE_TENSORFLOW=1)
if (BUILD_PYTHON_LIB)
if(NOT PYTHON_EXECUTABLE)
message(STATUS "Do not detected PYTHON_EXECUTABLE, set it to python3")
set(PYTHON_EXECUTABLE python3)
endif(NOT PYTHON_EXECUTABLE)
# tensorflow == 1.15
execute_process(
COMMAND
${PYTHON_EXECUTABLE} -c
"import tensorflow; import os; print(os.path.dirname(tensorflow.pywrap_tensorflow.__file__), end='')"
OUTPUT_VARIABLE TF_PYLIB_DIR)
# tensorflow >= 2.0
execute_process(
COMMAND
${PYTHON_EXECUTABLE} -c
"import tensorflow; import os; print(os.path.dirname(tensorflow.python.pywrap_tensorflow.__file__), end='')"
OUTPUT_VARIABLE TF2_PYLIB_DIR)
message(STATUS "TF_PYLIB_DIR = ${TF_PYLIB_DIR} ${TF2_PYLIB_DIR}")
find_library(PY_TENSORFLOW_LIB NAMES _pywrap_tensorflow_internal.so PATHS "${TF_PYLIB_DIR}" "${TF2_PYLIB_DIR}")
if (NOT PY_TENSORFLOW_LIB)
message(WARNING "_pywrap_tensorflow_internal.so NOT-FOUND in the python-packages! Use libtensorflow.so under the source/third_party/tensorflow/lib. In this case, 'import forward' cannot be used with 'import tensorflow' in the same time.")
set(PY_TENSORFLOW_LIB tensorflow)
endif()
endif()
endif()
# Keras
if(ENABLE_KERAS)
if(ENABLE_UNIT_TESTS AND NOT ENABLE_TENSORFLOW)
message(FATAL_ERROR "Unit test Keras must ENABLE_TENSORFLOW")
endif()
# hdf5
# find_package(HDF5)
if (HDF5_FOUND)
message("Found HDF5 on system HDF5_INCLUDE_DIRS: " ${HDF5_INCLUDE_DIRS})
include_directories(${HDF5_INCLUDE_DIRS})
else()
message("Use HDF5 on third_party: ${PROJECT_SOURCE_DIR}/source/third_party/hdf5")
include_directories(${PROJECT_SOURCE_DIR}/source/third_party/hdf5/src)
include_directories(${PROJECT_SOURCE_DIR}/source/third_party/hdf5/include)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/third_party/hdf5)
endif()
include_directories(${TENSORFLOW_LIB_DIR}/include)
add_definitions(-DENABLE_KERAS=1)
endif(ENABLE_KERAS)
# ONNX
if(ENABLE_ONNX)
if(BUILD_PYTHON_LIB)
if(NOT PYTHON_EXECUTABLE)
message(STATUS "Do not detected PYTHON_EXECUTABLE, set it to python3")
set(PYTHON_EXECUTABLE python3)
endif()
endif()
if(ENABLE_UNIT_TESTS AND NOT ENABLE_TORCH)
message(FATAL_ERROR "Unit test ONNX must ENABLE_TORCH")
endif()
add_definitions(-DENABLE_ONNX=1)
endif(ENABLE_ONNX)
# trt_engine
if(ENABLE_TENSORRT)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/trt_engine)
endif(ENABLE_TENSORRT)
# fwd_torch
if (ENABLE_TORCH)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/fwd_torch)
endif(ENABLE_TORCH)
# fwd_tf
if (ENABLE_TENSORFLOW)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/fwd_tf)
endif(ENABLE_TENSORFLOW)
# fwd_keras
if (ENABLE_KERAS)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/fwd_keras)
endif(ENABLE_KERAS)
# fwd_onnx
if (ENABLE_ONNX)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/fwd_onnx)
endif(ENABLE_ONNX)
# build python lib
if(BUILD_PYTHON_LIB)
# pybind11
add_subdirectory(${PROJECT_SOURCE_DIR}/source/third_party/pybind11)
# if(USE_FOLDERS) set_target_properties (pybind11 PROPERTIES FOLDER
# third_party) endif()
# pyinfer
add_subdirectory(${PROJECT_SOURCE_DIR}/source/py_fwd)
endif()
# fwd test
if(ENABLE_INFER_TESTS)
# OpenCV
list(APPEND CMAKE_PREFIX_PATH ${OPENCV_CMAKE_PATH})
find_package(OpenCV)
if(NOT OpenCV_FOUND)
message(
FATAL_ERROR
"Please set OpenCV cmake path to OPENCV_CMAKE_PATH,
like -DOPENCV_CMAKE_PATH=D:/opencv/build
or -DOPENCV_CMAKE_PATH=/usr/local/share/OpenCV")
endif()
include_directories(${OpenCV_INCLUDE_DIRS})
# infer test
add_subdirectory(${PROJECT_SOURCE_DIR}/source/test_fwd)
endif(ENABLE_INFER_TESTS)
# unit tests
if(ENABLE_UNIT_TESTS)
# gtest
include_directories(
${PROJECT_SOURCE_DIR}/source/third_party/googletest/include)
add_subdirectory(${PROJECT_SOURCE_DIR}/source/third_party/googletest)
set_target_properties(gtest PROPERTIES FOLDER third_party)
set_target_properties(gtest_main PROPERTIES FOLDER third_party)
# unit_test
add_subdirectory(${PROJECT_SOURCE_DIR}/source/unit_test)
endif()