forked from pytorch/TensorRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
236 lines (189 loc) · 7.4 KB
/
setup.py
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
import os
import sys
import glob
import setuptools
from setuptools import setup, Extension, find_packages
from setuptools.command.build_ext import build_ext
from setuptools.command.develop import develop
from setuptools.command.install import install
from distutils.cmd import Command
from wheel.bdist_wheel import bdist_wheel
from torch.utils import cpp_extension
from shutil import copyfile, rmtree
import subprocess
dir_path = os.path.dirname(os.path.realpath(__file__))
__version__ = '0.2.0a0'
CXX11_ABI = False
if "--use-cxx11-abi" in sys.argv:
sys.argv.remove("--use-cxx11-abi")
CXX11_ABI = True
def which(program):
import os
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
fpath, fname = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
for path in os.environ["PATH"].split(os.pathsep):
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
return None
BAZEL_EXE = which("bazel")
def build_libtrtorch_pre_cxx11_abi(develop=True, use_dist_dir=True, cxx11_abi=False):
cmd = [BAZEL_EXE, "build"]
cmd.append("//cpp/api/lib:libtrtorch.so")
if develop:
cmd.append("--compilation_mode=dbg")
else:
cmd.append("--compilation_mode=opt")
if use_dist_dir:
cmd.append("--distdir=third_party/dist_dir/x86_64-linux-gnu")
if not cxx11_abi:
cmd.append("--config=python")
else:
print("using CXX11 ABI build")
print("building libtrtorch")
status_code = subprocess.run(cmd).returncode
if status_code != 0:
sys.exit(status_code)
def gen_version_file():
if not os.path.exists(dir_path + '/trtorch/_version.py'):
os.mknod(dir_path + '/trtorch/_version.py')
with open(dir_path + '/trtorch/_version.py', 'w') as f:
print("creating version file")
f.write("__version__ = \"" + __version__ + '\"')
def copy_libtrtorch(multilinux=False):
if not os.path.exists(dir_path + '/trtorch/lib'):
os.makedirs(dir_path + '/trtorch/lib')
print("copying library into module")
if multilinux:
copyfile(dir_path + "/build/libtrtorch_build/libtrtorch.so", dir_path + '/trtorch/lib/libtrtorch.so')
else:
copyfile(dir_path + "/../bazel-bin/cpp/api/lib/libtrtorch.so", dir_path + '/trtorch/lib/libtrtorch.so')
class DevelopCommand(develop):
description = "Builds the package and symlinks it into the PYTHONPATH"
def initialize_options(self):
develop.initialize_options(self)
def finalize_options(self):
develop.finalize_options(self)
def run(self):
global CXX11_ABI
build_libtrtorch_pre_cxx11_abi(develop=True, cxx11_abi=CXX11_ABI)
gen_version_file()
copy_libtrtorch()
develop.run(self)
class InstallCommand(install):
description = "Builds the package"
def initialize_options(self):
install.initialize_options(self)
def finalize_options(self):
install.finalize_options(self)
def run(self):
global CXX11_ABI
build_libtrtorch_pre_cxx11_abi(develop=False, cxx11_abi=CXX11_ABI)
gen_version_file()
copy_libtrtorch()
install.run(self)
class BdistCommand(bdist_wheel):
description = "Builds the package"
def initialize_options(self):
bdist_wheel.initialize_options(self)
def finalize_options(self):
bdist_wheel.finalize_options(self)
def run(self):
global CXX11_ABI
build_libtrtorch_pre_cxx11_abi(develop=False, cxx11_abi=CXX11_ABI)
gen_version_file()
copy_libtrtorch()
bdist_wheel.run(self)
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
PY_CLEAN_FILES = [
'./build', './dist', './trtorch/__pycache__', './trtorch/lib', './*.pyc', './*.tgz', './*.egg-info'
]
description = "Command to tidy up the project root"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
for path_spec in self.PY_CLEAN_FILES:
# Make paths absolute and relative to this path
abs_paths = glob.glob(os.path.normpath(os.path.join(dir_path, path_spec)))
for path in [str(p) for p in abs_paths]:
if not path.startswith(dir_path):
# Die if path in CLEAN_FILES is absolute + outside this directory
raise ValueError("%s is not a path inside %s" % (path, dir_path))
print('Removing %s' % os.path.relpath(path))
rmtree(path)
ext_modules = [
cpp_extension.CUDAExtension(
'trtorch._C', [
'trtorch/csrc/trtorch_py.cpp',
'trtorch/csrc/tensorrt_backend.cpp',
'trtorch/csrc/tensorrt_classes.cpp',
'trtorch/csrc/register_tensorrt_classes.cpp',
],
library_dirs=[(dir_path + '/trtorch/lib/'), "/opt/conda/lib/python3.6/config-3.6m-x86_64-linux-gnu"],
libraries=["trtorch"],
include_dirs=[
dir_path + "trtorch/csrc",
dir_path + "/../",
dir_path + "/../bazel-TRTorch/external/tensorrt/include",
],
extra_compile_args=[
"-Wno-deprecated",
"-Wno-deprecated-declarations",
] + (["-D_GLIBCXX_USE_CXX11_ABI=1"] if CXX11_ABI else ["-D_GLIBCXX_USE_CXX11_ABI=0"]),
extra_link_args=[
"-Wno-deprecated", "-Wno-deprecated-declarations", "-Wl,--no-as-needed", "-ltrtorch",
"-Wl,-rpath,$ORIGIN/lib", "-lpthread", "-ldl", "-lutil", "-lrt", "-lm", "-Xlinker", "-export-dynamic"
] + (["-D_GLIBCXX_USE_CXX11_ABI=1"] if CXX11_ABI else ["-D_GLIBCXX_USE_CXX11_ABI=0"]),
undef_macros=["NDEBUG"])
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='trtorch',
version=__version__,
author='NVIDIA',
author_email='[email protected]',
url='https://nvidia.github.io/TRTorch',
description='A compiler backend for PyTorch JIT targeting NVIDIA GPUs',
long_description_content_type='text/markdown',
long_description=long_description,
ext_modules=ext_modules,
install_requires=[
'torch==1.7.1',
],
setup_requires=[],
cmdclass={
'install': InstallCommand,
'clean': CleanCommand,
'develop': DevelopCommand,
'build_ext': cpp_extension.BuildExtension,
'bdist_wheel': BdistCommand,
},
zip_safe=False,
license="BSD",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta", "Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: BSD License", "Intended Audience :: Developers",
"Intended Audience :: Science/Research", "Operating System :: POSIX :: Linux", "Programming Language :: C++",
"Programming Language :: Python", "Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development", "Topic :: Software Development :: Libraries"
],
python_requires='>=3.6',
include_package_data=True,
package_data={
'trtorch': ['lib/*.so'],
},
exclude_package_data={
'': ['*.cpp', '*.h'],
'trtorch': ['csrc/*.cpp'],
})