Skip to content

Commit

Permalink
chore: moving away from tensorrt_bindings (#3365)
Browse files Browse the repository at this point in the history
  • Loading branch information
narendasan authored Jan 30, 2025
1 parent 002bacf commit a4fb224
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 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
5 changes: 3 additions & 2 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.7.0,<10.8.0",
"tensorrt-cu12>=10.7.0.post1,<10.8.0",
"torch>=2.7.0.dev,<2.8.0",
"pybind11==2.6.2",
"numpy",
Expand Down Expand Up @@ -55,7 +55,8 @@ keywords = [
]
dependencies = [
"torch>=2.7.0.dev,<2.8.0",
"tensorrt-cu12>=10.7.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",
Expand Down

0 comments on commit a4fb224

Please sign in to comment.