Skip to content

Commit bc87585

Browse files
authored
Update mlir-tensorrt version to 0.1.38 (#431)
1 parent 47c11d5 commit bc87585

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tripy/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ requires-python = ">= 3.9"
88
license = {text = "Apache 2.0"}
99
dependencies = [
1010
"tensorrt~=10.0",
11-
"mlir-tensorrt-compiler==0.1.37+cuda12.trt102",
12-
"mlir-tensorrt-runtime==0.1.37+cuda12.trt102",
11+
"mlir-tensorrt-compiler==0.1.38+cuda12.trt105",
12+
"mlir-tensorrt-runtime==0.1.38+cuda12.trt105",
1313
"colored==2.2.3",
1414
]
1515

tripy/tripy/frontend/ops/stack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@constraints.dtypes(
2424
constraints={"tensors": "T1", constraints.RETURN_VALUE: "T1"},
2525
variables={
26-
"T1": ["float32", "float16", "bfloat16", "float8", "int4", "int8", "int32", "int64", "bool"],
26+
"T1": ["float32", "float16", "bfloat16", "int4", "int8", "int32", "int64", "bool"],
2727
},
2828
)
2929
def stack(tensors: Sequence["tripy.Tensor"], dim: int = 0) -> "tripy.Tensor":

tripy/tripy/frontend/trace/ops/binary_elementwise.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def __rfloordiv__(self: "tripy.Tensor", other: TensorLike) -> "tripy.Tensor":
512512
@frontend_utils.convert_to_tensors()
513513
@constraints.dtypes(
514514
constraints={"self": "T1", "other": "T1", constraints.RETURN_VALUE: "T1"},
515-
variables={"T1": ["float32", "float16", "bfloat16", "float8"]},
515+
variables={"T1": ["float32", "float16", "bfloat16"]},
516516
)
517517
def __mod__(self: "tripy.Tensor", other: TensorLike) -> "tripy.Tensor":
518518
"""
@@ -543,7 +543,7 @@ def __mod__(self: "tripy.Tensor", other: TensorLike) -> "tripy.Tensor":
543543
@frontend_utils.convert_to_tensors()
544544
@constraints.dtypes(
545545
constraints={"self": "T1", "other": "T1", constraints.RETURN_VALUE: "T1"},
546-
variables={"T1": ["float32", "float16", "bfloat16", "float8"]},
546+
variables={"T1": ["float32", "float16", "bfloat16"]},
547547
)
548548
def __rmod__(self: "tripy.Tensor", other: TensorLike) -> "tripy.Tensor":
549549
"""

tripy/tripy/frontend/trace/ops/concatenate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def to_flat_ir(self, inputs, outputs):
4545
@constraints.dtypes(
4646
constraints={"tensors": "T1", constraints.RETURN_VALUE: "T1"},
4747
variables={
48-
"T1": ["float32", "float16", "bfloat16", "float8", "int4", "int8", "int32", "int64", "bool"],
48+
"T1": ["float32", "float16", "bfloat16", "int4", "int8", "int32", "int64", "bool"],
4949
},
5050
)
5151
def concatenate(tensors: Sequence["tripy.Tensor"], dim: int) -> "tripy.Tensor":

0 commit comments

Comments
 (0)