Skip to content

Commit

Permalink
Update TRT version to 8.2.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Rajeev Rao <[email protected]>
  • Loading branch information
rajeevsrao committed Feb 4, 2022
1 parent 06dfeb7 commit f15bb04
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This repository contains the Open Source Software (OSS) components of NVIDIA Ten
To build the TensorRT-OSS components, you will first need the following software packages.

**TensorRT GA build**
* [TensorRT](https://developer.nvidia.com/nvidia-tensorrt-download) v8.2.1.8
* [TensorRT](https://developer.nvidia.com/nvidia-tensorrt-download) v8.2.3.0

**System Packages**
* [CUDA](https://developer.nvidia.com/cuda-toolkit)
Expand Down Expand Up @@ -70,16 +70,16 @@ To build the TensorRT-OSS components, you will first need the following software

```bash
cd ~/Downloads
tar -xvzf TensorRT-8.2.1.8.Linux.x86_64-gnu.cuda-11.4.cudnn8.2.tar.gz
export TRT_LIBPATH=`pwd`/TensorRT-8.2.1.8
tar -xvzf TensorRT-8.2.3.0.Linux.x86_64-gnu.cuda-11.4.cudnn8.2.tar.gz
export TRT_LIBPATH=`pwd`/TensorRT-8.2.3.0
```

**Example: Windows on x86-64 with cuda-11.4**

```powershell
cd ~\Downloads
Expand-Archive .\TensorRT-8.2.1.8.Windows10.x86_64.cuda-11.4.cudnn8.2.zip
$Env:TRT_LIBPATH = '$(Get-Location)\TensorRT-8.2.1.8'
Expand-Archive .\TensorRT-8.2.3.0.Windows10.x86_64.cuda-11.4.cudnn8.2.zip
$Env:TRT_LIBPATH = '$(Get-Location)\TensorRT-8.2.3.0'
$Env:PATH += 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\'
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.1.8
8.2.3.0
2 changes: 1 addition & 1 deletion docker/centos-7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG OS_VERSION=7
FROM nvidia/cuda:${CUDA_VERSION}-cudnn8-devel-centos${OS_VERSION}
LABEL maintainer="NVIDIA CORPORATION"

ENV TRT_VERSION 8.2.1.8
ENV TRT_VERSION 8.2.3.0
SHELL ["/bin/bash", "-c"]

# Setup user account
Expand Down
2 changes: 1 addition & 1 deletion docker/centos-8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG OS_VERSION=8
FROM nvidia/cuda:${CUDA_VERSION}-cudnn8-devel-centos${OS_VERSION}
LABEL maintainer="NVIDIA CORPORATION"

ENV TRT_VERSION 8.2.1.8
ENV TRT_VERSION 8.2.3.0
SHELL ["/bin/bash", "-c"]

# Setup user account
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-18.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG OS_VERSION=18.04
FROM nvidia/cuda:${CUDA_VERSION}-cudnn8-devel-ubuntu${OS_VERSION}
LABEL maintainer="NVIDIA CORPORATION"

ENV TRT_VERSION 8.2.1.8
ENV TRT_VERSION 8.2.3.0
SHELL ["/bin/bash", "-c"]

# Setup user account
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-20.04-aarch64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Native aarch64 builds only support CUDA 11.4
FROM nvidia/cuda:11.4.2-devel-ubuntu20.04

ENV TRT_VERSION 8.2.1.8
ENV TRT_VERSION 8.2.3.0
SHELL ["/bin/bash", "-c"]

# Setup user account
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-20.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG OS_VERSION=20.04
FROM nvidia/cuda:${CUDA_VERSION}-cudnn8-devel-ubuntu${OS_VERSION}
LABEL maintainer="NVIDIA CORPORATION"

ENV TRT_VERSION 8.2.1.8
ENV TRT_VERSION 8.2.3.0
SHELL ["/bin/bash", "-c"]

# Setup user account
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-cross-aarch64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG OS_VERSION=18.04
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${OS_VERSION}
LABEL maintainer="NVIDIA CORPORATION"

ENV TRT_VERSION 8.2.1.8
ENV TRT_VERSION 8.2.3.0

ARG uid=1000
ARG gid=1000
Expand Down
2 changes: 0 additions & 2 deletions include/NvInfer.h
Original file line number Diff line number Diff line change
Expand Up @@ -6640,8 +6640,6 @@ class INetworkDefinition : public INoCopy
//!
//! \see IIdentityLayer
//!
//! \warning Int32 tensors are not valid input tensors.
//!
//! \return The new identity layer, or nullptr if it could not be created.
//!
IIdentityLayer* addIdentity(ITensor& input) noexcept
Expand Down
6 changes: 3 additions & 3 deletions include/NvInferVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@

#define NV_TENSORRT_MAJOR 8 //!< TensorRT major version.
#define NV_TENSORRT_MINOR 2 //!< TensorRT minor version.
#define NV_TENSORRT_PATCH 1 //!< TensorRT patch version.
#define NV_TENSORRT_BUILD 8 //!< TensorRT build number.
#define NV_TENSORRT_PATCH 3 //!< TensorRT patch version.
#define NV_TENSORRT_BUILD 0 //!< TensorRT build number.

#define NV_TENSORRT_SONAME_MAJOR 8 //!< Shared object library major version number.
#define NV_TENSORRT_SONAME_MINOR 2 //!< Shared object library minor version number.
#define NV_TENSORRT_SONAME_PATCH 1 //!< Shared object library patch version number.
#define NV_TENSORRT_SONAME_PATCH 3 //!< Shared object library patch version number.

#endif // NV_INFER_VERSION_H

0 comments on commit f15bb04

Please sign in to comment.