Skip to content
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
pip3 install nvidia-tensorrt==8.2.4.2
pip3 install --pre torch==1.13.0.dev20220621 torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/nightly/cu113
pip3 install pytest parameterized expecttest
pip3 install tabulate
# install torch_tensorrt
mv WORKSPACE.ci WORKSPACE
cd py
Expand Down
4 changes: 2 additions & 2 deletions py/torch_tensorrt/fx/test/passes/test_graph_opts.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def debug_print_graph_module(mod_graph: torch.fx.GraphModule) -> None:


@torch.fx.wrap
def test_op(keys, value):
def _test_op(keys, value):
return value


Expand Down Expand Up @@ -170,7 +170,7 @@ def forward(self, a, b, c):
def test_common_subexpression_elimination_string_arg(self):
class TestModule(torch.nn.Module):
def forward(self, a):
x = test_op(["foo", "bar"], a)
x = _test_op(["foo", "bar"], a)
return x

self._test_opt_with_module(
Expand Down