Skip to content

Commit fd1c2cd

Browse files
authored
Merge pull request #1350 from pytorch/docs_for_release
Docs for release
2 parents 9633948 + 0010cbc commit fd1c2cd

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

cpp/include/torch_tensorrt/macros.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define STR(x) XSTR(x)
2525

2626
#define TORCH_TENSORRT_MAJOR_VERSION 1
27-
#define TORCH_TENSORRT_MINOR_VERSION 2
27+
#define TORCH_TENSORRT_MINOR_VERSION 3
2828
#define TORCH_TENSORRT_PATCH_VERSION 0
2929
#define TORCH_TENSORRT_VERSION \
3030
STR(TORCH_TENSORRT_MAJOR_VERSION) \

docsrc/conf.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# -- Project information -----------------------------------------------------
2323

2424
project = "Torch-TensorRT"
25-
copyright = "2021, NVIDIA Corporation"
25+
copyright = "2022, NVIDIA Corporation"
2626
author = "NVIDIA Corporation"
2727

2828
version = "master (" + torch_tensorrt.__version__ + ")"
@@ -134,7 +134,9 @@
134134
"globaltoc_includehidden": True,
135135
"master_doc": True,
136136
"version_info": {
137-
"master": "https://nvidia.github.io/Torch-TensorRT/",
137+
"master": "https://pytorch.org/TensorRT/",
138+
"v1.2.0": "https://pytorch.org/TensorRT/v1.2.0",
139+
"v1.1.1": "https://nvidia.github.io/Torch-TensorRT/v1.1.1",
138140
"v1.1.0": "https://nvidia.github.io/Torch-TensorRT/v1.1.0/",
139141
"v1.0.0": "https://nvidia.github.io/Torch-TensorRT/v1.0.0/",
140142
"v0.4.1": "https://nvidia.github.io/Torch-TensorRT/v0.4.1/",

py/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy
22
pybind11==2.6.2
3-
--extra-index-url https://download.pytorch.org/whl/cu116
4-
torch==1.12.1
3+
--extra-index-url https://download.pytorch.org/whl/nightly/cu116
4+
torch==1.13.0.dev20220825+cu116
55
--extra-index-url https://pypi.ngc.nvidia.com
66
nvidia-tensorrt==8.4.3.1

py/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
CI_RELEASE = False
3030

31-
__version__ = "1.2.0a0"
32-
__cuda_version__ = "11.3"
31+
__version__ = "1.3.0a0"
32+
__cuda_version__ = "11.6"
3333
__cudnn_version__ = "8.4"
3434
__tensorrt_version__ = "8.4"
3535

0 commit comments

Comments
 (0)