Skip to content

Commit bc67a5b

Browse files
authored
chore: bump torch to 2.8.0.dev (#3449)
1 parent e806e55 commit bc67a5b

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

.github/scripts/generate_binary_build_matrix.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
XPU = "xpu"
5858

5959

60-
CURRENT_NIGHTLY_VERSION = "2.7.0"
61-
CURRENT_CANDIDATE_VERSION = "2.5.1"
62-
CURRENT_STABLE_VERSION = "2.5.1"
60+
CURRENT_NIGHTLY_VERSION = "2.8.0"
61+
CURRENT_CANDIDATE_VERSION = "2.7.0"
62+
CURRENT_STABLE_VERSION = "2.7.0"
6363
CURRENT_VERSION = CURRENT_STABLE_VERSION
6464

6565
# By default use Nightly for CUDA arches

.github/workflows/docgen.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install base deps
3636
run: |
3737
python3 -m pip install pip --upgrade
38-
python3 -m pip install pyyaml numpy torch --pre --extra-index-url https://download.pytorch.org/whl/nightly/cu126
38+
python3 -m pip install pyyaml numpy torch --pre --extra-index-url https://download.pytorch.org/whl/nightly/cu128
3939
./packaging/pre_build_script.sh
4040
- name: Get HEAD SHA
4141
id: vars
@@ -44,7 +44,7 @@ jobs:
4444
env:
4545
USE_PRE_CXX11_ABI: 0
4646
run: |
47-
python3 -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu126
47+
python3 -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu128
4848
- name: Generate New Docs
4949
run: |
5050
cd docsrc

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "torch_tensorrt",
3-
version = "2.7.0a0",
3+
version = "2.8.0a0",
44
repo_name = "org_pytorch_tensorrt",
55
)
66

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pip install torch-tensorrt
2626

2727
Nightly versions of Torch-TensorRT are published on the PyTorch package index
2828
```bash
29-
pip install --pre torch-tensorrt --index-url https://download.pytorch.org/whl/nightly/cu124
29+
pip install --pre torch-tensorrt --index-url https://download.pytorch.org/whl/nightly/cu128
3030
```
3131

3232
Torch-TensorRT is also distributed in the ready-to-run [NVIDIA NGC PyTorch Container](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/pytorch) which has all dependencies with the proper versions and example notebooks included.
@@ -117,7 +117,7 @@ auto results = trt_mod.forward({input_tensor});
117117
These are the following dependencies used to verify the testcases. Torch-TensorRT can work with other versions, but the tests are not guaranteed to pass.
118118
119119
- Bazel 6.3.2
120-
- Libtorch 2.7.0.dev (latest nightly) (built with CUDA 12.8)
120+
- Libtorch 2.8.0.dev (latest nightly) (built with CUDA 12.8)
121121
- CUDA 12.8
122122
- TensorRT 10.9.0.43
123123

docker/dist-build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ set -x
55
TOP_DIR=$(cd $(dirname $0); pwd)/..
66

77
if [[ -z "${USE_PRE_CXX11}" ]]; then
8-
BUILD_CMD="python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/nightly/cu124 -w dist"
8+
BUILD_CMD="python -m pip wheel . --extra-index-url https://download.pytorch.org/whl/nightly/cu128 -w dist"
99
else
10-
BUILD_CMD="python -m pip wheel . --config-setting="--build-option=--use-pre-cxx11-abi" --extra-index-url https://download.pytorch.org/whl/nightly/cu124 -w dist"
10+
BUILD_CMD="python -m pip wheel . --config-setting="--build-option=--use-pre-cxx11-abi" --extra-index-url https://download.pytorch.org/whl/nightly/cu128 -w dist"
1111
fi
1212

1313
# TensorRT restricts our pip version

docsrc/getting_started/installation.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Torch-TensorRT distributed nightlies targeting the PyTorch nightly. These can be
4646

4747
.. code-block:: sh
4848
49-
python -m pip install --pre torch torch-tensorrt tensorrt --extra-index-url https://download.pytorch.org/whl/nightly/cu124
49+
python -m pip install --pre torch torch-tensorrt tensorrt --extra-index-url https://download.pytorch.org/whl/nightly/cu128
5050
5151
5252
@@ -131,7 +131,7 @@ Once the WORKSPACE has been configured properly, all that is required to build t
131131

132132
.. code-block:: sh
133133
134-
python -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu124
134+
python -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu128
135135
136136
137137
If you use the ``uv`` (`https://docs.astral.sh/uv/ <https://docs.astral.sh/uv/>`_) tool to manage python and your projects, the command is slightly simpler
@@ -146,7 +146,7 @@ To build the wheel file
146146

147147
.. code-block:: sh
148148
149-
python -m pip wheel --no-deps --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu124 -w dist
149+
python -m pip wheel --no-deps --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu128 -w dist
150150
151151
Additional Build Options
152152
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -164,7 +164,7 @@ which has implications for features like serialization.
164164

165165
.. code-block:: sh
166166
167-
PYTHON_ONLY=1 python -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu124
167+
PYTHON_ONLY=1 python -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu128
168168
169169
170170
No TorchScript Frontend
@@ -175,7 +175,7 @@ of C++ code that is no longer necessary for most users. Therefore you can exclud
175175

176176
.. code-block:: sh
177177
178-
NO_TORCHSCRIPT=1 python -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu124
178+
NO_TORCHSCRIPT=1 python -m pip install --pre . --extra-index-url https://download.pytorch.org/whl/nightly/cu128
179179
180180
181181
Building the C++ Library Standalone (TorchScript Only)
@@ -262,7 +262,7 @@ Build steps
262262

263263
* Open the app "x64 Native Tools Command Prompt for VS 2022" - note that Admin privileges may be necessary
264264
* Ensure Bazelisk (Bazel launcher) is installed on your machine and available from the command line. Package installers such as Chocolatey can be used to install Bazelisk
265-
* Install latest version of Torch (i.e. with ``pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu124``)
265+
* Install latest version of Torch (i.e. with ``pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu128``)
266266
* Clone the Torch-TensorRT repository and navigate to its root directory
267267
* Run ``pip install ninja wheel setuptools``
268268
* Run ``pip install --pre -r py/requirements.txt``

py/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
numpy
22
packaging
33
pybind11==2.6.2
4-
--extra-index-url https://download.pytorch.org/whl/nightly/cu124
5-
torch>=2.7.0.dev,<2.8.0
4+
--extra-index-url https://download.pytorch.org/whl/nightly/cu128
5+
torch>=2.8.0.dev,<2.9.0
66
torchvision>=0.22.0.dev,<0.23.0
77
--extra-index-url https://pypi.ngc.nvidia.com
88
pyyaml

pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires = [
99
"typing-extensions>=4.7.0",
1010
"future>=0.18.3",
1111
"tensorrt-cu12>=10.9.0,<10.10.0",
12-
"torch>=2.7.0.dev,<2.8.0",
12+
"torch>=2.8.0.dev,<2.9.0",
1313
"pybind11==2.6.2",
1414
"numpy",
1515
"sympy",
@@ -55,7 +55,7 @@ keywords = [
5555
"inference",
5656
]
5757
dependencies = [
58-
"torch>=2.7.0.dev,<2.8.0",
58+
"torch>=2.8.0.dev,<2.9.0",
5959
"tensorrt>=10.9.0,<10.10.0",
6060
"tensorrt-cu12>=10.9.0,<10.10.0",
6161
"tensorrt-cu12-bindings>=10.9.0,<10.10.0",
@@ -108,12 +108,12 @@ prerelease = "if-necessary-or-explicit"
108108
index-strategy = "unsafe-best-match" # Needed for TRT-LLM
109109

110110
[tool.uv.sources]
111-
torch = [{ index = "pytorch-nightly-cu126" }]
112-
torchvision = [{ index = "pytorch-nightly-cu126" }]
111+
torch = [{ index = "pytorch-nightly-cu128" }]
112+
torchvision = [{ index = "pytorch-nightly-cu128" }]
113113

114114
[[tool.uv.index]]
115-
name = "pytorch-nightly-cu126"
116-
url = "https://download.pytorch.org/whl/nightly/cu126"
115+
name = "pytorch-nightly-cu128"
116+
url = "https://download.pytorch.org/whl/nightly/cu128"
117117
explicit = false
118118

119119
[[tool.uv.index]]

0 commit comments

Comments
 (0)