-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
312 lines (256 loc) · 10.7 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
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
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
import platform
import warnings
dir_path = os.path.dirname(os.path.realpath(__file__))
CXX11_ABI = False
JETPACK_VERSION = None
__version__ = '1.1.0'
def get_git_revision_short_hash() -> str:
return subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode('ascii').strip()
if "--release" not in sys.argv:
__version__ = __version__ + "+" + get_git_revision_short_hash()
else:
sys.argv.remove("--release")
if "--use-cxx11-abi" in sys.argv:
sys.argv.remove("--use-cxx11-abi")
CXX11_ABI = True
if platform.uname().processor == "aarch64":
if "--jetpack-version" in sys.argv:
version_idx = sys.argv.index("--jetpack-version") + 1
version = sys.argv[version_idx]
sys.argv.remove(version)
sys.argv.remove("--jetpack-version")
if version == "4.5":
JETPACK_VERSION = "4.5"
elif version == "4.6":
JETPACK_VERSION = "4.6"
if not JETPACK_VERSION:
warnings.warn("Assuming jetpack version to be 4.6, if not use the --jetpack-version option")
JETPACK_VERSION = "4.6"
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("bazelisk")
if BAZEL_EXE is None:
BAZEL_EXE = which("bazel")
if BAZEL_EXE is None:
sys.exit("Could not find bazel in PATH")
def build_libtorchtrt_pre_cxx11_abi(develop=True, use_dist_dir=True, cxx11_abi=False):
cmd = [BAZEL_EXE, "build"]
cmd.append("//:libtorchtrt")
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")
if JETPACK_VERSION == "4.5":
cmd.append("--platforms=//toolchains:jetpack_4.5")
print("Jetpack version: 4.5")
elif JETPACK_VERSION == "4.6":
cmd.append("--platforms=//toolchains:jetpack_4.6")
print("Jetpack version: 4.6")
print("building libtorchtrt")
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 + '/torch_tensorrt/_version.py'):
os.mknod(dir_path + '/torch_tensorrt/_version.py')
with open(dir_path + '/torch_tensorrt/_version.py', 'w') as f:
print("creating version file")
f.write("__version__ = \"" + __version__ + '\"')
def copy_libtorchtrt(multilinux=False):
if not os.path.exists(dir_path + '/torch_tensorrt/lib'):
os.makedirs(dir_path + '/torch_tensorrt/lib')
print("copying library into module")
if multilinux:
copyfile(dir_path + "/build/libtrtorch_build/libtrtorch.so", dir_path + '/trtorch/lib/libtrtorch.so')
else:
os.system("tar -xzf ../bazel-bin/libtorchtrt.tar.gz --strip-components=2 -C " + dir_path + "/torch_tensorrt")
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_libtorchtrt_pre_cxx11_abi(develop=True, cxx11_abi=CXX11_ABI)
gen_version_file()
copy_libtorchtrt()
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_libtorchtrt_pre_cxx11_abi(develop=False, cxx11_abi=CXX11_ABI)
gen_version_file()
copy_libtorchtrt()
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_libtorchtrt_pre_cxx11_abi(develop=False, cxx11_abi=CXX11_ABI)
gen_version_file()
copy_libtorchtrt()
bdist_wheel.run(self)
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
PY_CLEAN_DIRS = [
'./build',
'./dist',
'./torch_tensorrt/__pycache__',
'./torch_tensorrt/lib',
'./torch_tensorrt/include',
'./torch_tensorrt/bin',
'./*.pyc',
'./*.tgz',
'./*.egg-info',
]
PY_CLEAN_FILES = [
'./torch_tensorrt/*.so', './torch_tensorrt/_version.py', './torch_tensorrt/BUILD', './torch_tensorrt/WORKSPACE',
'./torch_tensorrt/LICENSE'
]
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_DIRS:
# 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)
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))
os.remove(path)
ext_modules = [
cpp_extension.CUDAExtension(
'torch_tensorrt._C', [
'torch_tensorrt/csrc/torch_tensorrt_py.cpp',
'torch_tensorrt/csrc/tensorrt_backend.cpp',
'torch_tensorrt/csrc/tensorrt_classes.cpp',
'torch_tensorrt/csrc/register_tensorrt_classes.cpp',
],
library_dirs=[(dir_path + '/torch_tensorrt/lib/'), "/opt/conda/lib/python3.6/config-3.6m-x86_64-linux-gnu"],
libraries=["torchtrt"],
include_dirs=[
dir_path + "torch_tensorrt/csrc", dir_path + "torch_tensorrt/include",
dir_path + "/../bazel-TRTorch/external/tensorrt/include",
dir_path + "/../bazel-Torch-TensorRT/external/tensorrt/include", dir_path + "/../"
],
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", "-ltorchtrt",
"-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='torch_tensorrt',
version=__version__,
author='NVIDIA',
author_email='[email protected]',
url='https://nvidia.github.io/torch-tensorrt',
description=
'Torch-TensorRT is a package which allows users to automatically compile PyTorch and TorchScript modules to TensorRT while remaining in PyTorch',
long_description_content_type='text/markdown',
long_description=long_description,
ext_modules=ext_modules,
install_requires=[
'torch>=1.11.0+cu113<1.12.0',
],
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 :: 5 - Stable", "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={
'torch_tensorrt': [
'lib/*', 'include/torch_tensorrt/*.h', 'include/torch_tensorrt/core/*.h',
'include/torch_tensorrt/core/conversion/*.h', 'include/torch_tensorrt/core/conversion/conversionctx/*.h',
'include/torch_tensorrt/core/conversion/converters/*.h',
'include/torch_tensorrt/core/conversion/evaluators/*.h',
'include/torch_tensorrt/core/conversion/tensorcontainer/*.h',
'include/torch_tensorrt/core/conversion/var/*.h', 'include/torch_tensorrt/core/ir/*.h',
'include/torch_tensorrt/core/lowering/*.h', 'include/torch_tensorrt/core/lowering/passes/*.h',
'include/torch_tensorrt/core/partitioning/*.h', 'include/torch_tensorrt/core/plugins/*.h',
'include/torch_tensorrt/core/plugins/impl/*.h', 'include/torch_tensorrt/core/runtime/*.h',
'include/torch_tensorrt/core/util/*.h', 'include/torch_tensorrt/core/util/logging/*.h', 'bin/*', 'BUILD',
'WORKSPACE'
],
},
exclude_package_data={
'': ['*.cpp'],
'torch_tensorrt': ['csrc/*.cpp'],
})