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

[cherry-pick] trtp for 2.6 release #3372

Merged
merged 1 commit into from
Jan 31, 2025
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
2 changes: 1 addition & 1 deletion dev_dep_versions.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__cuda_version__: "12.6"
__tensorrt_version__: "10.7.0"
__tensorrt_version__: "10.7.0.post1"
2 changes: 1 addition & 1 deletion examples/dynamo/auto_generate_converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

from typing import Tuple

import tensorrt_bindings.plugin as trtp
import tensorrt.plugin as trtp
import torch
import torch_tensorrt
import triton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import numpy as np

# Seems like a bug in TensorRT
import tensorrt_bindings.plugin as trtp
import tensorrt.plugin as trtp
import torch
from tensorrt_bindings.plugin._lib import QDP_REGISTRY
from tensorrt.plugin._lib import QDP_REGISTRY
from torch.fx.node import Argument, Node, Target
from torch_tensorrt.dynamo._settings import CompilationSettings
from torch_tensorrt.dynamo.conversion._ConversionContext import ConversionContext
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ requires = [
"cffi>=1.15.1",
"typing-extensions>=4.7.0",
"future>=0.18.3",
"tensorrt-cu12>=10.6.0,<10.8.0",
"tensorrt-cu12>=10.7.0.post1,<10.8.0",
"torch>=2.6.0.dev,<2.7.0",
"pybind11==2.6.2",
"numpy",
Expand Down Expand Up @@ -55,9 +55,10 @@ keywords = [
]
dependencies = [
"torch>=2.6.0.dev,<2.7.0",
"tensorrt-cu12>=10.6.0,<10.8.0",
"tensorrt-cu12-bindings>=10.6.0,<10.8.0",
"tensorrt-cu12-libs>=10.6.0,<10.8.0",
"tensorrt>=10.7.0.post1,<10.8.0",
"tensorrt-cu12>=10.7.0.post1,<10.8.0",
"tensorrt-cu12-bindings>=10.7.0,<10.8.0",
"tensorrt-cu12-libs>=10.7.0,<10.8.0",
"packaging>=23",
"numpy",
"typing-extensions>=4.7.0",
Expand Down
Loading