Skip to content

Commit

Permalink
[cherry-pick] trtp for 2.6 release (#3372)
Browse files Browse the repository at this point in the history
  • Loading branch information
narendasan authored Jan 31, 2025
1 parent ff44947 commit 52227da
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
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

0 comments on commit 52227da

Please sign in to comment.