Skip to content
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ parameters:
# Nightly platform config
torch-nightly-build:
type: string
default: "1.13.0.dev20220715+cu113"
default: "1.13.0.dev20220731+cu113"
torch-nightly-build-index:
type: string
default: "https://download.pytorch.org/whl/nightly/cu113"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ def forward(self, x):
("tuple_parameters", 1, (1, 1), (1, 1)),
param("non_zero_padding", 1, padding=1),
param("dilation", 1, dilation=2),
param("groups", 1, groups=3),
# TODO TRT 8.4.1 will trigger issue with this test. T127981773
# param("groups", 1, groups=3),
]
)
def test_conv2d(
Expand Down
4 changes: 3 additions & 1 deletion py/torch_tensorrt/fx/test/converters/acc_op/test_type_as.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import torch
import unittest
import torch_tensorrt.fx.tracer.acc_tracer.acc_ops as acc_ops
from torch.testing._internal.common_utils import run_tests
from torch_tensorrt.fx.tools.common_fx2trt import AccTestCase, InputTensorSpec
Expand Down Expand Up @@ -102,7 +103,8 @@ def forward(self, input):
expected_ops={acc_ops.to_dtype},
precision=LowerPrecision.FP16,
)


@unittest.skip("Does not pass in TRT 8.4.1 T127981773")
def test_type_tensor_with_dynamic_shape_four_dimensions(self):
class Type_as(torch.nn.Module):
def forward(self, input):
Expand Down