forked from pytorch/TensorRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
439 lines (374 loc) · 13.5 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
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
436
437
438
439
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
FX_ONLY = False
RELEASE = False
CI_RELEASE = False
__version__ = "1.3.0a0"
__cuda_version__ = "11.6"
__cudnn_version__ = "8.4"
__tensorrt_version__ = "8.4"
def get_git_revision_short_hash() -> str:
return (
subprocess.check_output(["git", "rev-parse", "--short", "HEAD"])
.decode("ascii")
.strip()
)
if "--fx-only" in sys.argv:
FX_ONLY = True
sys.argv.remove("--fx-only")
if "--release" not in sys.argv:
__version__ = __version__ + "+" + get_git_revision_short_hash()
else:
RELEASE = True
sys.argv.remove("--release")
if "--ci" in sys.argv:
sys.argv.remove("--ci")
if RELEASE:
CI_RELEASE = True
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"
elif version == "5.0":
JETPACK_VERSION = "5.0"
if not JETPACK_VERSION:
warnings.warn(
"Assuming jetpack version to be 5.0, if not use the --jetpack-version option"
)
JETPACK_VERSION = "5.0"
if not CXX11_ABI:
warnings.warn(
"Jetson platform detected but did not see --use-cxx11-abi option, if using a pytorch distribution provided by NVIDIA include this flag"
)
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 = None
if not FX_ONLY:
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")
elif JETPACK_VERSION == "5.0":
cmd.append("--platforms=//toolchains:jetpack_5.0")
print("Jetpack version: 5.0")
if CI_RELEASE:
cmd.append("--platforms=//toolchains:ci_rhel_x86_64_linux")
print("CI based build")
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__ + '"\n')
f.write('__cuda_version__ = "' + __cuda_version__ + '"\n')
f.write('__cudnn_version__ = "' + __cudnn_version__ + '"\n')
f.write('__tensorrt_version__ = "' + __tensorrt_version__ + '"\n')
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):
if FX_ONLY:
gen_version_file()
develop.run(self)
else:
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):
if FX_ONLY:
gen_version_file()
install.run(self)
else:
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 + "/../bazel-TensorRT/external/tensorrt/include",
dir_path + "/../bazel-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"],
)
]
if FX_ONLY:
ext_modules = None
packages = [
"torch_tensorrt.fx",
"torch_tensorrt.fx.converters",
"torch_tensorrt.fx.passes",
"torch_tensorrt.fx.tools",
"torch_tensorrt.fx.tracer.acc_tracer",
]
package_dir = {
"torch_tensorrt.fx": "torch_tensorrt/fx",
"torch_tensorrt.fx.converters": "torch_tensorrt/fx/converters",
"torch_tensorrt.fx.passes": "torch_tensorrt/fx/passes",
"torch_tensorrt.fx.tools": "torch_tensorrt/fx/tools",
"torch_tensorrt.fx.tracer.acc_tracer": "torch_tensorrt/fx/tracer/acc_tracer",
}
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.12.0+cu113,<1.13.0",
],
setup_requires=[],
cmdclass={
"install": InstallCommand,
"clean": CleanCommand,
"develop": DevelopCommand,
"build_ext": cpp_extension.BuildExtension,
"bdist_wheel": BdistCommand,
},
zip_safe=False,
license="BSD",
packages=packages if FX_ONLY else find_packages(),
package_dir=package_dir if FX_ONLY else {},
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"],
},
)