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

Upgrade tripy version to 0.0.6 #424

Merged
merged 4 commits into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
20 changes: 20 additions & 0 deletions tripy/docs/packages.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

<body>
<h1>Package Index</h1>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/tripy-v0.0.6/tripy-0.0.6-py3-none-any.whl">tripy-0.0.6-py3-none-any.whl</a><br>

<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/tripy-v0.0.5/tripy-0.0.5-py3-none-any.whl">tripy-0.0.5-py3-none-any.whl</a><br>

Expand Down Expand Up @@ -127,6 +130,23 @@ <h1>Package Index</h1>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.37/mlir_tensorrt_runtime-0.1.37+cuda12.trt102-cp39-cp39-linux_x86_64.whl">mlir_tensorrt_runtime-0.1.37+cuda12.trt102-cp39-cp39-linux_x86_64.whl</a><br>

<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp310-cp310-linux_x86_64.whl">mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp310-cp310-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp311-cp311-linux_x86_64.whl">mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp311-cp311-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp312-cp312-linux_x86_64.whl">mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp312-cp312-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp39-cp39-linux_x86_64.whl">mlir_tensorrt_compiler-0.1.38+cuda12.trt102-cp39-cp39-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp310-cp310-linux_x86_64.whl">mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp310-cp310-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp311-cp311-linux_x86_64.whl">mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp311-cp311-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp312-cp312-linux_x86_64.whl">mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp312-cp312-linux_x86_64.whl</a><br>
<a
href="https://github.com/NVIDIA/TensorRT-Incubator/releases/download/mlir-tensorrt-v0.1.38/mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp39-cp39-linux_x86_64.whl">mlir_tensorrt_runtime-0.1.38+cuda12.trt102-cp39-cp39-linux_x86_64.whl</a><br>


</body>

Expand Down
6 changes: 3 additions & 3 deletions tripy/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[project]
name = "tripy"
version = "0.0.5"
version = "0.0.6"
authors = [{name = "NVIDIA", email="svc_tensorrt@nvidia.com"}]
description = "Tripy: A Python Programming Model For TensorRT"
readme = "README.md"
requires-python = ">= 3.9"
license = {text = "Apache 2.0"}
dependencies = [
"tensorrt~=10.0",
"mlir-tensorrt-compiler==0.1.37+cuda12.trt102",
"mlir-tensorrt-runtime==0.1.37+cuda12.trt102",
"mlir-tensorrt-compiler==0.1.38+cuda12.trt102",
"mlir-tensorrt-runtime==0.1.38+cuda12.trt102",
"colored==2.2.3",
]

Expand Down
2 changes: 1 addition & 1 deletion tripy/tripy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

__version__ = "0.0.5"
__version__ = "0.0.6"

# Import TensorRT to make sure all dependent libraries are loaded first.
import tensorrt
Expand Down
Loading