Restrict TRT autoinstall to Linux-only (#7549)

May partially resolve concerns in https://github.com/ultralytics/yolov5/pull/7537#discussion_r856843711
This commit is contained in:
Glenn Jocher 2022-04-23 09:36:36 -07:00 committed by GitHub
parent 404b4fefbe
commit 1f1ec1c3e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -218,6 +218,7 @@ def export_engine(model, im, file, train, half, simplify, workspace=4, verbose=F
# YOLOv5 TensorRT export https://developer.nvidia.com/tensorrt
try:
assert im.device.type != 'cpu', 'export running on CPU but must be on GPU, i.e. `python export.py --device 0`'
if platform.system() == 'Linux':
check_requirements(('nvidia-tensorrt',), cmds=('-U --index-url https://pypi.ngc.nvidia.com',))
import tensorrt as trt