Skip to content

Commit f4b9259

Browse files
authored
Add tensorrt promo script, bump release version for 2.2.1 (#1706)
1 parent 5c814e2 commit f4b9259

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

release/promote.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
66
source "${DIR}/release_versions.sh"
77

88
# Make sure to update these versions when doing a release first
9-
PYTORCH_VERSION=${PYTORCH_VERSION:-2.1.1}
10-
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.16.1}
11-
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.1.1}
12-
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.16.1}
9+
PYTORCH_VERSION=${PYTORCH_VERSION:-2.2.1}
10+
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.17.1}
11+
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.1}
12+
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.1}
1313
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.1}
1414
TORCHREC_VERSION=${TORCHREC_VERSION:-0.6.0}
15+
TENSORRT_VERSION=${TENSORRT_VERSION:-2.2.0}
1516

1617
# NB: FBGEMMGPU uses the practice of keeping rc version in the filename, i.e.
1718
# fbgemm_gpu-0.6.0rc1+cpu-cp311-cp311. On the other hand, its final RC will
@@ -113,6 +114,7 @@ promote_pypi() {
113114
# promote_s3 torchrec whl "${TORCHREC_VERSION}"
114115
# promote_s3 fbgemm-gpu whl "${FBGEMMGPU_VERSION}"
115116
# promote_s3 "libtorch-*" libtorch "${PYTORCH_VERSION}"
117+
# promote_s3 "torch_tensorrt" whl "${TENSORRT_VERSION}"
116118

117119
# promote_conda torchtriton conda "2.1.0"
118120
# promote_conda pytorch-cuda conda "11.8"

release/release_versions.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/usr/bin/env bash
22

33
# Make sure to update these versions when doing a release first
4-
PYTORCH_VERSION=${PYTORCH_VERSION:-2.2.0}
5-
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.17.0}
6-
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.0}
7-
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.0}
4+
PYTORCH_VERSION=${PYTORCH_VERSION:-2.2.1}
5+
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.17.1}
6+
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.1}
7+
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.1}
88
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.1}
99
TORCHREC_VERSION=${TORCHREC_VERSION:-0.6.0}
10+
TENSORRT_VERSION=${TENSORRT_VERSION:-2.2.0}
1011

1112
# NB: FBGEMMGPU uses the practice of keeping rc version in the filename, i.e.
1213
# fbgemm_gpu-0.6.0rc1+cpu-cp311-cp311. On the other hand, its final RC will

0 commit comments

Comments
 (0)