File tree 5 files changed +16
-14
lines changed
5 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -203,10 +203,10 @@ commands:
203
203
default : " 8.8.0.121"
204
204
trt-version-short :
205
205
type : string
206
- default : " 8.6.0 "
206
+ default : " 8.6.1 "
207
207
trt-version-long :
208
208
type : string
209
- default : " 8.6.0.12 -1"
209
+ default : " 8.6.1.6 -1"
210
210
bazel-version :
211
211
type : string
212
212
default : " 5.2.0"
@@ -249,7 +249,7 @@ commands:
249
249
parameters :
250
250
trt-version-long :
251
251
type : string
252
- default : " 8.6.0 "
252
+ default : " 8.6.1 "
253
253
cudnn-version-long :
254
254
type : string
255
255
default : " 8.8.0.121"
@@ -567,10 +567,10 @@ commands:
567
567
- run :
568
568
name : Run FX converter tests
569
569
command : |
570
+ set -e
570
571
cd py/torch_tensorrt/fx/test
571
- pushd converters/acc_op/
572
- pytest --junitxml=/tmp/artifacts/test_results/fx/converters/acc_op/test_results.xml
573
- popd
572
+ TESTS_TO_RUN=$(circleci tests glob "converters/acc_op/test_*.py" | circleci tests split --split-by=timings)
573
+ pytest --junitxml=/tmp/artifacts/test_results/fx/converters/acc_op/test_results.xml $TESTS_TO_RUN
574
574
575
575
- store_test_results :
576
576
path : /tmp/artifacts
@@ -954,6 +954,7 @@ jobs:
954
954
type : string
955
955
python-version :
956
956
type : string
957
+ parallelism : 4
957
958
machine :
958
959
image : linux-cuda-11:2023.02.1
959
960
resource_class : gpu.nvidia.large
@@ -989,6 +990,7 @@ jobs:
989
990
type : string
990
991
python-version :
991
992
type : string
993
+ parallelism : 4
992
994
machine :
993
995
image : linux-cuda-11:2023.02.1
994
996
resource_class : gpu.nvidia.large
@@ -1374,10 +1376,10 @@ parameters:
1374
1376
default : " 8.8.0.121"
1375
1377
trt-version-short :
1376
1378
type : string
1377
- default : " 8.6.0 "
1379
+ default : " 8.6.1 "
1378
1380
trt-version-long :
1379
1381
type : string
1380
- default : " 8.6.0 "
1382
+ default : " 8.6.1 "
1381
1383
1382
1384
# Jetson platform config
1383
1385
torch-jetson-build :
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ These are the following dependencies used to verify the testcases. Torch-TensorR
119
119
- Libtorch 2.1.0.dev20230419 (built with CUDA 11.8)
120
120
- CUDA 11.8
121
121
- cuDNN 8.8.0
122
- - TensorRT 8.6.0
122
+ - TensorRT 8.6.1
123
123
124
124
## Prebuilt Binaries and Wheel files
125
125
Original file line number Diff line number Diff line change @@ -81,10 +81,10 @@ http_archive(
81
81
http_archive (
82
82
name = "tensorrt" ,
83
83
build_file = "@//third_party/tensorrt/archive:BUILD" ,
84
- sha256 = "c1732a1093c57ab79fa0b687f061be369e449c9c17792b660f3663ecd8fa7b63 " ,
85
- strip_prefix = "TensorRT-8.6.0.12 " ,
84
+ sha256 = "15bfe6053d45feec45ecc7123a9106076b0b43fa0435f242d89dca0778337759 " ,
85
+ strip_prefix = "TensorRT-8.6.1.6 " ,
86
86
urls = [
87
- "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/secure/8.6.0 /tars/TensorRT-8.6.0.12 .Linux.x86_64-gnu.cuda-11.8.tar.gz" ,
87
+ "https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/secure/8.6.1 /tars/TensorRT-8.6.1.6 .Linux.x86_64-gnu.cuda-11.8.tar.gz" ,
88
88
],
89
89
)
90
90
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ pybind11==2.6.2
5
5
torch == 2.1.0.dev20230419+cu118
6
6
torchvision == 0.16.0.dev20230419+cu118
7
7
--extra-index-url https://pypi.ngc.nvidia.com
8
- tensorrt == 8.6.0
8
+ tensorrt == 8.6.1
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ FX2TRT is merged as FX module in Torch-TensorRT
12
12
$ conda install pytorch torchvision torchtext cudatoolkit=11.8 -c pytorch-nightly
13
13
# Install TensorRT python package
14
14
$ pip3 install nvidia-pyindex
15
- $ pip3 install tensorrt==8.6.0
15
+ $ pip3 install tensorrt==8.6.1
16
16
$ git clone https://github.com/pytorch/TensorRT.git
17
17
$ cd TensorRT/py && python setup.py install --fx-only && cd ..
18
18
$ python -c "import torch_tensorrt.fx"
You can’t perform that action at this time.
0 commit comments