Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tensorrt promo script, bump release version for 2.2.1 #1706

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions release/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source "${DIR}/release_versions.sh"

# Make sure to update these versions when doing a release first
PYTORCH_VERSION=${PYTORCH_VERSION:-2.1.1}
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.16.1}
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.1.1}
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.16.1}
PYTORCH_VERSION=${PYTORCH_VERSION:-2.2.1}
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.17.1}
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.1}
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.1}
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.1}
TORCHREC_VERSION=${TORCHREC_VERSION:-0.6.0}
TENSORRT_VERSION=${TENSORRT_VERSION:-2.2.0}

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

# promote_conda torchtriton conda "2.1.0"
# promote_conda pytorch-cuda conda "11.8"
Expand Down
9 changes: 5 additions & 4 deletions release/release_versions.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#!/usr/bin/env bash

# Make sure to update these versions when doing a release first
PYTORCH_VERSION=${PYTORCH_VERSION:-2.2.0}
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.17.0}
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.0}
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.0}
PYTORCH_VERSION=${PYTORCH_VERSION:-2.2.1}
TORCHVISION_VERSION=${TORCHVISION_VERSION:-0.17.1}
TORCHAUDIO_VERSION=${TORCHAUDIO_VERSION:-2.2.1}
TORCHTEXT_VERSION=${TORCHTEXT_VERSION:-0.17.1}
TORCHDATA_VERSION=${TORCHDATA_VERSION:-0.7.1}
TORCHREC_VERSION=${TORCHREC_VERSION:-0.6.0}
TENSORRT_VERSION=${TENSORRT_VERSION:-2.2.0}

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